@hitsoft/kadooglu-keops 0.0.1 → 0.0.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 (565) hide show
  1. package/config/enums/route-names.d.ts +15 -1
  2. package/esm2020/config/enums/route-names.mjs +1 -1
  3. package/esm2020/config/providers/route.provider.mjs +132 -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-definitions/components/container-definition-form.component.mjs +2 -2
  13. package/esm2020/lib/features/container-definitions/components/container-definitions.component.mjs +2 -2
  14. package/esm2020/lib/features/container-loading-counts/components/container-loading-counts.component.mjs +4 -4
  15. package/esm2020/lib/features/container-loading-scenarios/components/container-loading-scenarios.component.mjs +2 -2
  16. package/esm2020/lib/features/container-loading-scenarios/container-loading-scenario-l10n-helper.mjs +2 -2
  17. package/esm2020/lib/features/container-mix-types/components/container-mix-type-form.component.mjs +2 -2
  18. package/esm2020/lib/features/container-mix-types/components/container-mix-types.component.mjs +2 -2
  19. package/esm2020/lib/features/container-pallet-capacities/components/container-pallet-capacities.component.mjs +7 -6
  20. package/esm2020/lib/features/container-pallet-capacities/components/container-pallet-capacity-form.component.mjs +2 -2
  21. package/esm2020/lib/features/cost-calculation/components/cost-calculation-inputs.component.mjs +20 -11
  22. package/esm2020/lib/features/cost-calculation/components/cost-calculation-result-sum.component.mjs +2 -2
  23. package/esm2020/lib/features/cost-calculation/components/cost-calculation.component.mjs +16 -22
  24. package/esm2020/lib/features/cost-calculation/cost-calculation.models.mjs +1 -1
  25. package/esm2020/lib/features/cost-calculation/engine/currency.utils.mjs +2 -2
  26. package/esm2020/lib/features/cost-calculation/engine/item-resolver.mjs +2 -2
  27. package/esm2020/lib/features/cost-calculation/engine/models.mjs +2 -2
  28. package/esm2020/lib/features/cost-calculation/engine/stage-builder.mjs +4 -4
  29. package/esm2020/lib/features/cost-calculation/hit-cost-calculation.module.mjs +7 -3
  30. package/esm2020/lib/features/cost-groups/components/cost-group-form.component.mjs +3 -3
  31. package/esm2020/lib/features/cost-groups/components/cost-groups.component.mjs +3 -3
  32. package/esm2020/lib/features/cost-groups/cost-group-role-l10n-helper.mjs +2 -2
  33. package/esm2020/lib/features/cost-items/components/cost-item-form.component.mjs +8 -7
  34. package/esm2020/lib/features/cost-items/components/cost-items.component.mjs +2 -2
  35. package/esm2020/lib/features/cost-items/cost-item-l10n-helper.mjs +2 -2
  36. package/esm2020/lib/features/cost-parameter-categories/components/cost-parameter-categories.component.mjs +2 -2
  37. package/esm2020/lib/features/cost-parameter-categories/components/cost-parameter-category-form.component.mjs +4 -4
  38. package/esm2020/lib/features/cost-parameter-categories/cost-parameter-category-l10n-helper.mjs +2 -5
  39. package/esm2020/lib/features/cost-parameters/components/cost-parameter-form.component.mjs +20 -38
  40. package/esm2020/lib/features/cost-parameters/components/cost-parameters.component.mjs +18 -11
  41. package/esm2020/lib/features/cost-parameters/cost-parameter-l10n-helper.mjs +2 -2
  42. package/esm2020/lib/features/destination-ports/components/destination-port-form.component.mjs +86 -0
  43. package/esm2020/lib/features/destination-ports/components/destination-ports.component.mjs +74 -0
  44. package/esm2020/lib/features/destination-ports/hit-destination-ports-routing.module.mjs +29 -0
  45. package/esm2020/lib/features/destination-ports/hit-destination-ports.module.mjs +58 -0
  46. package/esm2020/lib/features/exchange-rates/components/central-bank-rates.component.mjs +1 -1
  47. package/esm2020/lib/features/exchange-rates/components/exchange-rates.component.mjs +2 -2
  48. package/esm2020/lib/features/exchange-rates/components/fixed-rates-form.component.mjs +3 -3
  49. package/esm2020/lib/features/fob-inland-definitions/components/fob-inland-definition-form.component.mjs +80 -0
  50. package/esm2020/lib/features/fob-inland-definitions/components/fob-inland-definitions.component.mjs +65 -0
  51. package/esm2020/lib/features/fob-inland-definitions/hit-fob-inland-definitions-routing.module.mjs +29 -0
  52. package/esm2020/lib/features/fob-inland-definitions/hit-fob-inland-definitions.module.mjs +58 -0
  53. package/esm2020/lib/features/freight-offers/components/freight-offer-copy.component.mjs +67 -0
  54. package/esm2020/lib/features/freight-offers/components/freight-offer-form.component.mjs +181 -0
  55. package/esm2020/lib/features/freight-offers/components/freight-offers.component.mjs +159 -0
  56. package/esm2020/lib/features/freight-offers/hit-freight-offers-routing.module.mjs +29 -0
  57. package/esm2020/lib/features/freight-offers/hit-freight-offers.module.mjs +62 -0
  58. package/esm2020/lib/features/incoterms/components/incoterm-form.component.mjs +81 -0
  59. package/esm2020/lib/features/incoterms/components/incoterms.component.mjs +65 -0
  60. package/esm2020/lib/features/incoterms/hit-incoterms-routing.module.mjs +29 -0
  61. package/esm2020/lib/features/incoterms/hit-incoterms.module.mjs +58 -0
  62. package/esm2020/lib/features/index.mjs +29 -1
  63. package/esm2020/lib/features/item-package-groups/components/item-package-group-form.component.mjs +78 -0
  64. package/esm2020/lib/features/item-package-groups/components/item-package-groups.component.mjs +69 -0
  65. package/esm2020/lib/features/item-package-groups/hit-item-package-groups-routing.module.mjs +29 -0
  66. package/esm2020/lib/features/item-package-groups/hit-item-package-groups.module.mjs +58 -0
  67. package/esm2020/lib/features/item-package-types/components/item-package-type-form.component.mjs +78 -0
  68. package/esm2020/lib/features/item-package-types/components/item-package-types.component.mjs +69 -0
  69. package/esm2020/lib/features/item-package-types/hit-item-package-types-routing.module.mjs +29 -0
  70. package/esm2020/lib/features/item-package-types/hit-item-package-types.module.mjs +58 -0
  71. package/esm2020/lib/features/item-product-types/components/item-product-type-form.component.mjs +78 -0
  72. package/esm2020/lib/features/item-product-types/components/item-product-types.component.mjs +69 -0
  73. package/esm2020/lib/features/item-product-types/hit-item-product-types-routing.module.mjs +29 -0
  74. package/esm2020/lib/features/item-product-types/hit-item-product-types.module.mjs +58 -0
  75. package/esm2020/lib/features/lines/components/line-form.component.mjs +78 -0
  76. package/esm2020/lib/features/lines/components/lines.component.mjs +66 -0
  77. package/esm2020/lib/features/lines/hit-lines-routing.module.mjs +29 -0
  78. package/esm2020/lib/features/lines/hit-lines.module.mjs +58 -0
  79. package/esm2020/lib/features/packaging-materials/components/packaging-material-form.component.mjs +2 -2
  80. package/esm2020/lib/features/packaging-materials/components/packaging-materials.component.mjs +2 -2
  81. package/esm2020/lib/features/packaging-prices/components/packaging-price-form.component.mjs +6 -11
  82. package/esm2020/lib/features/packaging-prices/components/packaging-prices.component.mjs +2 -2
  83. package/esm2020/lib/features/packaging-prices/packaging-price-calculator.mjs +2 -2
  84. package/esm2020/lib/features/packaging-prices/packaging-price-excel.service.mjs +2 -2
  85. package/esm2020/lib/features/packaging-prices/packaging-price-form.factory.mjs +1 -1
  86. package/esm2020/lib/features/packaging-prices/packaging-price-lines.builder.mjs +2 -2
  87. package/esm2020/lib/features/packaging-types/components/packaging-type-form.component.mjs +2 -2
  88. package/esm2020/lib/features/packaging-types/components/packaging-types.component.mjs +2 -2
  89. package/esm2020/lib/features/pallet-definitions/components/pallet-definition-form.component.mjs +2 -2
  90. package/esm2020/lib/features/pallet-definitions/components/pallet-definitions.component.mjs +2 -2
  91. package/esm2020/lib/features/pos/components/pos-form.component.mjs +77 -0
  92. package/esm2020/lib/features/pos/components/pos.component.mjs +65 -0
  93. package/esm2020/lib/features/pos/hit-pos-routing.module.mjs +29 -0
  94. package/esm2020/lib/features/pos/hit-pos.module.mjs +58 -0
  95. package/esm2020/lib/features/price-parameter-types/components/price-parameter-type-form.component.mjs +2 -2
  96. package/esm2020/lib/features/price-parameter-types/components/price-parameter-types.component.mjs +4 -4
  97. package/esm2020/lib/features/price-parameters/components/price-parameter-form-cost-items.component.mjs +32 -0
  98. package/esm2020/lib/features/price-parameters/components/price-parameter-form-discount-rates-modal.component.mjs +52 -0
  99. package/esm2020/lib/features/price-parameters/components/price-parameter-form-discount-rates.component.mjs +84 -0
  100. package/esm2020/lib/features/price-parameters/components/price-parameter-form-items.component.mjs +43 -0
  101. package/esm2020/lib/features/price-parameters/components/price-parameter-form-price-lists.component.mjs +42 -0
  102. package/esm2020/lib/features/price-parameters/components/price-parameter-form.component.mjs +252 -0
  103. package/esm2020/lib/features/price-parameters/components/price-parameters.component.mjs +78 -0
  104. package/esm2020/lib/features/price-parameters/hit-price-parameters-routing.module.mjs +46 -0
  105. package/esm2020/lib/features/price-parameters/hit-price-parameters.module.mjs +93 -0
  106. package/esm2020/lib/features/price-parameters/price-parameter-cost-match.service.mjs +21 -0
  107. package/esm2020/lib/features/price-parameters/price-parameter-form-data.service.mjs +50 -0
  108. package/esm2020/lib/features/price-parameters/price-parameter-l10n-helper.mjs +7 -0
  109. package/esm2020/lib/features/price-parameters/price-parameter-lookups.service.mjs +32 -0
  110. package/esm2020/lib/features/sap-sales-persons/components/sap-sales-person-form.component.mjs +3 -3
  111. package/esm2020/lib/features/sap-sales-persons/components/sap-sales-persons.component.mjs +5 -3
  112. package/esm2020/lib/features/settings/components/cost-settings.component.mjs +2 -2
  113. package/esm2020/lib/kadooglu-keops-routing.module.mjs +25 -1
  114. package/esm2020/lib/shared/amount-currency-input/amount-currency-input.component.mjs +66 -0
  115. package/esm2020/lib/shared/cost-item-classification.utils.mjs +12 -0
  116. package/esm2020/lib/shared/cost-item-rows.builder.mjs +40 -0
  117. package/esm2020/lib/shared/pipes/resolve-code-name.pipe.mjs +16 -0
  118. package/esm2020/lib/shared/shared-ui.module.mjs +20 -0
  119. package/esm2020/lib/utils/currency.utils.mjs +4 -2
  120. package/esm2020/lib/utils/exchange-rate.utils.mjs +12 -0
  121. package/esm2020/proxy/bl-tracking/dtos/index.mjs +2 -0
  122. package/esm2020/proxy/bl-tracking/dtos/models.mjs +2 -0
  123. package/esm2020/{lib/proxy/cost-items → proxy/business-partners}/dtos/index.mjs +1 -1
  124. package/esm2020/proxy/business-partners/dtos/models.mjs +2 -0
  125. package/esm2020/proxy/carriers/dtos/index.mjs +2 -0
  126. package/esm2020/proxy/carriers/dtos/models.mjs +2 -0
  127. package/esm2020/{lib/proxy/exchange-rates → proxy/container-definitions}/dtos/index.mjs +1 -1
  128. package/esm2020/proxy/container-definitions/dtos/models.mjs +2 -0
  129. package/esm2020/proxy/container-loading-counts/dtos/index.mjs +2 -0
  130. package/esm2020/proxy/container-loading-counts/dtos/models.mjs +2 -0
  131. package/esm2020/proxy/container-loading-counts/loading-target-kind.enum.mjs +8 -0
  132. package/esm2020/proxy/container-loading-scenarios/dtos/index.mjs +2 -0
  133. package/esm2020/proxy/container-loading-scenarios/dtos/models.mjs +2 -0
  134. package/esm2020/proxy/container-loading-scenarios/pallet-status.enum.mjs +8 -0
  135. package/esm2020/proxy/container-mix-types/dtos/index.mjs +2 -0
  136. package/esm2020/proxy/container-mix-types/dtos/models.mjs +2 -0
  137. package/esm2020/proxy/container-pallet-capacities/dtos/index.mjs +2 -0
  138. package/esm2020/proxy/container-pallet-capacities/dtos/models.mjs +2 -0
  139. package/esm2020/proxy/controllers/bl-tracking.service.mjs +36 -0
  140. package/esm2020/proxy/controllers/business-partner.service.mjs +22 -0
  141. package/esm2020/proxy/controllers/carrier.service.mjs +36 -0
  142. package/esm2020/proxy/controllers/container-definition.service.mjs +40 -0
  143. package/esm2020/proxy/controllers/container-loading-count.service.mjs +31 -0
  144. package/esm2020/proxy/controllers/container-loading-scenario.service.mjs +27 -0
  145. package/esm2020/proxy/controllers/container-mix-type.service.mjs +40 -0
  146. package/esm2020/proxy/controllers/container-pallet-capacity.service.mjs +40 -0
  147. package/esm2020/proxy/controllers/cost-group.service.mjs +40 -0
  148. package/esm2020/proxy/controllers/cost-item.service.mjs +40 -0
  149. package/esm2020/proxy/controllers/cost-parameter-category.service.mjs +40 -0
  150. package/esm2020/proxy/controllers/cost-parameter.service.mjs +36 -0
  151. package/esm2020/proxy/controllers/cost-settings.service.mjs +27 -0
  152. package/esm2020/proxy/controllers/destination-port.service.mjs +44 -0
  153. package/esm2020/proxy/controllers/exchange-rate.service.mjs +27 -0
  154. package/esm2020/proxy/controllers/fob-inland-definition.service.mjs +36 -0
  155. package/esm2020/proxy/controllers/freight-offer.service.mjs +57 -0
  156. package/esm2020/proxy/controllers/incoterm.service.mjs +36 -0
  157. package/esm2020/proxy/controllers/index.mjs +33 -0
  158. package/esm2020/proxy/controllers/item-package-group.service.mjs +40 -0
  159. package/esm2020/proxy/controllers/item-package-type.service.mjs +40 -0
  160. package/esm2020/proxy/controllers/item-product-type.service.mjs +40 -0
  161. package/esm2020/proxy/controllers/item.service.mjs +23 -0
  162. package/esm2020/proxy/controllers/line.service.mjs +36 -0
  163. package/esm2020/proxy/controllers/packaging-material.service.mjs +40 -0
  164. package/esm2020/proxy/controllers/packaging-price.service.mjs +55 -0
  165. package/esm2020/proxy/controllers/packaging-type.service.mjs +40 -0
  166. package/esm2020/proxy/controllers/pallet-definition.service.mjs +40 -0
  167. package/esm2020/proxy/controllers/pos.service.mjs +36 -0
  168. package/esm2020/proxy/controllers/price-list.service.mjs +28 -0
  169. package/esm2020/proxy/controllers/price-parameter-type.service.mjs +40 -0
  170. package/esm2020/proxy/controllers/price-parameter.service.mjs +40 -0
  171. package/esm2020/proxy/controllers/sap-sales-person.service.mjs +27 -0
  172. package/esm2020/proxy/cost-groups/cost-group-role.enum.mjs +10 -0
  173. package/esm2020/proxy/cost-groups/dtos/index.mjs +2 -0
  174. package/esm2020/proxy/cost-groups/dtos/models.mjs +2 -0
  175. package/esm2020/proxy/cost-items/cost-item-calculation-type.enum.mjs +9 -0
  176. package/esm2020/{lib/proxy → proxy}/cost-items/cost-item-system-code.enum.mjs +1 -1
  177. package/esm2020/proxy/cost-items/dtos/index.mjs +2 -0
  178. package/esm2020/proxy/cost-items/dtos/models.mjs +2 -0
  179. package/esm2020/proxy/cost-parameter-categories/cost-parameter-category-parent-code.enum.mjs +8 -0
  180. package/esm2020/{lib/proxy/pallet-definitions → proxy/cost-parameter-categories}/dtos/index.mjs +1 -1
  181. package/esm2020/proxy/cost-parameter-categories/dtos/models.mjs +2 -0
  182. package/esm2020/proxy/cost-parameters/cost-parameter-status.enum.mjs +9 -0
  183. package/esm2020/proxy/cost-parameters/dtos/index.mjs +2 -0
  184. package/esm2020/proxy/cost-parameters/dtos/models.mjs +2 -0
  185. package/esm2020/proxy/currencies/currency.enum.mjs +9 -0
  186. package/esm2020/proxy/currencies/index.mjs +2 -0
  187. package/esm2020/proxy/destination-ports/dtos/index.mjs +2 -0
  188. package/esm2020/proxy/destination-ports/dtos/models.mjs +2 -0
  189. package/esm2020/proxy/exchange-rates/dtos/index.mjs +2 -0
  190. package/esm2020/proxy/exchange-rates/dtos/models.mjs +2 -0
  191. package/esm2020/proxy/exchange-rates/exchange-rate-source.enum.mjs +8 -0
  192. package/esm2020/{lib/proxy/cost-parameters → proxy/fob-inland-definitions}/dtos/index.mjs +1 -1
  193. package/esm2020/proxy/fob-inland-definitions/dtos/models.mjs +2 -0
  194. package/esm2020/proxy/freight-offers/dtos/index.mjs +2 -0
  195. package/esm2020/proxy/freight-offers/dtos/models.mjs +2 -0
  196. package/esm2020/proxy/hitsoft-kadooglu-keops-proxy.mjs +5 -0
  197. package/esm2020/proxy/incoterms/dtos/index.mjs +2 -0
  198. package/esm2020/proxy/incoterms/dtos/models.mjs +2 -0
  199. package/esm2020/proxy/item-package-groups/dtos/index.mjs +2 -0
  200. package/esm2020/proxy/item-package-groups/dtos/models.mjs +2 -0
  201. package/esm2020/{lib/proxy/cost-groups → proxy/item-package-types}/dtos/index.mjs +1 -1
  202. package/esm2020/proxy/item-package-types/dtos/models.mjs +2 -0
  203. package/esm2020/proxy/item-product-types/dtos/index.mjs +2 -0
  204. package/esm2020/proxy/item-product-types/dtos/models.mjs +2 -0
  205. package/esm2020/proxy/items/dtos/index.mjs +2 -0
  206. package/esm2020/proxy/items/dtos/models.mjs +2 -0
  207. package/esm2020/proxy/lines/dtos/index.mjs +2 -0
  208. package/esm2020/proxy/lines/dtos/models.mjs +2 -0
  209. package/esm2020/proxy/packaging-materials/dtos/index.mjs +2 -0
  210. package/esm2020/proxy/packaging-materials/dtos/models.mjs +2 -0
  211. package/esm2020/proxy/packaging-prices/dtos/index.mjs +2 -0
  212. package/esm2020/proxy/packaging-prices/dtos/models.mjs +2 -0
  213. package/esm2020/proxy/packaging-types/dtos/index.mjs +2 -0
  214. package/esm2020/proxy/packaging-types/dtos/models.mjs +2 -0
  215. package/esm2020/proxy/pallet-definitions/dtos/index.mjs +2 -0
  216. package/esm2020/proxy/pallet-definitions/dtos/models.mjs +2 -0
  217. package/esm2020/proxy/pos/dtos/index.mjs +2 -0
  218. package/esm2020/proxy/pos/dtos/models.mjs +2 -0
  219. package/esm2020/proxy/price-lists/dtos/index.mjs +2 -0
  220. package/esm2020/proxy/price-lists/dtos/models.mjs +2 -0
  221. package/esm2020/proxy/price-parameter-types/dtos/index.mjs +2 -0
  222. package/esm2020/proxy/price-parameter-types/dtos/models.mjs +2 -0
  223. package/esm2020/proxy/price-parameters/dtos/index.mjs +2 -0
  224. package/esm2020/proxy/price-parameters/dtos/models.mjs +2 -0
  225. package/esm2020/proxy/price-parameters/price-parameter-status.enum.mjs +9 -0
  226. package/esm2020/proxy/public-api.mjs +45 -0
  227. package/esm2020/proxy/sales-persons/dtos/index.mjs +2 -0
  228. package/esm2020/proxy/sales-persons/dtos/models.mjs +2 -0
  229. package/esm2020/proxy/settings/index.mjs +2 -0
  230. package/esm2020/proxy/settings/models.mjs +2 -0
  231. package/esm2020/public-api.mjs +1 -2
  232. package/fesm2015/hitsoft-kadooglu-keops-config.mjs +131 -3
  233. package/fesm2015/hitsoft-kadooglu-keops-config.mjs.map +1 -1
  234. package/fesm2015/hitsoft-kadooglu-keops-proxy.mjs +1185 -0
  235. package/fesm2015/hitsoft-kadooglu-keops-proxy.mjs.map +1 -0
  236. package/fesm2015/hitsoft-kadooglu-keops.mjs +4082 -1728
  237. package/fesm2015/hitsoft-kadooglu-keops.mjs.map +1 -1
  238. package/fesm2020/hitsoft-kadooglu-keops-config.mjs +131 -3
  239. package/fesm2020/hitsoft-kadooglu-keops-config.mjs.map +1 -1
  240. package/fesm2020/hitsoft-kadooglu-keops-proxy.mjs +1185 -0
  241. package/fesm2020/hitsoft-kadooglu-keops-proxy.mjs.map +1 -0
  242. package/fesm2020/hitsoft-kadooglu-keops.mjs +4070 -1729
  243. package/fesm2020/hitsoft-kadooglu-keops.mjs.map +1 -1
  244. package/lib/features/bl-tracking/components/bl-tracking-form.component.d.ts +24 -0
  245. package/lib/features/bl-tracking/components/bl-tracking.component.d.ts +22 -0
  246. package/lib/features/bl-tracking/hit-bl-tracking-routing.module.d.ts +7 -0
  247. package/lib/features/bl-tracking/hit-bl-tracking.module.d.ts +18 -0
  248. package/lib/features/carriers/components/carrier-form.component.d.ts +24 -0
  249. package/lib/features/carriers/components/carriers.component.d.ts +22 -0
  250. package/lib/features/carriers/hit-carriers-routing.module.d.ts +7 -0
  251. package/lib/features/carriers/hit-carriers.module.d.ts +18 -0
  252. package/lib/features/container-definitions/components/container-definition-form.component.d.ts +1 -2
  253. package/lib/features/container-definitions/components/container-definitions.component.d.ts +1 -2
  254. package/lib/features/container-loading-counts/components/container-loading-counts.component.d.ts +2 -5
  255. package/lib/features/container-loading-scenarios/components/container-loading-scenarios.component.d.ts +1 -5
  256. package/lib/features/container-loading-scenarios/container-loading-scenario-l10n-helper.d.ts +1 -1
  257. package/lib/features/container-mix-types/components/container-mix-type-form.component.d.ts +1 -2
  258. package/lib/features/container-mix-types/components/container-mix-types.component.d.ts +1 -2
  259. package/lib/features/container-pallet-capacities/components/container-pallet-capacities.component.d.ts +2 -5
  260. package/lib/features/container-pallet-capacities/components/container-pallet-capacity-form.component.d.ts +1 -4
  261. package/lib/features/cost-calculation/components/cost-calculation-inputs.component.d.ts +3 -5
  262. package/lib/features/cost-calculation/components/cost-calculation-results.component.d.ts +1 -1
  263. package/lib/features/cost-calculation/components/cost-calculation.component.d.ts +3 -6
  264. package/lib/features/cost-calculation/cost-calculation.models.d.ts +1 -3
  265. package/lib/features/cost-calculation/engine/currency.utils.d.ts +1 -1
  266. package/lib/features/cost-calculation/engine/models.d.ts +1 -3
  267. package/lib/features/cost-calculation/hit-cost-calculation.module.d.ts +2 -1
  268. package/lib/features/cost-groups/components/cost-group-form.component.d.ts +2 -4
  269. package/lib/features/cost-groups/components/cost-groups.component.d.ts +1 -5
  270. package/lib/features/cost-groups/cost-group-role-l10n-helper.d.ts +1 -1
  271. package/lib/features/cost-items/components/cost-item-form.component.d.ts +1 -3
  272. package/lib/features/cost-items/components/cost-items.component.d.ts +1 -2
  273. package/lib/features/cost-items/cost-item-l10n-helper.d.ts +1 -1
  274. package/lib/features/cost-parameter-categories/components/cost-parameter-categories.component.d.ts +1 -2
  275. package/lib/features/cost-parameter-categories/components/cost-parameter-category-form.component.d.ts +1 -3
  276. package/lib/features/cost-parameter-categories/cost-parameter-category-l10n-helper.d.ts +1 -1
  277. package/lib/features/cost-parameters/components/cost-parameter-form.component.d.ts +9 -9
  278. package/lib/features/cost-parameters/components/cost-parameters.component.d.ts +6 -6
  279. package/lib/features/cost-parameters/cost-parameter-l10n-helper.d.ts +1 -1
  280. package/lib/features/destination-ports/components/destination-port-form.component.d.ts +25 -0
  281. package/lib/features/destination-ports/components/destination-ports.component.d.ts +24 -0
  282. package/lib/features/destination-ports/hit-destination-ports-routing.module.d.ts +7 -0
  283. package/lib/features/destination-ports/hit-destination-ports.module.d.ts +18 -0
  284. package/lib/features/exchange-rates/components/central-bank-rates.component.d.ts +1 -1
  285. package/lib/features/exchange-rates/components/exchange-rates.component.d.ts +1 -2
  286. package/lib/features/exchange-rates/components/fixed-rates-form.component.d.ts +1 -3
  287. package/lib/features/fob-inland-definitions/components/fob-inland-definition-form.component.d.ts +24 -0
  288. package/lib/features/fob-inland-definitions/components/fob-inland-definitions.component.d.ts +22 -0
  289. package/lib/features/fob-inland-definitions/hit-fob-inland-definitions-routing.module.d.ts +7 -0
  290. package/lib/features/fob-inland-definitions/hit-fob-inland-definitions.module.d.ts +18 -0
  291. package/lib/features/freight-offers/components/freight-offer-copy.component.d.ts +22 -0
  292. package/lib/features/freight-offers/components/freight-offer-form.component.d.ts +49 -0
  293. package/lib/features/freight-offers/components/freight-offers.component.d.ts +47 -0
  294. package/lib/features/freight-offers/hit-freight-offers-routing.module.d.ts +7 -0
  295. package/lib/features/freight-offers/hit-freight-offers.module.d.ts +19 -0
  296. package/lib/features/incoterms/components/incoterm-form.component.d.ts +24 -0
  297. package/lib/features/incoterms/components/incoterms.component.d.ts +22 -0
  298. package/lib/features/incoterms/hit-incoterms-routing.module.d.ts +7 -0
  299. package/lib/features/incoterms/hit-incoterms.module.d.ts +18 -0
  300. package/lib/features/index.d.ts +21 -0
  301. package/lib/features/item-package-groups/components/item-package-group-form.component.d.ts +24 -0
  302. package/lib/features/item-package-groups/components/item-package-groups.component.d.ts +22 -0
  303. package/lib/features/item-package-groups/hit-item-package-groups-routing.module.d.ts +7 -0
  304. package/lib/features/item-package-groups/hit-item-package-groups.module.d.ts +18 -0
  305. package/lib/features/item-package-types/components/item-package-type-form.component.d.ts +24 -0
  306. package/lib/features/item-package-types/components/item-package-types.component.d.ts +22 -0
  307. package/lib/features/item-package-types/hit-item-package-types-routing.module.d.ts +7 -0
  308. package/lib/features/item-package-types/hit-item-package-types.module.d.ts +18 -0
  309. package/lib/features/item-product-types/components/item-product-type-form.component.d.ts +24 -0
  310. package/lib/features/item-product-types/components/item-product-types.component.d.ts +22 -0
  311. package/lib/features/item-product-types/hit-item-product-types-routing.module.d.ts +7 -0
  312. package/lib/features/item-product-types/hit-item-product-types.module.d.ts +18 -0
  313. package/lib/features/lines/components/line-form.component.d.ts +24 -0
  314. package/lib/features/lines/components/lines.component.d.ts +22 -0
  315. package/lib/features/lines/hit-lines-routing.module.d.ts +7 -0
  316. package/lib/features/lines/hit-lines.module.d.ts +18 -0
  317. package/lib/features/packaging-materials/components/packaging-material-form.component.d.ts +1 -3
  318. package/lib/features/packaging-materials/components/packaging-materials.component.d.ts +1 -2
  319. package/lib/features/packaging-prices/components/packaging-price-form.component.d.ts +1 -3
  320. package/lib/features/packaging-prices/components/packaging-prices.component.d.ts +1 -3
  321. package/lib/features/packaging-prices/packaging-price-calculator.d.ts +1 -1
  322. package/lib/features/packaging-prices/packaging-price-excel.service.d.ts +1 -2
  323. package/lib/features/packaging-prices/packaging-price-form.factory.d.ts +1 -1
  324. package/lib/features/packaging-prices/packaging-price-lines.builder.d.ts +1 -1
  325. package/lib/features/packaging-types/components/packaging-type-form.component.d.ts +1 -2
  326. package/lib/features/packaging-types/components/packaging-types.component.d.ts +1 -2
  327. package/lib/features/pallet-definitions/components/pallet-definition-form.component.d.ts +1 -2
  328. package/lib/features/pallet-definitions/components/pallet-definitions.component.d.ts +1 -2
  329. package/lib/features/pos/components/pos-form.component.d.ts +24 -0
  330. package/lib/features/pos/components/pos.component.d.ts +22 -0
  331. package/lib/features/pos/hit-pos-routing.module.d.ts +7 -0
  332. package/lib/features/pos/hit-pos.module.d.ts +18 -0
  333. package/lib/features/price-parameter-types/components/price-parameter-type-form.component.d.ts +1 -2
  334. package/lib/features/price-parameter-types/components/price-parameter-types.component.d.ts +1 -2
  335. package/lib/features/price-parameters/components/price-parameter-form-cost-items.component.d.ts +15 -0
  336. package/lib/features/price-parameters/components/price-parameter-form-discount-rates-modal.component.d.ts +24 -0
  337. package/lib/features/price-parameters/components/price-parameter-form-discount-rates.component.d.ts +22 -0
  338. package/lib/features/price-parameters/components/price-parameter-form-items.component.d.ts +15 -0
  339. package/lib/features/price-parameters/components/price-parameter-form-price-lists.component.d.ts +15 -0
  340. package/lib/features/price-parameters/components/price-parameter-form.component.d.ts +70 -0
  341. package/lib/features/price-parameters/components/price-parameters.component.d.ts +27 -0
  342. package/lib/features/price-parameters/hit-price-parameters-routing.module.d.ts +7 -0
  343. package/lib/features/price-parameters/hit-price-parameters.module.d.ts +24 -0
  344. package/lib/features/price-parameters/price-parameter-cost-match.service.d.ts +10 -0
  345. package/lib/features/price-parameters/price-parameter-form-data.service.d.ts +26 -0
  346. package/lib/features/price-parameters/price-parameter-l10n-helper.d.ts +2 -0
  347. package/lib/features/price-parameters/price-parameter-lookups.service.d.ts +16 -0
  348. package/lib/features/sap-sales-persons/components/sap-sales-person-form.component.d.ts +1 -2
  349. package/lib/features/sap-sales-persons/components/sap-sales-persons.component.d.ts +1 -2
  350. package/lib/features/settings/components/cost-settings.component.d.ts +1 -1
  351. package/lib/shared/amount-currency-input/amount-currency-input.component.d.ts +23 -0
  352. package/lib/shared/cost-item-classification.utils.d.ts +7 -0
  353. package/lib/shared/cost-item-rows.builder.d.ts +11 -0
  354. package/lib/shared/pipes/resolve-code-name.pipe.d.ts +11 -0
  355. package/lib/shared/shared-ui.module.d.ts +10 -0
  356. package/lib/utils/currency.utils.d.ts +2 -1
  357. package/lib/utils/exchange-rate.utils.d.ts +2 -0
  358. package/package.json +9 -1
  359. package/proxy/bl-tracking/dtos/models.d.ts +25 -0
  360. package/proxy/business-partners/dtos/models.d.ts +4 -0
  361. package/proxy/carriers/dtos/models.d.ts +10 -0
  362. package/{lib/proxy → proxy}/container-loading-counts/dtos/models.d.ts +1 -1
  363. package/proxy/controllers/bl-tracking.service.d.ts +14 -0
  364. package/proxy/controllers/business-partner.service.d.ts +11 -0
  365. package/proxy/controllers/carrier.service.d.ts +14 -0
  366. package/{lib/proxy → proxy}/controllers/container-loading-count.service.d.ts +2 -2
  367. package/{lib/proxy → proxy}/controllers/cost-parameter.service.d.ts +1 -2
  368. package/proxy/controllers/destination-port.service.d.ts +17 -0
  369. package/proxy/controllers/fob-inland-definition.service.d.ts +14 -0
  370. package/proxy/controllers/freight-offer.service.d.ts +19 -0
  371. package/proxy/controllers/incoterm.service.d.ts +14 -0
  372. package/{lib/proxy → proxy}/controllers/index.d.ts +14 -0
  373. package/proxy/controllers/item-package-group.service.d.ts +15 -0
  374. package/proxy/controllers/item-package-type.service.d.ts +15 -0
  375. package/proxy/controllers/item-product-type.service.d.ts +15 -0
  376. package/proxy/controllers/line.service.d.ts +14 -0
  377. package/proxy/controllers/pos.service.d.ts +14 -0
  378. package/proxy/controllers/price-list.service.d.ts +12 -0
  379. package/proxy/controllers/price-parameter.service.d.ts +15 -0
  380. package/{lib/proxy → proxy}/cost-parameter-categories/cost-parameter-category-parent-code.enum.d.ts +1 -4
  381. package/{lib/proxy → proxy}/cost-parameters/dtos/models.d.ts +0 -8
  382. package/proxy/destination-ports/dtos/models.d.ts +19 -0
  383. package/proxy/fob-inland-definitions/dtos/models.d.ts +19 -0
  384. package/proxy/freight-offers/dtos/models.d.ts +66 -0
  385. package/proxy/incoterms/dtos/models.d.ts +22 -0
  386. package/proxy/index.d.ts +5 -0
  387. package/proxy/item-package-groups/dtos/models.d.ts +13 -0
  388. package/proxy/item-package-types/dtos/index.d.ts +1 -0
  389. package/proxy/item-package-types/dtos/models.d.ts +13 -0
  390. package/proxy/item-product-types/dtos/index.d.ts +1 -0
  391. package/proxy/item-product-types/dtos/models.d.ts +13 -0
  392. package/proxy/items/dtos/index.d.ts +1 -0
  393. package/proxy/lines/dtos/index.d.ts +1 -0
  394. package/proxy/lines/dtos/models.d.ts +10 -0
  395. package/proxy/packaging-materials/dtos/index.d.ts +1 -0
  396. package/proxy/packaging-prices/dtos/index.d.ts +1 -0
  397. package/proxy/packaging-types/dtos/index.d.ts +1 -0
  398. package/proxy/pallet-definitions/dtos/index.d.ts +1 -0
  399. package/proxy/pos/dtos/index.d.ts +1 -0
  400. package/proxy/pos/dtos/models.d.ts +10 -0
  401. package/proxy/price-lists/dtos/index.d.ts +1 -0
  402. package/proxy/price-lists/dtos/models.d.ts +10 -0
  403. package/proxy/price-parameter-types/dtos/index.d.ts +1 -0
  404. package/proxy/price-parameters/dtos/index.d.ts +1 -0
  405. package/proxy/price-parameters/dtos/models.d.ts +78 -0
  406. package/proxy/price-parameters/price-parameter-status.enum.d.ts +6 -0
  407. package/proxy/public-api.d.ts +43 -0
  408. package/proxy/sales-persons/dtos/index.d.ts +1 -0
  409. package/proxy/settings/index.d.ts +1 -0
  410. package/public-api.d.ts +0 -1
  411. package/esm2020/lib/proxy/container-definitions/dtos/index.mjs +0 -2
  412. package/esm2020/lib/proxy/container-definitions/dtos/models.mjs +0 -2
  413. package/esm2020/lib/proxy/container-definitions/index.mjs +0 -3
  414. package/esm2020/lib/proxy/container-loading-counts/dtos/index.mjs +0 -2
  415. package/esm2020/lib/proxy/container-loading-counts/dtos/models.mjs +0 -2
  416. package/esm2020/lib/proxy/container-loading-counts/index.mjs +0 -4
  417. package/esm2020/lib/proxy/container-loading-counts/loading-target-kind.enum.mjs +0 -8
  418. package/esm2020/lib/proxy/container-loading-scenarios/dtos/index.mjs +0 -2
  419. package/esm2020/lib/proxy/container-loading-scenarios/dtos/models.mjs +0 -2
  420. package/esm2020/lib/proxy/container-loading-scenarios/index.mjs +0 -4
  421. package/esm2020/lib/proxy/container-loading-scenarios/pallet-status.enum.mjs +0 -8
  422. package/esm2020/lib/proxy/container-mix-types/dtos/index.mjs +0 -2
  423. package/esm2020/lib/proxy/container-mix-types/dtos/models.mjs +0 -2
  424. package/esm2020/lib/proxy/container-mix-types/index.mjs +0 -3
  425. package/esm2020/lib/proxy/container-pallet-capacities/dtos/index.mjs +0 -2
  426. package/esm2020/lib/proxy/container-pallet-capacities/dtos/models.mjs +0 -2
  427. package/esm2020/lib/proxy/container-pallet-capacities/index.mjs +0 -3
  428. package/esm2020/lib/proxy/controllers/container-definition.service.mjs +0 -40
  429. package/esm2020/lib/proxy/controllers/container-loading-count.service.mjs +0 -31
  430. package/esm2020/lib/proxy/controllers/container-loading-scenario.service.mjs +0 -27
  431. package/esm2020/lib/proxy/controllers/container-mix-type.service.mjs +0 -40
  432. package/esm2020/lib/proxy/controllers/container-pallet-capacity.service.mjs +0 -40
  433. package/esm2020/lib/proxy/controllers/cost-group.service.mjs +0 -40
  434. package/esm2020/lib/proxy/controllers/cost-item.service.mjs +0 -40
  435. package/esm2020/lib/proxy/controllers/cost-parameter-category.service.mjs +0 -40
  436. package/esm2020/lib/proxy/controllers/cost-parameter.service.mjs +0 -40
  437. package/esm2020/lib/proxy/controllers/cost-settings.service.mjs +0 -27
  438. package/esm2020/lib/proxy/controllers/exchange-rate.service.mjs +0 -27
  439. package/esm2020/lib/proxy/controllers/index.mjs +0 -19
  440. package/esm2020/lib/proxy/controllers/item.service.mjs +0 -23
  441. package/esm2020/lib/proxy/controllers/packaging-material.service.mjs +0 -40
  442. package/esm2020/lib/proxy/controllers/packaging-price.service.mjs +0 -55
  443. package/esm2020/lib/proxy/controllers/packaging-type.service.mjs +0 -40
  444. package/esm2020/lib/proxy/controllers/pallet-definition.service.mjs +0 -40
  445. package/esm2020/lib/proxy/controllers/price-parameter-type.service.mjs +0 -40
  446. package/esm2020/lib/proxy/controllers/sap-sales-person.service.mjs +0 -27
  447. package/esm2020/lib/proxy/cost-groups/cost-group-role.enum.mjs +0 -10
  448. package/esm2020/lib/proxy/cost-groups/dtos/models.mjs +0 -2
  449. package/esm2020/lib/proxy/cost-groups/index.mjs +0 -4
  450. package/esm2020/lib/proxy/cost-items/cost-item-calculation-type.enum.mjs +0 -9
  451. package/esm2020/lib/proxy/cost-items/dtos/models.mjs +0 -2
  452. package/esm2020/lib/proxy/cost-items/index.mjs +0 -5
  453. package/esm2020/lib/proxy/cost-parameter-categories/cost-parameter-category-parent-code.enum.mjs +0 -11
  454. package/esm2020/lib/proxy/cost-parameter-categories/dtos/index.mjs +0 -2
  455. package/esm2020/lib/proxy/cost-parameter-categories/dtos/models.mjs +0 -2
  456. package/esm2020/lib/proxy/cost-parameter-categories/index.mjs +0 -4
  457. package/esm2020/lib/proxy/cost-parameters/cost-parameter-status.enum.mjs +0 -9
  458. package/esm2020/lib/proxy/cost-parameters/dtos/models.mjs +0 -2
  459. package/esm2020/lib/proxy/cost-parameters/index.mjs +0 -4
  460. package/esm2020/lib/proxy/currencies/currency.enum.mjs +0 -9
  461. package/esm2020/lib/proxy/currencies/index.mjs +0 -2
  462. package/esm2020/lib/proxy/exchange-rates/dtos/models.mjs +0 -2
  463. package/esm2020/lib/proxy/exchange-rates/exchange-rate-source.enum.mjs +0 -8
  464. package/esm2020/lib/proxy/exchange-rates/index.mjs +0 -4
  465. package/esm2020/lib/proxy/index.mjs +0 -22
  466. package/esm2020/lib/proxy/items/dtos/index.mjs +0 -2
  467. package/esm2020/lib/proxy/items/dtos/models.mjs +0 -2
  468. package/esm2020/lib/proxy/items/index.mjs +0 -3
  469. package/esm2020/lib/proxy/packaging-materials/dtos/index.mjs +0 -2
  470. package/esm2020/lib/proxy/packaging-materials/dtos/models.mjs +0 -2
  471. package/esm2020/lib/proxy/packaging-materials/index.mjs +0 -3
  472. package/esm2020/lib/proxy/packaging-prices/dtos/index.mjs +0 -2
  473. package/esm2020/lib/proxy/packaging-prices/dtos/models.mjs +0 -2
  474. package/esm2020/lib/proxy/packaging-prices/index.mjs +0 -3
  475. package/esm2020/lib/proxy/packaging-types/dtos/index.mjs +0 -2
  476. package/esm2020/lib/proxy/packaging-types/dtos/models.mjs +0 -2
  477. package/esm2020/lib/proxy/packaging-types/index.mjs +0 -3
  478. package/esm2020/lib/proxy/pallet-definitions/dtos/models.mjs +0 -2
  479. package/esm2020/lib/proxy/pallet-definitions/index.mjs +0 -3
  480. package/esm2020/lib/proxy/price-parameter-types/dtos/index.mjs +0 -2
  481. package/esm2020/lib/proxy/price-parameter-types/dtos/models.mjs +0 -2
  482. package/esm2020/lib/proxy/price-parameter-types/index.mjs +0 -3
  483. package/esm2020/lib/proxy/sales-persons/dtos/index.mjs +0 -2
  484. package/esm2020/lib/proxy/sales-persons/dtos/models.mjs +0 -2
  485. package/esm2020/lib/proxy/sales-persons/index.mjs +0 -3
  486. package/esm2020/lib/proxy/settings/index.mjs +0 -2
  487. package/esm2020/lib/proxy/settings/models.mjs +0 -2
  488. package/lib/proxy/container-definitions/index.d.ts +0 -2
  489. package/lib/proxy/container-loading-counts/index.d.ts +0 -3
  490. package/lib/proxy/container-loading-scenarios/index.d.ts +0 -3
  491. package/lib/proxy/container-mix-types/index.d.ts +0 -2
  492. package/lib/proxy/container-pallet-capacities/index.d.ts +0 -2
  493. package/lib/proxy/cost-groups/index.d.ts +0 -3
  494. package/lib/proxy/cost-items/index.d.ts +0 -4
  495. package/lib/proxy/cost-parameter-categories/index.d.ts +0 -3
  496. package/lib/proxy/cost-parameters/index.d.ts +0 -3
  497. package/lib/proxy/exchange-rates/index.d.ts +0 -3
  498. package/lib/proxy/index.d.ts +0 -21
  499. package/lib/proxy/items/index.d.ts +0 -2
  500. package/lib/proxy/packaging-materials/index.d.ts +0 -2
  501. package/lib/proxy/packaging-prices/index.d.ts +0 -2
  502. package/lib/proxy/packaging-types/index.d.ts +0 -2
  503. package/lib/proxy/pallet-definitions/index.d.ts +0 -2
  504. package/lib/proxy/price-parameter-types/index.d.ts +0 -2
  505. package/lib/proxy/sales-persons/index.d.ts +0 -2
  506. /package/{lib/proxy/container-definitions → proxy/bl-tracking}/dtos/index.d.ts +0 -0
  507. /package/{lib/proxy/container-loading-counts → proxy/business-partners}/dtos/index.d.ts +0 -0
  508. /package/{lib/proxy/container-loading-scenarios → proxy/carriers}/dtos/index.d.ts +0 -0
  509. /package/{lib/proxy/container-mix-types → proxy/container-definitions}/dtos/index.d.ts +0 -0
  510. /package/{lib/proxy → proxy}/container-definitions/dtos/models.d.ts +0 -0
  511. /package/{lib/proxy/container-pallet-capacities → proxy/container-loading-counts}/dtos/index.d.ts +0 -0
  512. /package/{lib/proxy → proxy}/container-loading-counts/loading-target-kind.enum.d.ts +0 -0
  513. /package/{lib/proxy/cost-groups → proxy/container-loading-scenarios}/dtos/index.d.ts +0 -0
  514. /package/{lib/proxy → proxy}/container-loading-scenarios/dtos/models.d.ts +0 -0
  515. /package/{lib/proxy → proxy}/container-loading-scenarios/pallet-status.enum.d.ts +0 -0
  516. /package/{lib/proxy/cost-items → proxy/container-mix-types}/dtos/index.d.ts +0 -0
  517. /package/{lib/proxy → proxy}/container-mix-types/dtos/models.d.ts +0 -0
  518. /package/{lib/proxy/cost-parameter-categories → proxy/container-pallet-capacities}/dtos/index.d.ts +0 -0
  519. /package/{lib/proxy → proxy}/container-pallet-capacities/dtos/models.d.ts +0 -0
  520. /package/{lib/proxy → proxy}/controllers/container-definition.service.d.ts +0 -0
  521. /package/{lib/proxy → proxy}/controllers/container-loading-scenario.service.d.ts +0 -0
  522. /package/{lib/proxy → proxy}/controllers/container-mix-type.service.d.ts +0 -0
  523. /package/{lib/proxy → proxy}/controllers/container-pallet-capacity.service.d.ts +0 -0
  524. /package/{lib/proxy → proxy}/controllers/cost-group.service.d.ts +0 -0
  525. /package/{lib/proxy → proxy}/controllers/cost-item.service.d.ts +0 -0
  526. /package/{lib/proxy → proxy}/controllers/cost-parameter-category.service.d.ts +0 -0
  527. /package/{lib/proxy → proxy}/controllers/cost-settings.service.d.ts +0 -0
  528. /package/{lib/proxy → proxy}/controllers/exchange-rate.service.d.ts +0 -0
  529. /package/{lib/proxy → proxy}/controllers/item.service.d.ts +0 -0
  530. /package/{lib/proxy → proxy}/controllers/packaging-material.service.d.ts +0 -0
  531. /package/{lib/proxy → proxy}/controllers/packaging-price.service.d.ts +0 -0
  532. /package/{lib/proxy → proxy}/controllers/packaging-type.service.d.ts +0 -0
  533. /package/{lib/proxy → proxy}/controllers/pallet-definition.service.d.ts +0 -0
  534. /package/{lib/proxy → proxy}/controllers/price-parameter-type.service.d.ts +0 -0
  535. /package/{lib/proxy → proxy}/controllers/sap-sales-person.service.d.ts +0 -0
  536. /package/{lib/proxy → proxy}/cost-groups/cost-group-role.enum.d.ts +0 -0
  537. /package/{lib/proxy/cost-parameters → proxy/cost-groups}/dtos/index.d.ts +0 -0
  538. /package/{lib/proxy → proxy}/cost-groups/dtos/models.d.ts +0 -0
  539. /package/{lib/proxy → proxy}/cost-items/cost-item-calculation-type.enum.d.ts +0 -0
  540. /package/{lib/proxy → proxy}/cost-items/cost-item-system-code.enum.d.ts +0 -0
  541. /package/{lib/proxy/exchange-rates → proxy/cost-items}/dtos/index.d.ts +0 -0
  542. /package/{lib/proxy → proxy}/cost-items/dtos/models.d.ts +0 -0
  543. /package/{lib/proxy/items → proxy/cost-parameter-categories}/dtos/index.d.ts +0 -0
  544. /package/{lib/proxy → proxy}/cost-parameter-categories/dtos/models.d.ts +0 -0
  545. /package/{lib/proxy → proxy}/cost-parameters/cost-parameter-status.enum.d.ts +0 -0
  546. /package/{lib/proxy/packaging-materials → proxy/cost-parameters}/dtos/index.d.ts +0 -0
  547. /package/{lib/proxy → proxy}/currencies/currency.enum.d.ts +0 -0
  548. /package/{lib/proxy → proxy}/currencies/index.d.ts +0 -0
  549. /package/{lib/proxy/packaging-prices → proxy/destination-ports}/dtos/index.d.ts +0 -0
  550. /package/{lib/proxy/packaging-types → proxy/exchange-rates}/dtos/index.d.ts +0 -0
  551. /package/{lib/proxy → proxy}/exchange-rates/dtos/models.d.ts +0 -0
  552. /package/{lib/proxy → proxy}/exchange-rates/exchange-rate-source.enum.d.ts +0 -0
  553. /package/{lib/proxy/pallet-definitions → proxy/fob-inland-definitions}/dtos/index.d.ts +0 -0
  554. /package/{lib/proxy/price-parameter-types → proxy/freight-offers}/dtos/index.d.ts +0 -0
  555. /package/{lib/proxy/sales-persons → proxy/incoterms}/dtos/index.d.ts +0 -0
  556. /package/{lib/proxy/settings → proxy/item-package-groups/dtos}/index.d.ts +0 -0
  557. /package/{lib/proxy → proxy}/items/dtos/models.d.ts +0 -0
  558. /package/{lib/proxy → proxy}/packaging-materials/dtos/models.d.ts +0 -0
  559. /package/{lib/proxy → proxy}/packaging-prices/dtos/models.d.ts +0 -0
  560. /package/{lib/proxy → proxy}/packaging-types/dtos/models.d.ts +0 -0
  561. /package/{lib/proxy → proxy}/pallet-definitions/dtos/models.d.ts +0 -0
  562. /package/{lib/proxy → proxy}/price-parameter-types/dtos/models.d.ts +0 -0
  563. /package/{lib/proxy → proxy}/sales-persons/dtos/models.d.ts +0 -0
  564. /package/{lib/proxy → proxy}/settings/models.d.ts +0 -0
  565. /package/{src/lib/proxy → proxy/src}/README.md +0 -0
@@ -0,0 +1,1185 @@
1
+ import * as i1 from '@abp/ng.core';
2
+ import { mapEnumToOptions } from '@abp/ng.core';
3
+ import * as i0 from '@angular/core';
4
+ import { Injectable } from '@angular/core';
5
+
6
+ var LoadingTargetKind;
7
+ (function (LoadingTargetKind) {
8
+ LoadingTargetKind[LoadingTargetKind["Container"] = 1] = "Container";
9
+ LoadingTargetKind[LoadingTargetKind["Pallet"] = 2] = "Pallet";
10
+ })(LoadingTargetKind || (LoadingTargetKind = {}));
11
+ const loadingTargetKindOptions = mapEnumToOptions(LoadingTargetKind);
12
+
13
+ var PalletStatus;
14
+ (function (PalletStatus) {
15
+ PalletStatus[PalletStatus["Unpalletized"] = 1] = "Unpalletized";
16
+ PalletStatus[PalletStatus["Palletized"] = 2] = "Palletized";
17
+ })(PalletStatus || (PalletStatus = {}));
18
+ const palletStatusOptions = mapEnumToOptions(PalletStatus);
19
+
20
+ class BlTrackingService {
21
+ constructor(restService) {
22
+ this.restService = restService;
23
+ this.apiName = 'KadoogluKeops';
24
+ this.create = (input) => this.restService.request({
25
+ method: 'POST',
26
+ url: '/api/kadoogluKeops/freight/bl-tracking',
27
+ body: input,
28
+ }, { apiName: this.apiName });
29
+ this.delete = (code) => this.restService.request({
30
+ method: 'DELETE',
31
+ url: `/api/kadoogluKeops/freight/bl-tracking/${code}`,
32
+ }, { apiName: this.apiName });
33
+ this.getList = () => this.restService.request({
34
+ method: 'GET',
35
+ url: '/api/kadoogluKeops/freight/bl-tracking',
36
+ }, { apiName: this.apiName });
37
+ this.update = (code, input) => this.restService.request({
38
+ method: 'PUT',
39
+ url: `/api/kadoogluKeops/freight/bl-tracking/${code}`,
40
+ body: input,
41
+ }, { apiName: this.apiName });
42
+ }
43
+ }
44
+ BlTrackingService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: BlTrackingService, deps: [{ token: i1.RestService }], target: i0.ɵɵFactoryTarget.Injectable });
45
+ BlTrackingService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: BlTrackingService, providedIn: 'root' });
46
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: BlTrackingService, decorators: [{
47
+ type: Injectable,
48
+ args: [{
49
+ providedIn: 'root',
50
+ }]
51
+ }], ctorParameters: function () { return [{ type: i1.RestService }]; } });
52
+
53
+ class BusinessPartnerService {
54
+ constructor(restService) {
55
+ this.restService = restService;
56
+ this.apiName = 'KadoogluKeops';
57
+ this.getList = () => this.restService.request({
58
+ method: 'GET',
59
+ url: '/api/kadoogluKeops/business-partners',
60
+ }, { apiName: this.apiName });
61
+ }
62
+ }
63
+ BusinessPartnerService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: BusinessPartnerService, deps: [{ token: i1.RestService }], target: i0.ɵɵFactoryTarget.Injectable });
64
+ BusinessPartnerService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: BusinessPartnerService, providedIn: 'root' });
65
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: BusinessPartnerService, decorators: [{
66
+ type: Injectable,
67
+ args: [{
68
+ providedIn: 'root',
69
+ }]
70
+ }], ctorParameters: function () { return [{ type: i1.RestService }]; } });
71
+
72
+ class CarrierService {
73
+ constructor(restService) {
74
+ this.restService = restService;
75
+ this.apiName = 'KadoogluKeops';
76
+ this.create = (input) => this.restService.request({
77
+ method: 'POST',
78
+ url: '/api/kadoogluKeops/freight/carriers',
79
+ body: input,
80
+ }, { apiName: this.apiName });
81
+ this.delete = (code) => this.restService.request({
82
+ method: 'DELETE',
83
+ url: `/api/kadoogluKeops/freight/carriers/${code}`,
84
+ }, { apiName: this.apiName });
85
+ this.getList = () => this.restService.request({
86
+ method: 'GET',
87
+ url: '/api/kadoogluKeops/freight/carriers',
88
+ }, { apiName: this.apiName });
89
+ this.update = (code, input) => this.restService.request({
90
+ method: 'PUT',
91
+ url: `/api/kadoogluKeops/freight/carriers/${code}`,
92
+ body: input,
93
+ }, { apiName: this.apiName });
94
+ }
95
+ }
96
+ CarrierService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: CarrierService, deps: [{ token: i1.RestService }], target: i0.ɵɵFactoryTarget.Injectable });
97
+ CarrierService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: CarrierService, providedIn: 'root' });
98
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: CarrierService, decorators: [{
99
+ type: Injectable,
100
+ args: [{
101
+ providedIn: 'root',
102
+ }]
103
+ }], ctorParameters: function () { return [{ type: i1.RestService }]; } });
104
+
105
+ class ContainerDefinitionService {
106
+ constructor(restService) {
107
+ this.restService = restService;
108
+ this.apiName = 'KadoogluKeops';
109
+ this.create = (input) => this.restService.request({
110
+ method: 'POST',
111
+ url: '/api/kadoogluKeops/container-definitions',
112
+ body: input,
113
+ }, { apiName: this.apiName });
114
+ this.delete = (code) => this.restService.request({
115
+ method: 'DELETE',
116
+ url: `/api/kadoogluKeops/container-definitions/${code}`,
117
+ }, { apiName: this.apiName });
118
+ this.get = (code) => this.restService.request({
119
+ method: 'GET',
120
+ url: `/api/kadoogluKeops/container-definitions/${code}`,
121
+ }, { apiName: this.apiName });
122
+ this.getList = () => this.restService.request({
123
+ method: 'GET',
124
+ url: '/api/kadoogluKeops/container-definitions',
125
+ }, { apiName: this.apiName });
126
+ this.update = (code, input) => this.restService.request({
127
+ method: 'PUT',
128
+ url: `/api/kadoogluKeops/container-definitions/${code}`,
129
+ body: input,
130
+ }, { apiName: this.apiName });
131
+ }
132
+ }
133
+ ContainerDefinitionService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: ContainerDefinitionService, deps: [{ token: i1.RestService }], target: i0.ɵɵFactoryTarget.Injectable });
134
+ ContainerDefinitionService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: ContainerDefinitionService, providedIn: 'root' });
135
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: ContainerDefinitionService, decorators: [{
136
+ type: Injectable,
137
+ args: [{
138
+ providedIn: 'root',
139
+ }]
140
+ }], ctorParameters: function () { return [{ type: i1.RestService }]; } });
141
+
142
+ class ContainerLoadingCountService {
143
+ constructor(restService) {
144
+ this.restService = restService;
145
+ this.apiName = 'KadoogluKeops';
146
+ this.getItemProductTypes = () => this.restService.request({
147
+ method: 'GET',
148
+ url: '/api/kadoogluKeops/container-loading-counts/item-product-types',
149
+ }, { apiName: this.apiName });
150
+ this.getList = () => this.restService.request({
151
+ method: 'GET',
152
+ url: '/api/kadoogluKeops/container-loading-counts',
153
+ }, { apiName: this.apiName });
154
+ this.save = (input) => this.restService.request({
155
+ method: 'POST',
156
+ url: '/api/kadoogluKeops/container-loading-counts/save',
157
+ body: input,
158
+ }, { apiName: this.apiName });
159
+ }
160
+ }
161
+ ContainerLoadingCountService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: ContainerLoadingCountService, deps: [{ token: i1.RestService }], target: i0.ɵɵFactoryTarget.Injectable });
162
+ ContainerLoadingCountService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: ContainerLoadingCountService, providedIn: 'root' });
163
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: ContainerLoadingCountService, decorators: [{
164
+ type: Injectable,
165
+ args: [{
166
+ providedIn: 'root',
167
+ }]
168
+ }], ctorParameters: function () { return [{ type: i1.RestService }]; } });
169
+
170
+ class ContainerLoadingScenarioService {
171
+ constructor(restService) {
172
+ this.restService = restService;
173
+ this.apiName = 'KadoogluKeops';
174
+ this.getList = () => this.restService.request({
175
+ method: 'GET',
176
+ url: '/api/kadoogluKeops/container-loading-scenarios',
177
+ }, { apiName: this.apiName });
178
+ this.save = (input) => this.restService.request({
179
+ method: 'POST',
180
+ url: '/api/kadoogluKeops/container-loading-scenarios/save',
181
+ body: input,
182
+ }, { apiName: this.apiName });
183
+ }
184
+ }
185
+ ContainerLoadingScenarioService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: ContainerLoadingScenarioService, deps: [{ token: i1.RestService }], target: i0.ɵɵFactoryTarget.Injectable });
186
+ ContainerLoadingScenarioService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: ContainerLoadingScenarioService, providedIn: 'root' });
187
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: ContainerLoadingScenarioService, decorators: [{
188
+ type: Injectable,
189
+ args: [{
190
+ providedIn: 'root',
191
+ }]
192
+ }], ctorParameters: function () { return [{ type: i1.RestService }]; } });
193
+
194
+ class ContainerMixTypeService {
195
+ constructor(restService) {
196
+ this.restService = restService;
197
+ this.apiName = 'KadoogluKeops';
198
+ this.create = (input) => this.restService.request({
199
+ method: 'POST',
200
+ url: '/api/kadoogluKeops/container-mix-types',
201
+ body: input,
202
+ }, { apiName: this.apiName });
203
+ this.delete = (code) => this.restService.request({
204
+ method: 'DELETE',
205
+ url: `/api/kadoogluKeops/container-mix-types/${code}`,
206
+ }, { apiName: this.apiName });
207
+ this.get = (code) => this.restService.request({
208
+ method: 'GET',
209
+ url: `/api/kadoogluKeops/container-mix-types/${code}`,
210
+ }, { apiName: this.apiName });
211
+ this.getList = () => this.restService.request({
212
+ method: 'GET',
213
+ url: '/api/kadoogluKeops/container-mix-types',
214
+ }, { apiName: this.apiName });
215
+ this.update = (code, input) => this.restService.request({
216
+ method: 'PUT',
217
+ url: `/api/kadoogluKeops/container-mix-types/${code}`,
218
+ body: input,
219
+ }, { apiName: this.apiName });
220
+ }
221
+ }
222
+ ContainerMixTypeService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: ContainerMixTypeService, deps: [{ token: i1.RestService }], target: i0.ɵɵFactoryTarget.Injectable });
223
+ ContainerMixTypeService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: ContainerMixTypeService, providedIn: 'root' });
224
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: ContainerMixTypeService, decorators: [{
225
+ type: Injectable,
226
+ args: [{
227
+ providedIn: 'root',
228
+ }]
229
+ }], ctorParameters: function () { return [{ type: i1.RestService }]; } });
230
+
231
+ class ContainerPalletCapacityService {
232
+ constructor(restService) {
233
+ this.restService = restService;
234
+ this.apiName = 'KadoogluKeops';
235
+ this.create = (input) => this.restService.request({
236
+ method: 'POST',
237
+ url: '/api/kadoogluKeops/container-pallet-capacities',
238
+ body: input,
239
+ }, { apiName: this.apiName });
240
+ this.delete = (code) => this.restService.request({
241
+ method: 'DELETE',
242
+ url: `/api/kadoogluKeops/container-pallet-capacities/${code}`,
243
+ }, { apiName: this.apiName });
244
+ this.get = (code) => this.restService.request({
245
+ method: 'GET',
246
+ url: `/api/kadoogluKeops/container-pallet-capacities/${code}`,
247
+ }, { apiName: this.apiName });
248
+ this.getList = () => this.restService.request({
249
+ method: 'GET',
250
+ url: '/api/kadoogluKeops/container-pallet-capacities',
251
+ }, { apiName: this.apiName });
252
+ this.update = (code, input) => this.restService.request({
253
+ method: 'PUT',
254
+ url: `/api/kadoogluKeops/container-pallet-capacities/${code}`,
255
+ body: input,
256
+ }, { apiName: this.apiName });
257
+ }
258
+ }
259
+ ContainerPalletCapacityService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: ContainerPalletCapacityService, deps: [{ token: i1.RestService }], target: i0.ɵɵFactoryTarget.Injectable });
260
+ ContainerPalletCapacityService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: ContainerPalletCapacityService, providedIn: 'root' });
261
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: ContainerPalletCapacityService, decorators: [{
262
+ type: Injectable,
263
+ args: [{
264
+ providedIn: 'root',
265
+ }]
266
+ }], ctorParameters: function () { return [{ type: i1.RestService }]; } });
267
+
268
+ class CostGroupService {
269
+ constructor(restService) {
270
+ this.restService = restService;
271
+ this.apiName = 'KadoogluKeops';
272
+ this.create = (input) => this.restService.request({
273
+ method: 'POST',
274
+ url: '/api/kadoogluKeops/cost-groups',
275
+ body: input,
276
+ }, { apiName: this.apiName });
277
+ this.delete = (code) => this.restService.request({
278
+ method: 'DELETE',
279
+ url: `/api/kadoogluKeops/cost-groups/${code}`,
280
+ }, { apiName: this.apiName });
281
+ this.get = (code) => this.restService.request({
282
+ method: 'GET',
283
+ url: `/api/kadoogluKeops/cost-groups/${code}`,
284
+ }, { apiName: this.apiName });
285
+ this.getList = () => this.restService.request({
286
+ method: 'GET',
287
+ url: '/api/kadoogluKeops/cost-groups',
288
+ }, { apiName: this.apiName });
289
+ this.update = (code, input) => this.restService.request({
290
+ method: 'PUT',
291
+ url: `/api/kadoogluKeops/cost-groups/${code}`,
292
+ body: input,
293
+ }, { apiName: this.apiName });
294
+ }
295
+ }
296
+ CostGroupService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: CostGroupService, deps: [{ token: i1.RestService }], target: i0.ɵɵFactoryTarget.Injectable });
297
+ CostGroupService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: CostGroupService, providedIn: 'root' });
298
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: CostGroupService, decorators: [{
299
+ type: Injectable,
300
+ args: [{
301
+ providedIn: 'root',
302
+ }]
303
+ }], ctorParameters: function () { return [{ type: i1.RestService }]; } });
304
+
305
+ class CostItemService {
306
+ constructor(restService) {
307
+ this.restService = restService;
308
+ this.apiName = 'KadoogluKeops';
309
+ this.create = (input) => this.restService.request({
310
+ method: 'POST',
311
+ url: '/api/kadoogluKeops/cost-items',
312
+ body: input,
313
+ }, { apiName: this.apiName });
314
+ this.delete = (code) => this.restService.request({
315
+ method: 'DELETE',
316
+ url: `/api/kadoogluKeops/cost-items/${code}`,
317
+ }, { apiName: this.apiName });
318
+ this.get = (code) => this.restService.request({
319
+ method: 'GET',
320
+ url: `/api/kadoogluKeops/cost-items/${code}`,
321
+ }, { apiName: this.apiName });
322
+ this.getList = () => this.restService.request({
323
+ method: 'GET',
324
+ url: '/api/kadoogluKeops/cost-items',
325
+ }, { apiName: this.apiName });
326
+ this.update = (code, input) => this.restService.request({
327
+ method: 'PUT',
328
+ url: `/api/kadoogluKeops/cost-items/${code}`,
329
+ body: input,
330
+ }, { apiName: this.apiName });
331
+ }
332
+ }
333
+ CostItemService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: CostItemService, deps: [{ token: i1.RestService }], target: i0.ɵɵFactoryTarget.Injectable });
334
+ CostItemService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: CostItemService, providedIn: 'root' });
335
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: CostItemService, decorators: [{
336
+ type: Injectable,
337
+ args: [{
338
+ providedIn: 'root',
339
+ }]
340
+ }], ctorParameters: function () { return [{ type: i1.RestService }]; } });
341
+
342
+ class CostParameterCategoryService {
343
+ constructor(restService) {
344
+ this.restService = restService;
345
+ this.apiName = 'KadoogluKeops';
346
+ this.create = (input) => this.restService.request({
347
+ method: 'POST',
348
+ url: '/api/kadoogluKeops/cost-parameter-categories',
349
+ body: input,
350
+ }, { apiName: this.apiName });
351
+ this.delete = (code) => this.restService.request({
352
+ method: 'DELETE',
353
+ url: `/api/kadoogluKeops/cost-parameter-categories/${code}`,
354
+ }, { apiName: this.apiName });
355
+ this.get = (code) => this.restService.request({
356
+ method: 'GET',
357
+ url: `/api/kadoogluKeops/cost-parameter-categories/${code}`,
358
+ }, { apiName: this.apiName });
359
+ this.getList = () => this.restService.request({
360
+ method: 'GET',
361
+ url: '/api/kadoogluKeops/cost-parameter-categories',
362
+ }, { apiName: this.apiName });
363
+ this.update = (code, input) => this.restService.request({
364
+ method: 'PUT',
365
+ url: `/api/kadoogluKeops/cost-parameter-categories/${code}`,
366
+ body: input,
367
+ }, { apiName: this.apiName });
368
+ }
369
+ }
370
+ CostParameterCategoryService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: CostParameterCategoryService, deps: [{ token: i1.RestService }], target: i0.ɵɵFactoryTarget.Injectable });
371
+ CostParameterCategoryService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: CostParameterCategoryService, providedIn: 'root' });
372
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: CostParameterCategoryService, decorators: [{
373
+ type: Injectable,
374
+ args: [{
375
+ providedIn: 'root',
376
+ }]
377
+ }], ctorParameters: function () { return [{ type: i1.RestService }]; } });
378
+
379
+ class CostParameterService {
380
+ constructor(restService) {
381
+ this.restService = restService;
382
+ this.apiName = 'KadoogluKeops';
383
+ this.create = (input) => this.restService.request({
384
+ method: 'POST',
385
+ url: '/api/kadoogluKeops/cost-parameters',
386
+ body: input,
387
+ }, { apiName: this.apiName });
388
+ this.delete = (code) => this.restService.request({
389
+ method: 'DELETE',
390
+ url: `/api/kadoogluKeops/cost-parameters/${code}`,
391
+ }, { apiName: this.apiName });
392
+ this.getList = () => this.restService.request({
393
+ method: 'GET',
394
+ url: '/api/kadoogluKeops/cost-parameters',
395
+ }, { apiName: this.apiName });
396
+ this.update = (code, input) => this.restService.request({
397
+ method: 'PUT',
398
+ url: `/api/kadoogluKeops/cost-parameters/${code}`,
399
+ body: input,
400
+ }, { apiName: this.apiName });
401
+ }
402
+ }
403
+ CostParameterService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: CostParameterService, deps: [{ token: i1.RestService }], target: i0.ɵɵFactoryTarget.Injectable });
404
+ CostParameterService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: CostParameterService, providedIn: 'root' });
405
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: CostParameterService, decorators: [{
406
+ type: Injectable,
407
+ args: [{
408
+ providedIn: 'root',
409
+ }]
410
+ }], ctorParameters: function () { return [{ type: i1.RestService }]; } });
411
+
412
+ class CostSettingsService {
413
+ constructor(restService) {
414
+ this.restService = restService;
415
+ this.apiName = 'KadoogluKeops';
416
+ this.get = () => this.restService.request({
417
+ method: 'GET',
418
+ url: '/api/kadoogluKeops/cost-settings',
419
+ }, { apiName: this.apiName });
420
+ this.update = (input) => this.restService.request({
421
+ method: 'PUT',
422
+ url: '/api/kadoogluKeops/cost-settings',
423
+ body: input,
424
+ }, { apiName: this.apiName });
425
+ }
426
+ }
427
+ CostSettingsService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: CostSettingsService, deps: [{ token: i1.RestService }], target: i0.ɵɵFactoryTarget.Injectable });
428
+ CostSettingsService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: CostSettingsService, providedIn: 'root' });
429
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: CostSettingsService, decorators: [{
430
+ type: Injectable,
431
+ args: [{
432
+ providedIn: 'root',
433
+ }]
434
+ }], ctorParameters: function () { return [{ type: i1.RestService }]; } });
435
+
436
+ class DestinationPortService {
437
+ constructor(restService) {
438
+ this.restService = restService;
439
+ this.apiName = 'KadoogluKeops';
440
+ this.create = (input) => this.restService.request({
441
+ method: 'POST',
442
+ url: '/api/kadoogluKeops/freight/destination-ports',
443
+ body: input,
444
+ }, { apiName: this.apiName });
445
+ this.delete = (code) => this.restService.request({
446
+ method: 'DELETE',
447
+ url: `/api/kadoogluKeops/freight/destination-ports/${code}`,
448
+ }, { apiName: this.apiName });
449
+ this.getCountriesLookup = () => this.restService.request({
450
+ method: 'GET',
451
+ url: '/api/kadoogluKeops/freight/destination-ports/countries-lookup',
452
+ }, { apiName: this.apiName });
453
+ this.getList = () => this.restService.request({
454
+ method: 'GET',
455
+ url: '/api/kadoogluKeops/freight/destination-ports',
456
+ }, { apiName: this.apiName });
457
+ this.getLookupByCountry = (countryCode) => this.restService.request({
458
+ method: 'GET',
459
+ url: `/api/kadoogluKeops/freight/destination-ports/lookup/${countryCode}`,
460
+ }, { apiName: this.apiName });
461
+ this.update = (code, input) => this.restService.request({
462
+ method: 'PUT',
463
+ url: `/api/kadoogluKeops/freight/destination-ports/${code}`,
464
+ body: input,
465
+ }, { apiName: this.apiName });
466
+ }
467
+ }
468
+ DestinationPortService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: DestinationPortService, deps: [{ token: i1.RestService }], target: i0.ɵɵFactoryTarget.Injectable });
469
+ DestinationPortService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: DestinationPortService, providedIn: 'root' });
470
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: DestinationPortService, decorators: [{
471
+ type: Injectable,
472
+ args: [{
473
+ providedIn: 'root',
474
+ }]
475
+ }], ctorParameters: function () { return [{ type: i1.RestService }]; } });
476
+
477
+ class ExchangeRateService {
478
+ constructor(restService) {
479
+ this.restService = restService;
480
+ this.apiName = 'KadoogluKeops';
481
+ this.get = () => this.restService.request({
482
+ method: 'GET',
483
+ url: '/api/kadoogluKeops/exchange-rates',
484
+ }, { apiName: this.apiName });
485
+ this.update = (input) => this.restService.request({
486
+ method: 'PUT',
487
+ url: '/api/kadoogluKeops/exchange-rates',
488
+ body: input,
489
+ }, { apiName: this.apiName });
490
+ }
491
+ }
492
+ ExchangeRateService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: ExchangeRateService, deps: [{ token: i1.RestService }], target: i0.ɵɵFactoryTarget.Injectable });
493
+ ExchangeRateService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: ExchangeRateService, providedIn: 'root' });
494
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: ExchangeRateService, decorators: [{
495
+ type: Injectable,
496
+ args: [{
497
+ providedIn: 'root',
498
+ }]
499
+ }], ctorParameters: function () { return [{ type: i1.RestService }]; } });
500
+
501
+ class FobInlandDefinitionService {
502
+ constructor(restService) {
503
+ this.restService = restService;
504
+ this.apiName = 'KadoogluKeops';
505
+ this.create = (input) => this.restService.request({
506
+ method: 'POST',
507
+ url: '/api/kadoogluKeops/freight/fob-inland',
508
+ body: input,
509
+ }, { apiName: this.apiName });
510
+ this.delete = (code) => this.restService.request({
511
+ method: 'DELETE',
512
+ url: `/api/kadoogluKeops/freight/fob-inland/${code}`,
513
+ }, { apiName: this.apiName });
514
+ this.getList = () => this.restService.request({
515
+ method: 'GET',
516
+ url: '/api/kadoogluKeops/freight/fob-inland',
517
+ }, { apiName: this.apiName });
518
+ this.update = (code, input) => this.restService.request({
519
+ method: 'PUT',
520
+ url: `/api/kadoogluKeops/freight/fob-inland/${code}`,
521
+ body: input,
522
+ }, { apiName: this.apiName });
523
+ }
524
+ }
525
+ FobInlandDefinitionService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: FobInlandDefinitionService, deps: [{ token: i1.RestService }], target: i0.ɵɵFactoryTarget.Injectable });
526
+ FobInlandDefinitionService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: FobInlandDefinitionService, providedIn: 'root' });
527
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: FobInlandDefinitionService, decorators: [{
528
+ type: Injectable,
529
+ args: [{
530
+ providedIn: 'root',
531
+ }]
532
+ }], ctorParameters: function () { return [{ type: i1.RestService }]; } });
533
+
534
+ class FreightOfferService {
535
+ constructor(restService) {
536
+ this.restService = restService;
537
+ this.apiName = 'KadoogluKeops';
538
+ this.copy = (code, input) => this.restService.request({
539
+ method: 'POST',
540
+ url: `/api/kadoogluKeops/freight-offers/${code}/copy`,
541
+ body: input,
542
+ }, { apiName: this.apiName });
543
+ this.create = (input) => this.restService.request({
544
+ method: 'POST',
545
+ url: '/api/kadoogluKeops/freight-offers',
546
+ body: input,
547
+ }, { apiName: this.apiName });
548
+ this.delete = (code) => this.restService.request({
549
+ method: 'DELETE',
550
+ url: `/api/kadoogluKeops/freight-offers/${code}`,
551
+ }, { apiName: this.apiName });
552
+ this.get = (code) => this.restService.request({
553
+ method: 'GET',
554
+ url: `/api/kadoogluKeops/freight-offers/${code}`,
555
+ }, { apiName: this.apiName });
556
+ this.getContainerDefinitionsLookup = () => this.restService.request({
557
+ method: 'GET',
558
+ url: '/api/kadoogluKeops/freight-offers/container-definitions-lookup',
559
+ }, { apiName: this.apiName });
560
+ this.getCountriesLookup = () => this.restService.request({
561
+ method: 'GET',
562
+ url: '/api/kadoogluKeops/freight-offers/countries-lookup',
563
+ }, { apiName: this.apiName });
564
+ this.getList = () => this.restService.request({
565
+ method: 'GET',
566
+ url: '/api/kadoogluKeops/freight-offers',
567
+ }, { apiName: this.apiName });
568
+ this.getUsdRate = () => this.restService.request({
569
+ method: 'GET',
570
+ url: '/api/kadoogluKeops/freight-offers/usd-rate',
571
+ }, { apiName: this.apiName });
572
+ this.update = (code, input) => this.restService.request({
573
+ method: 'PUT',
574
+ url: `/api/kadoogluKeops/freight-offers/${code}`,
575
+ body: input,
576
+ }, { apiName: this.apiName });
577
+ }
578
+ }
579
+ FreightOfferService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: FreightOfferService, deps: [{ token: i1.RestService }], target: i0.ɵɵFactoryTarget.Injectable });
580
+ FreightOfferService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: FreightOfferService, providedIn: 'root' });
581
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: FreightOfferService, decorators: [{
582
+ type: Injectable,
583
+ args: [{
584
+ providedIn: 'root',
585
+ }]
586
+ }], ctorParameters: function () { return [{ type: i1.RestService }]; } });
587
+
588
+ class IncotermService {
589
+ constructor(restService) {
590
+ this.restService = restService;
591
+ this.apiName = 'KadoogluKeops';
592
+ this.create = (input) => this.restService.request({
593
+ method: 'POST',
594
+ url: '/api/kadoogluKeops/freight/incoterms',
595
+ body: input,
596
+ }, { apiName: this.apiName });
597
+ this.delete = (code) => this.restService.request({
598
+ method: 'DELETE',
599
+ url: `/api/kadoogluKeops/freight/incoterms/${code}`,
600
+ }, { apiName: this.apiName });
601
+ this.getList = () => this.restService.request({
602
+ method: 'GET',
603
+ url: '/api/kadoogluKeops/freight/incoterms',
604
+ }, { apiName: this.apiName });
605
+ this.update = (code, input) => this.restService.request({
606
+ method: 'PUT',
607
+ url: `/api/kadoogluKeops/freight/incoterms/${code}`,
608
+ body: input,
609
+ }, { apiName: this.apiName });
610
+ }
611
+ }
612
+ IncotermService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: IncotermService, deps: [{ token: i1.RestService }], target: i0.ɵɵFactoryTarget.Injectable });
613
+ IncotermService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: IncotermService, providedIn: 'root' });
614
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: IncotermService, decorators: [{
615
+ type: Injectable,
616
+ args: [{
617
+ providedIn: 'root',
618
+ }]
619
+ }], ctorParameters: function () { return [{ type: i1.RestService }]; } });
620
+
621
+ class ItemPackageGroupService {
622
+ constructor(restService) {
623
+ this.restService = restService;
624
+ this.apiName = 'KadoogluKeops';
625
+ this.create = (input) => this.restService.request({
626
+ method: 'POST',
627
+ url: '/api/kadoogluKeops/item-package-groups',
628
+ body: input,
629
+ }, { apiName: this.apiName });
630
+ this.delete = (code) => this.restService.request({
631
+ method: 'DELETE',
632
+ url: `/api/kadoogluKeops/item-package-groups/${code}`,
633
+ }, { apiName: this.apiName });
634
+ this.get = (code) => this.restService.request({
635
+ method: 'GET',
636
+ url: `/api/kadoogluKeops/item-package-groups/${code}`,
637
+ }, { apiName: this.apiName });
638
+ this.getList = () => this.restService.request({
639
+ method: 'GET',
640
+ url: '/api/kadoogluKeops/item-package-groups',
641
+ }, { apiName: this.apiName });
642
+ this.update = (code, input) => this.restService.request({
643
+ method: 'PUT',
644
+ url: `/api/kadoogluKeops/item-package-groups/${code}`,
645
+ body: input,
646
+ }, { apiName: this.apiName });
647
+ }
648
+ }
649
+ ItemPackageGroupService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: ItemPackageGroupService, deps: [{ token: i1.RestService }], target: i0.ɵɵFactoryTarget.Injectable });
650
+ ItemPackageGroupService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: ItemPackageGroupService, providedIn: 'root' });
651
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: ItemPackageGroupService, decorators: [{
652
+ type: Injectable,
653
+ args: [{
654
+ providedIn: 'root',
655
+ }]
656
+ }], ctorParameters: function () { return [{ type: i1.RestService }]; } });
657
+
658
+ class ItemPackageTypeService {
659
+ constructor(restService) {
660
+ this.restService = restService;
661
+ this.apiName = 'KadoogluKeops';
662
+ this.create = (input) => this.restService.request({
663
+ method: 'POST',
664
+ url: '/api/kadoogluKeops/item-package-types',
665
+ body: input,
666
+ }, { apiName: this.apiName });
667
+ this.delete = (code) => this.restService.request({
668
+ method: 'DELETE',
669
+ url: `/api/kadoogluKeops/item-package-types/${code}`,
670
+ }, { apiName: this.apiName });
671
+ this.get = (code) => this.restService.request({
672
+ method: 'GET',
673
+ url: `/api/kadoogluKeops/item-package-types/${code}`,
674
+ }, { apiName: this.apiName });
675
+ this.getList = () => this.restService.request({
676
+ method: 'GET',
677
+ url: '/api/kadoogluKeops/item-package-types',
678
+ }, { apiName: this.apiName });
679
+ this.update = (code, input) => this.restService.request({
680
+ method: 'PUT',
681
+ url: `/api/kadoogluKeops/item-package-types/${code}`,
682
+ body: input,
683
+ }, { apiName: this.apiName });
684
+ }
685
+ }
686
+ ItemPackageTypeService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: ItemPackageTypeService, deps: [{ token: i1.RestService }], target: i0.ɵɵFactoryTarget.Injectable });
687
+ ItemPackageTypeService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: ItemPackageTypeService, providedIn: 'root' });
688
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: ItemPackageTypeService, decorators: [{
689
+ type: Injectable,
690
+ args: [{
691
+ providedIn: 'root',
692
+ }]
693
+ }], ctorParameters: function () { return [{ type: i1.RestService }]; } });
694
+
695
+ class ItemProductTypeService {
696
+ constructor(restService) {
697
+ this.restService = restService;
698
+ this.apiName = 'KadoogluKeops';
699
+ this.create = (input) => this.restService.request({
700
+ method: 'POST',
701
+ url: '/api/kadoogluKeops/item-product-types',
702
+ body: input,
703
+ }, { apiName: this.apiName });
704
+ this.delete = (code) => this.restService.request({
705
+ method: 'DELETE',
706
+ url: `/api/kadoogluKeops/item-product-types/${code}`,
707
+ }, { apiName: this.apiName });
708
+ this.get = (code) => this.restService.request({
709
+ method: 'GET',
710
+ url: `/api/kadoogluKeops/item-product-types/${code}`,
711
+ }, { apiName: this.apiName });
712
+ this.getList = () => this.restService.request({
713
+ method: 'GET',
714
+ url: '/api/kadoogluKeops/item-product-types',
715
+ }, { apiName: this.apiName });
716
+ this.update = (code, input) => this.restService.request({
717
+ method: 'PUT',
718
+ url: `/api/kadoogluKeops/item-product-types/${code}`,
719
+ body: input,
720
+ }, { apiName: this.apiName });
721
+ }
722
+ }
723
+ ItemProductTypeService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: ItemProductTypeService, deps: [{ token: i1.RestService }], target: i0.ɵɵFactoryTarget.Injectable });
724
+ ItemProductTypeService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: ItemProductTypeService, providedIn: 'root' });
725
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: ItemProductTypeService, decorators: [{
726
+ type: Injectable,
727
+ args: [{
728
+ providedIn: 'root',
729
+ }]
730
+ }], ctorParameters: function () { return [{ type: i1.RestService }]; } });
731
+
732
+ class ItemService {
733
+ constructor(restService) {
734
+ this.restService = restService;
735
+ this.apiName = 'KadoogluKeops';
736
+ this.getList = (codePrefix) => this.restService.request({
737
+ method: 'GET',
738
+ url: '/api/kadoogluKeops/items',
739
+ params: { codePrefix },
740
+ }, { apiName: this.apiName });
741
+ }
742
+ }
743
+ ItemService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: ItemService, deps: [{ token: i1.RestService }], target: i0.ɵɵFactoryTarget.Injectable });
744
+ ItemService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: ItemService, providedIn: 'root' });
745
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: ItemService, decorators: [{
746
+ type: Injectable,
747
+ args: [{
748
+ providedIn: 'root',
749
+ }]
750
+ }], ctorParameters: function () { return [{ type: i1.RestService }]; } });
751
+
752
+ class LineService {
753
+ constructor(restService) {
754
+ this.restService = restService;
755
+ this.apiName = 'KadoogluKeops';
756
+ this.create = (input) => this.restService.request({
757
+ method: 'POST',
758
+ url: '/api/kadoogluKeops/freight/lines',
759
+ body: input,
760
+ }, { apiName: this.apiName });
761
+ this.delete = (code) => this.restService.request({
762
+ method: 'DELETE',
763
+ url: `/api/kadoogluKeops/freight/lines/${code}`,
764
+ }, { apiName: this.apiName });
765
+ this.getList = () => this.restService.request({
766
+ method: 'GET',
767
+ url: '/api/kadoogluKeops/freight/lines',
768
+ }, { apiName: this.apiName });
769
+ this.update = (code, input) => this.restService.request({
770
+ method: 'PUT',
771
+ url: `/api/kadoogluKeops/freight/lines/${code}`,
772
+ body: input,
773
+ }, { apiName: this.apiName });
774
+ }
775
+ }
776
+ LineService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: LineService, deps: [{ token: i1.RestService }], target: i0.ɵɵFactoryTarget.Injectable });
777
+ LineService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: LineService, providedIn: 'root' });
778
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: LineService, decorators: [{
779
+ type: Injectable,
780
+ args: [{
781
+ providedIn: 'root',
782
+ }]
783
+ }], ctorParameters: function () { return [{ type: i1.RestService }]; } });
784
+
785
+ class PackagingMaterialService {
786
+ constructor(restService) {
787
+ this.restService = restService;
788
+ this.apiName = 'KadoogluKeops';
789
+ this.create = (input) => this.restService.request({
790
+ method: 'POST',
791
+ url: '/api/kadoogluKeops/packaging-materials',
792
+ body: input,
793
+ }, { apiName: this.apiName });
794
+ this.delete = (code) => this.restService.request({
795
+ method: 'DELETE',
796
+ url: `/api/kadoogluKeops/packaging-materials/${code}`,
797
+ }, { apiName: this.apiName });
798
+ this.get = (code) => this.restService.request({
799
+ method: 'GET',
800
+ url: `/api/kadoogluKeops/packaging-materials/${code}`,
801
+ }, { apiName: this.apiName });
802
+ this.getList = () => this.restService.request({
803
+ method: 'GET',
804
+ url: '/api/kadoogluKeops/packaging-materials',
805
+ }, { apiName: this.apiName });
806
+ this.update = (code, input) => this.restService.request({
807
+ method: 'PUT',
808
+ url: `/api/kadoogluKeops/packaging-materials/${code}`,
809
+ body: input,
810
+ }, { apiName: this.apiName });
811
+ }
812
+ }
813
+ PackagingMaterialService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: PackagingMaterialService, deps: [{ token: i1.RestService }], target: i0.ɵɵFactoryTarget.Injectable });
814
+ PackagingMaterialService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: PackagingMaterialService, providedIn: 'root' });
815
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: PackagingMaterialService, decorators: [{
816
+ type: Injectable,
817
+ args: [{
818
+ providedIn: 'root',
819
+ }]
820
+ }], ctorParameters: function () { return [{ type: i1.RestService }]; } });
821
+
822
+ class PackagingPriceService {
823
+ constructor(restService) {
824
+ this.restService = restService;
825
+ this.apiName = 'KadoogluKeops';
826
+ this.create = (input) => this.restService.request({
827
+ method: 'POST',
828
+ url: '/api/kadoogluKeops/packaging-prices',
829
+ body: input,
830
+ }, { apiName: this.apiName });
831
+ this.delete = (docEntry) => this.restService.request({
832
+ method: 'DELETE',
833
+ url: `/api/kadoogluKeops/packaging-prices/${docEntry}`,
834
+ }, { apiName: this.apiName });
835
+ this.get = (docEntry) => this.restService.request({
836
+ method: 'GET',
837
+ url: `/api/kadoogluKeops/packaging-prices/${docEntry}`,
838
+ }, { apiName: this.apiName });
839
+ this.getLinesAsExcelFile = (input) => this.restService.request({
840
+ method: 'GET',
841
+ responseType: 'blob',
842
+ url: '/api/kadoogluKeops/packaging-prices/lines-as-excel-file',
843
+ params: { docEntry: input.docEntry, materialTypeCode: input.materialTypeCode },
844
+ }, { apiName: this.apiName });
845
+ this.getList = () => this.restService.request({
846
+ method: 'GET',
847
+ url: '/api/kadoogluKeops/packaging-prices',
848
+ }, { apiName: this.apiName });
849
+ this.getMergedLines = (docEntry, materialTypeCode) => this.restService.request({
850
+ method: 'GET',
851
+ url: '/api/kadoogluKeops/packaging-prices/merged-lines',
852
+ params: { docEntry, materialTypeCode },
853
+ }, { apiName: this.apiName });
854
+ this.update = (docEntry, input) => this.restService.request({
855
+ method: 'PUT',
856
+ url: `/api/kadoogluKeops/packaging-prices/${docEntry}`,
857
+ body: input,
858
+ }, { apiName: this.apiName });
859
+ this.updateSapItemPrices = (docEntry) => this.restService.request({
860
+ method: 'POST',
861
+ url: `/api/kadoogluKeops/packaging-prices/${docEntry}/update-sap-item-prices`,
862
+ }, { apiName: this.apiName });
863
+ }
864
+ }
865
+ PackagingPriceService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: PackagingPriceService, deps: [{ token: i1.RestService }], target: i0.ɵɵFactoryTarget.Injectable });
866
+ PackagingPriceService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: PackagingPriceService, providedIn: 'root' });
867
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: PackagingPriceService, decorators: [{
868
+ type: Injectable,
869
+ args: [{
870
+ providedIn: 'root',
871
+ }]
872
+ }], ctorParameters: function () { return [{ type: i1.RestService }]; } });
873
+
874
+ class PackagingTypeService {
875
+ constructor(restService) {
876
+ this.restService = restService;
877
+ this.apiName = 'KadoogluKeops';
878
+ this.create = (input) => this.restService.request({
879
+ method: 'POST',
880
+ url: '/api/kadoogluKeops/packaging-types',
881
+ body: input,
882
+ }, { apiName: this.apiName });
883
+ this.delete = (code) => this.restService.request({
884
+ method: 'DELETE',
885
+ url: `/api/kadoogluKeops/packaging-types/${code}`,
886
+ }, { apiName: this.apiName });
887
+ this.get = (code) => this.restService.request({
888
+ method: 'GET',
889
+ url: `/api/kadoogluKeops/packaging-types/${code}`,
890
+ }, { apiName: this.apiName });
891
+ this.getList = () => this.restService.request({
892
+ method: 'GET',
893
+ url: '/api/kadoogluKeops/packaging-types',
894
+ }, { apiName: this.apiName });
895
+ this.update = (code, input) => this.restService.request({
896
+ method: 'PUT',
897
+ url: `/api/kadoogluKeops/packaging-types/${code}`,
898
+ body: input,
899
+ }, { apiName: this.apiName });
900
+ }
901
+ }
902
+ PackagingTypeService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: PackagingTypeService, deps: [{ token: i1.RestService }], target: i0.ɵɵFactoryTarget.Injectable });
903
+ PackagingTypeService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: PackagingTypeService, providedIn: 'root' });
904
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: PackagingTypeService, decorators: [{
905
+ type: Injectable,
906
+ args: [{
907
+ providedIn: 'root',
908
+ }]
909
+ }], ctorParameters: function () { return [{ type: i1.RestService }]; } });
910
+
911
+ class PalletDefinitionService {
912
+ constructor(restService) {
913
+ this.restService = restService;
914
+ this.apiName = 'KadoogluKeops';
915
+ this.create = (input) => this.restService.request({
916
+ method: 'POST',
917
+ url: '/api/kadoogluKeops/pallet-definitions',
918
+ body: input,
919
+ }, { apiName: this.apiName });
920
+ this.delete = (code) => this.restService.request({
921
+ method: 'DELETE',
922
+ url: `/api/kadoogluKeops/pallet-definitions/${code}`,
923
+ }, { apiName: this.apiName });
924
+ this.get = (code) => this.restService.request({
925
+ method: 'GET',
926
+ url: `/api/kadoogluKeops/pallet-definitions/${code}`,
927
+ }, { apiName: this.apiName });
928
+ this.getList = () => this.restService.request({
929
+ method: 'GET',
930
+ url: '/api/kadoogluKeops/pallet-definitions',
931
+ }, { apiName: this.apiName });
932
+ this.update = (code, input) => this.restService.request({
933
+ method: 'PUT',
934
+ url: `/api/kadoogluKeops/pallet-definitions/${code}`,
935
+ body: input,
936
+ }, { apiName: this.apiName });
937
+ }
938
+ }
939
+ PalletDefinitionService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: PalletDefinitionService, deps: [{ token: i1.RestService }], target: i0.ɵɵFactoryTarget.Injectable });
940
+ PalletDefinitionService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: PalletDefinitionService, providedIn: 'root' });
941
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: PalletDefinitionService, decorators: [{
942
+ type: Injectable,
943
+ args: [{
944
+ providedIn: 'root',
945
+ }]
946
+ }], ctorParameters: function () { return [{ type: i1.RestService }]; } });
947
+
948
+ class PosService {
949
+ constructor(restService) {
950
+ this.restService = restService;
951
+ this.apiName = 'KadoogluKeops';
952
+ this.create = (input) => this.restService.request({
953
+ method: 'POST',
954
+ url: '/api/kadoogluKeops/freight/pos',
955
+ body: input,
956
+ }, { apiName: this.apiName });
957
+ this.delete = (code) => this.restService.request({
958
+ method: 'DELETE',
959
+ url: `/api/kadoogluKeops/freight/pos/${code}`,
960
+ }, { apiName: this.apiName });
961
+ this.getList = () => this.restService.request({
962
+ method: 'GET',
963
+ url: '/api/kadoogluKeops/freight/pos',
964
+ }, { apiName: this.apiName });
965
+ this.update = (code, input) => this.restService.request({
966
+ method: 'PUT',
967
+ url: `/api/kadoogluKeops/freight/pos/${code}`,
968
+ body: input,
969
+ }, { apiName: this.apiName });
970
+ }
971
+ }
972
+ PosService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: PosService, deps: [{ token: i1.RestService }], target: i0.ɵɵFactoryTarget.Injectable });
973
+ PosService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: PosService, providedIn: 'root' });
974
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: PosService, decorators: [{
975
+ type: Injectable,
976
+ args: [{
977
+ providedIn: 'root',
978
+ }]
979
+ }], ctorParameters: function () { return [{ type: i1.RestService }]; } });
980
+
981
+ class PriceListService {
982
+ constructor(restService) {
983
+ this.restService = restService;
984
+ this.apiName = 'KadoogluKeops';
985
+ this.getItems = (cpRegionCode, cpGroupCode) => this.restService.request({
986
+ method: 'GET',
987
+ url: '/api/kadoogluKeops/price-lists/items',
988
+ params: { cpRegionCode, cpGroupCode },
989
+ }, { apiName: this.apiName });
990
+ this.getList = (cpRegionCode, ppTypeCode) => this.restService.request({
991
+ method: 'GET',
992
+ url: '/api/kadoogluKeops/price-lists',
993
+ params: { cpRegionCode, ppTypeCode },
994
+ }, { apiName: this.apiName });
995
+ }
996
+ }
997
+ PriceListService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: PriceListService, deps: [{ token: i1.RestService }], target: i0.ɵɵFactoryTarget.Injectable });
998
+ PriceListService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: PriceListService, providedIn: 'root' });
999
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: PriceListService, decorators: [{
1000
+ type: Injectable,
1001
+ args: [{
1002
+ providedIn: 'root',
1003
+ }]
1004
+ }], ctorParameters: function () { return [{ type: i1.RestService }]; } });
1005
+
1006
+ class PriceParameterTypeService {
1007
+ constructor(restService) {
1008
+ this.restService = restService;
1009
+ this.apiName = 'KadoogluKeops';
1010
+ this.create = (input) => this.restService.request({
1011
+ method: 'POST',
1012
+ url: '/api/kadoogluKeops/price-parameter-types',
1013
+ body: input,
1014
+ }, { apiName: this.apiName });
1015
+ this.delete = (code) => this.restService.request({
1016
+ method: 'DELETE',
1017
+ url: `/api/kadoogluKeops/price-parameter-types/${code}`,
1018
+ }, { apiName: this.apiName });
1019
+ this.getList = () => this.restService.request({
1020
+ method: 'GET',
1021
+ url: '/api/kadoogluKeops/price-parameter-types',
1022
+ }, { apiName: this.apiName });
1023
+ this.getLookup = () => this.restService.request({
1024
+ method: 'GET',
1025
+ url: '/api/kadoogluKeops/price-parameter-types/lookup',
1026
+ }, { apiName: this.apiName });
1027
+ this.update = (code, input) => this.restService.request({
1028
+ method: 'PUT',
1029
+ url: `/api/kadoogluKeops/price-parameter-types/${code}`,
1030
+ body: input,
1031
+ }, { apiName: this.apiName });
1032
+ }
1033
+ }
1034
+ PriceParameterTypeService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: PriceParameterTypeService, deps: [{ token: i1.RestService }], target: i0.ɵɵFactoryTarget.Injectable });
1035
+ PriceParameterTypeService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: PriceParameterTypeService, providedIn: 'root' });
1036
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: PriceParameterTypeService, decorators: [{
1037
+ type: Injectable,
1038
+ args: [{
1039
+ providedIn: 'root',
1040
+ }]
1041
+ }], ctorParameters: function () { return [{ type: i1.RestService }]; } });
1042
+
1043
+ class PriceParameterService {
1044
+ constructor(restService) {
1045
+ this.restService = restService;
1046
+ this.apiName = 'KadoogluKeops';
1047
+ this.create = (input) => this.restService.request({
1048
+ method: 'POST',
1049
+ url: '/api/kadoogluKeops/price-parameters',
1050
+ body: input,
1051
+ }, { apiName: this.apiName });
1052
+ this.delete = (docEntry) => this.restService.request({
1053
+ method: 'DELETE',
1054
+ url: `/api/kadoogluKeops/price-parameters/${docEntry}`,
1055
+ }, { apiName: this.apiName });
1056
+ this.get = (docEntry) => this.restService.request({
1057
+ method: 'GET',
1058
+ url: `/api/kadoogluKeops/price-parameters/${docEntry}`,
1059
+ }, { apiName: this.apiName });
1060
+ this.getList = () => this.restService.request({
1061
+ method: 'GET',
1062
+ url: '/api/kadoogluKeops/price-parameters',
1063
+ }, { apiName: this.apiName });
1064
+ this.update = (docEntry, input) => this.restService.request({
1065
+ method: 'PUT',
1066
+ url: `/api/kadoogluKeops/price-parameters/${docEntry}`,
1067
+ body: input,
1068
+ }, { apiName: this.apiName });
1069
+ }
1070
+ }
1071
+ PriceParameterService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: PriceParameterService, deps: [{ token: i1.RestService }], target: i0.ɵɵFactoryTarget.Injectable });
1072
+ PriceParameterService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: PriceParameterService, providedIn: 'root' });
1073
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: PriceParameterService, decorators: [{
1074
+ type: Injectable,
1075
+ args: [{
1076
+ providedIn: 'root',
1077
+ }]
1078
+ }], ctorParameters: function () { return [{ type: i1.RestService }]; } });
1079
+
1080
+ class SapSalesPersonService {
1081
+ constructor(restService) {
1082
+ this.restService = restService;
1083
+ this.apiName = 'KadoogluKeops';
1084
+ this.getList = () => this.restService.request({
1085
+ method: 'GET',
1086
+ url: '/api/kadoogluKeops/sap-sales-persons',
1087
+ }, { apiName: this.apiName });
1088
+ this.update = (salesEmployeeCode, input) => this.restService.request({
1089
+ method: 'PATCH',
1090
+ url: `/api/kadoogluKeops/sap-sales-persons/${salesEmployeeCode}`,
1091
+ body: input,
1092
+ }, { apiName: this.apiName });
1093
+ }
1094
+ }
1095
+ SapSalesPersonService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: SapSalesPersonService, deps: [{ token: i1.RestService }], target: i0.ɵɵFactoryTarget.Injectable });
1096
+ SapSalesPersonService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: SapSalesPersonService, providedIn: 'root' });
1097
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: SapSalesPersonService, decorators: [{
1098
+ type: Injectable,
1099
+ args: [{
1100
+ providedIn: 'root',
1101
+ }]
1102
+ }], ctorParameters: function () { return [{ type: i1.RestService }]; } });
1103
+
1104
+ var CostGroupRole;
1105
+ (function (CostGroupRole) {
1106
+ CostGroupRole[CostGroupRole["None"] = 0] = "None";
1107
+ CostGroupRole[CostGroupRole["Production"] = 1] = "Production";
1108
+ CostGroupRole[CostGroupRole["Operating"] = 2] = "Operating";
1109
+ CostGroupRole[CostGroupRole["Profit"] = 3] = "Profit";
1110
+ })(CostGroupRole || (CostGroupRole = {}));
1111
+ const costGroupRoleOptions = mapEnumToOptions(CostGroupRole);
1112
+
1113
+ var CostItemCalculationType;
1114
+ (function (CostItemCalculationType) {
1115
+ CostItemCalculationType[CostItemCalculationType["Amount"] = 1] = "Amount";
1116
+ CostItemCalculationType[CostItemCalculationType["Rate"] = 2] = "Rate";
1117
+ CostItemCalculationType[CostItemCalculationType["Custom"] = 3] = "Custom";
1118
+ })(CostItemCalculationType || (CostItemCalculationType = {}));
1119
+ const costItemCalculationTypeOptions = mapEnumToOptions(CostItemCalculationType);
1120
+
1121
+ var CostItemSystemCode;
1122
+ (function (CostItemSystemCode) {
1123
+ CostItemSystemCode[CostItemSystemCode["Port"] = 1] = "Port";
1124
+ CostItemSystemCode[CostItemSystemCode["InspectionCustoms"] = 2] = "InspectionCustoms";
1125
+ CostItemSystemCode[CostItemSystemCode["Freight"] = 3] = "Freight";
1126
+ CostItemSystemCode[CostItemSystemCode["Loss"] = 4] = "Loss";
1127
+ CostItemSystemCode[CostItemSystemCode["RefineryOverhead"] = 5] = "RefineryOverhead";
1128
+ CostItemSystemCode[CostItemSystemCode["RefineryAuxMaterials"] = 6] = "RefineryAuxMaterials";
1129
+ CostItemSystemCode[CostItemSystemCode["FillingPackagingOverhead"] = 7] = "FillingPackagingOverhead";
1130
+ CostItemSystemCode[CostItemSystemCode["Packaging"] = 8] = "Packaging";
1131
+ CostItemSystemCode[CostItemSystemCode["SalesMarketing"] = 9] = "SalesMarketing";
1132
+ CostItemSystemCode[CostItemSystemCode["GeneralAdmin"] = 10] = "GeneralAdmin";
1133
+ CostItemSystemCode[CostItemSystemCode["Finance"] = 11] = "Finance";
1134
+ CostItemSystemCode[CostItemSystemCode["Contingency"] = 12] = "Contingency";
1135
+ CostItemSystemCode[CostItemSystemCode["VariableDepreciation"] = 13] = "VariableDepreciation";
1136
+ CostItemSystemCode[CostItemSystemCode["ProfitRate"] = 14] = "ProfitRate";
1137
+ })(CostItemSystemCode || (CostItemSystemCode = {}));
1138
+ const costItemSystemCodeOptions = mapEnumToOptions(CostItemSystemCode);
1139
+
1140
+ var CostParameterCategoryParentCode;
1141
+ (function (CostParameterCategoryParentCode) {
1142
+ CostParameterCategoryParentCode[CostParameterCategoryParentCode["Code1"] = 1] = "Code1";
1143
+ CostParameterCategoryParentCode[CostParameterCategoryParentCode["Code4"] = 4] = "Code4";
1144
+ })(CostParameterCategoryParentCode || (CostParameterCategoryParentCode = {}));
1145
+ const costParameterCategoryParentCodeOptions = mapEnumToOptions(CostParameterCategoryParentCode);
1146
+
1147
+ var CostParameterStatus;
1148
+ (function (CostParameterStatus) {
1149
+ CostParameterStatus[CostParameterStatus["Active"] = 1] = "Active";
1150
+ CostParameterStatus[CostParameterStatus["Passive"] = 2] = "Passive";
1151
+ CostParameterStatus[CostParameterStatus["InProgress"] = 3] = "InProgress";
1152
+ })(CostParameterStatus || (CostParameterStatus = {}));
1153
+ const costParameterStatusOptions = mapEnumToOptions(CostParameterStatus);
1154
+
1155
+ var Currency;
1156
+ (function (Currency) {
1157
+ Currency[Currency["TRY"] = 1] = "TRY";
1158
+ Currency[Currency["USD"] = 2] = "USD";
1159
+ Currency[Currency["EUR"] = 3] = "EUR";
1160
+ })(Currency || (Currency = {}));
1161
+ const currencyOptions = mapEnumToOptions(Currency);
1162
+
1163
+ var ExchangeRateSource;
1164
+ (function (ExchangeRateSource) {
1165
+ ExchangeRateSource[ExchangeRateSource["Fixed"] = 1] = "Fixed";
1166
+ ExchangeRateSource[ExchangeRateSource["CentralBank"] = 2] = "CentralBank";
1167
+ })(ExchangeRateSource || (ExchangeRateSource = {}));
1168
+ const exchangeRateSourceOptions = mapEnumToOptions(ExchangeRateSource);
1169
+
1170
+ var PriceParameterStatus;
1171
+ (function (PriceParameterStatus) {
1172
+ PriceParameterStatus[PriceParameterStatus["Active"] = 1] = "Active";
1173
+ PriceParameterStatus[PriceParameterStatus["Passive"] = 2] = "Passive";
1174
+ PriceParameterStatus[PriceParameterStatus["InProgress"] = 3] = "InProgress";
1175
+ })(PriceParameterStatus || (PriceParameterStatus = {}));
1176
+ const priceParameterStatusOptions = mapEnumToOptions(PriceParameterStatus);
1177
+
1178
+ // Auto-generated by proxy-sync.js — do not edit manually.
1179
+
1180
+ /**
1181
+ * Generated bundle index. Do not edit.
1182
+ */
1183
+
1184
+ export { BlTrackingService, BusinessPartnerService, CarrierService, ContainerDefinitionService, ContainerLoadingCountService, ContainerLoadingScenarioService, ContainerMixTypeService, ContainerPalletCapacityService, CostGroupRole, CostGroupService, CostItemCalculationType, CostItemService, CostItemSystemCode, CostParameterCategoryParentCode, CostParameterCategoryService, CostParameterService, CostParameterStatus, CostSettingsService, Currency, DestinationPortService, ExchangeRateService, ExchangeRateSource, FobInlandDefinitionService, FreightOfferService, IncotermService, ItemPackageGroupService, ItemPackageTypeService, ItemProductTypeService, ItemService, LineService, LoadingTargetKind, PackagingMaterialService, PackagingPriceService, PackagingTypeService, PalletDefinitionService, PalletStatus, PosService, PriceListService, PriceParameterService, PriceParameterStatus, PriceParameterTypeService, SapSalesPersonService, costGroupRoleOptions, costItemCalculationTypeOptions, costItemSystemCodeOptions, costParameterCategoryParentCodeOptions, costParameterStatusOptions, currencyOptions, exchangeRateSourceOptions, loadingTargetKindOptions, palletStatusOptions, priceParameterStatusOptions };
1185
+ //# sourceMappingURL=hitsoft-kadooglu-keops-proxy.mjs.map