@hitsoft/e-donusum 1.0.7 → 1.0.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/config/providers/hit-providers/inbound-despatch-route.provider.d.ts +9 -0
- package/esm2020/config/e-donusum-config.module.mjs +5 -3
- package/esm2020/config/providers/hit-providers/inbound-despatch-route.provider.mjs +20 -0
- package/esm2020/lib/components/hit-branches/hit-branch.component.mjs +28 -0
- package/esm2020/lib/components/hit-branches/hit-branch.module.mjs +55 -0
- package/esm2020/lib/components/hit-business-partner-groups/hit-business-partner-group.component.mjs +28 -0
- package/esm2020/lib/components/hit-business-partner-groups/hit-business-partner-group.module.mjs +52 -0
- package/esm2020/lib/components/hit-business-partners/hit-business-partner.component.mjs +31 -0
- package/esm2020/lib/components/hit-business-partners/hit-business-partner.module.mjs +52 -0
- package/esm2020/lib/components/hit-despatches/hit-despatch.component.mjs +133 -0
- package/esm2020/lib/components/hit-despatches/hit-despatch.module.mjs +71 -0
- package/esm2020/lib/components/hit-despatches/sanitize-html.pipe.mjs +19 -0
- package/esm2020/lib/components/hit-gib-partner-pk-alls/hit-gib-partner-pk-all.component.mjs +28 -0
- package/esm2020/lib/components/hit-gib-partner-pk-alls/hit-gib-partner-pk-all.module.mjs +52 -0
- package/esm2020/lib/components/hit-gib-partner-pks/hit-gib-partner-pk.component.mjs +32 -0
- package/esm2020/lib/components/hit-gib-partner-pks/hit-gib-partner-pk.module.mjs +55 -0
- package/esm2020/lib/components/hit-inbound-despatches/hit-inbound-despatch-routing.module.mjs +38 -0
- package/esm2020/lib/components/hit-inbound-despatches/hit-inbound-despatch.component.mjs +135 -0
- package/esm2020/lib/components/hit-inbound-despatches/hit-inbound-despatch.module.mjs +77 -0
- package/esm2020/lib/components/hit-inbound-invoices/hit-inbound-invoice.component.mjs +3 -3
- package/esm2020/lib/components/hit-invoices/hit-invoice.component.mjs +38 -13
- package/esm2020/lib/components/hit-params-generals/hit-params-generals-part1/hit-params-general-part1.component.mjs +2 -1
- package/esm2020/lib/components/hit-params-integrators/hit-params-integrator.component.mjs +2 -1
- package/esm2020/lib/components/hit-setup-wizard/hit-setup-wizard.component.mjs +3 -3
- package/esm2020/lib/despatches/despatch/components/despatch.component.mjs +14 -4
- package/esm2020/lib/despatches/despatch/despatch-routing.module.mjs +2 -2
- package/esm2020/lib/despatches/despatch/despatch.module.mjs +1 -1
- package/esm2020/lib/e-donusum-routing.module.mjs +16 -2
- package/esm2020/lib/e-donusum.module.mjs +31 -1
- package/esm2020/lib/hit-proxy/hit-branches/hit-branch.service.mjs +10 -4
- package/esm2020/lib/hit-proxy/hit-business-partner-groups/hit-business-partner-group.service.mjs +24 -0
- package/esm2020/lib/hit-proxy/hit-business-partners/hit-business-partner.service.mjs +24 -0
- package/esm2020/lib/hit-proxy/hit-despatch-lines/hit-despatch-line.service.mjs +25 -0
- package/esm2020/lib/hit-proxy/hit-despatches/hit-despatch.service.mjs +70 -0
- package/esm2020/lib/hit-proxy/hit-file-document-type/hit-file-document-type.service.mjs +24 -0
- package/esm2020/lib/hit-proxy/hit-gib-partner-pk-alls/hit-gib-partner-pk-alls.service.mjs +24 -0
- package/esm2020/lib/hit-proxy/hit-gib-partner-pks/hit-gib-partner-pk.service.mjs +24 -0
- package/esm2020/lib/hit-proxy/hit-inbound-despatches/hit-inbound-despatch.service.mjs +39 -0
- package/esm2020/lib/hit-proxy/hit-inbound-despatches/models.mjs +2 -0
- package/esm2020/lib/hit-proxy/hit-invoices/hit-invoice.service.mjs +27 -5
- package/esm2020/lib/invoices/invoice/components/invoice.component.mjs +5 -4
- package/esm2020/lib/invoices/invoice/invoice-routing.module.mjs +1 -1
- package/esm2020/lib/proxy/despatches/despatch.service.mjs +2 -2
- package/esm2020/lib/proxy/despatches/models.mjs +1 -1
- package/esm2020/lib/proxy/invoices/invoice.service.mjs +2 -2
- package/esm2020/lib/proxy/invoices/models.mjs +1 -1
- package/fesm2015/hitsoft-e-donusum-config.mjs +108 -89
- package/fesm2015/hitsoft-e-donusum-config.mjs.map +1 -1
- package/fesm2015/hitsoft-e-donusum.mjs +1237 -200
- package/fesm2015/hitsoft-e-donusum.mjs.map +1 -1
- package/fesm2020/hitsoft-e-donusum-config.mjs +108 -89
- package/fesm2020/hitsoft-e-donusum-config.mjs.map +1 -1
- package/fesm2020/hitsoft-e-donusum.mjs +1237 -200
- package/fesm2020/hitsoft-e-donusum.mjs.map +1 -1
- package/lib/components/hit-branches/hit-branch.component.d.ts +13 -0
- package/lib/components/hit-branches/hit-branch.module.d.ts +15 -0
- package/lib/components/hit-business-partner-groups/hit-business-partner-group.component.d.ts +13 -0
- package/lib/components/hit-business-partner-groups/hit-business-partner-group.module.d.ts +15 -0
- package/lib/components/hit-business-partners/hit-business-partner.component.d.ts +16 -0
- package/lib/components/hit-business-partners/hit-business-partner.module.d.ts +15 -0
- package/lib/components/hit-despatches/hit-despatch.component.d.ts +35 -0
- package/lib/components/hit-despatches/hit-despatch.module.d.ts +16 -0
- package/lib/components/hit-despatches/sanitize-html.pipe.d.ts +10 -0
- package/lib/components/hit-gib-partner-pk-alls/hit-gib-partner-pk-all.component.d.ts +13 -0
- package/lib/components/hit-gib-partner-pk-alls/hit-gib-partner-pk-all.module.d.ts +15 -0
- package/lib/components/hit-gib-partner-pks/hit-gib-partner-pk.component.d.ts +17 -0
- package/lib/components/hit-gib-partner-pks/hit-gib-partner-pk.module.d.ts +15 -0
- package/lib/components/hit-inbound-despatches/hit-inbound-despatch-routing.module.d.ts +7 -0
- package/lib/components/hit-inbound-despatches/hit-inbound-despatch.component.d.ts +38 -0
- package/lib/components/hit-inbound-despatches/hit-inbound-despatch.module.d.ts +16 -0
- package/lib/components/hit-invoices/hit-invoice.component.d.ts +10 -1
- package/lib/hit-proxy/hit-branches/hit-branch.service.d.ts +4 -1
- package/lib/hit-proxy/hit-business-partner-groups/hit-business-partner-group.service.d.ts +12 -0
- package/lib/hit-proxy/hit-business-partners/hit-business-partner.service.d.ts +12 -0
- package/lib/hit-proxy/hit-despatch-lines/hit-despatch-line.service.d.ts +12 -0
- package/lib/hit-proxy/hit-despatches/hit-despatch.service.d.ts +22 -0
- package/lib/hit-proxy/hit-file-document-type/hit-file-document-type.service.d.ts +12 -0
- package/lib/hit-proxy/hit-gib-partner-pk-alls/hit-gib-partner-pk-alls.service.d.ts +12 -0
- package/lib/hit-proxy/hit-gib-partner-pks/hit-gib-partner-pk.service.d.ts +12 -0
- package/lib/hit-proxy/hit-inbound-despatches/hit-inbound-despatch.service.d.ts +16 -0
- package/lib/hit-proxy/hit-inbound-despatches/models.d.ts +11 -0
- package/lib/hit-proxy/hit-invoices/hit-invoice.service.d.ts +4 -1
- package/lib/proxy/despatches/models.d.ts +45 -0
- package/lib/proxy/invoices/models.d.ts +4 -0
- package/package.json +1 -5
There are too many changes on this page to be displayed.
The amount of changes on this page would crash your brower.
You can still verify the content by downloading the package file manually.