@arcasdk/core 0.3.1 → 0.3.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 (385) hide show
  1. package/lib/application/config/env.d.ts +6 -0
  2. package/lib/application/config/env.js +14 -0
  3. package/lib/application/config/env.js.map +1 -0
  4. package/lib/application/config/index.d.ts +6 -0
  5. package/lib/application/config/index.js +15 -0
  6. package/lib/application/config/index.js.map +1 -0
  7. package/lib/application/dto/electronic-billing.dto.d.ts +192 -0
  8. package/lib/application/dto/electronic-billing.dto.js +3 -0
  9. package/lib/application/dto/electronic-billing.dto.js.map +1 -0
  10. package/lib/application/dto/index.d.ts +6 -0
  11. package/lib/application/dto/index.js +23 -0
  12. package/lib/application/dto/index.js.map +1 -0
  13. package/lib/application/dto/register.dto.d.ts +116 -0
  14. package/lib/application/dto/register.dto.js +8 -0
  15. package/lib/application/dto/register.dto.js.map +1 -0
  16. package/lib/application/index.d.ts +10 -0
  17. package/lib/application/index.js +27 -0
  18. package/lib/application/index.js.map +1 -0
  19. package/lib/application/ports/authentication/authentication-repository.port.d.ts +29 -0
  20. package/lib/application/ports/authentication/authentication-repository.port.js +3 -0
  21. package/lib/application/ports/authentication/authentication-repository.port.js.map +1 -0
  22. package/lib/application/ports/authentication/index.d.ts +5 -0
  23. package/lib/application/ports/authentication/index.js +22 -0
  24. package/lib/application/ports/authentication/index.js.map +1 -0
  25. package/lib/application/ports/electronic-billing/electronic-billing-repository.port.d.ts +139 -0
  26. package/lib/application/ports/electronic-billing/electronic-billing-repository.port.js +3 -0
  27. package/lib/application/ports/electronic-billing/electronic-billing-repository.port.js.map +1 -0
  28. package/lib/application/ports/electronic-billing/index.d.ts +5 -0
  29. package/lib/application/ports/electronic-billing/index.js +22 -0
  30. package/lib/application/ports/electronic-billing/index.js.map +1 -0
  31. package/lib/application/ports/generic/generic-repository.port.d.ts +16 -0
  32. package/lib/application/ports/generic/generic-repository.port.js +3 -0
  33. package/lib/application/ports/generic/generic-repository.port.js.map +1 -0
  34. package/lib/application/ports/index.d.ts +7 -0
  35. package/lib/application/ports/index.js +24 -0
  36. package/lib/application/ports/index.js.map +1 -0
  37. package/lib/application/ports/register/index.d.ts +5 -0
  38. package/lib/application/ports/register/index.js +22 -0
  39. package/lib/application/ports/register/index.js.map +1 -0
  40. package/lib/application/ports/register/register-repository.ports.d.ts +23 -0
  41. package/lib/application/ports/register/register-repository.ports.js +3 -0
  42. package/lib/application/ports/register/register-repository.ports.js.map +1 -0
  43. package/lib/application/services/electronic-billing.service.d.ts +202 -0
  44. package/lib/application/services/electronic-billing.service.js +340 -0
  45. package/lib/application/services/electronic-billing.service.js.map +1 -0
  46. package/lib/application/services/generic.service.d.ts +19 -0
  47. package/lib/application/services/generic.service.js +31 -0
  48. package/lib/application/services/generic.service.js.map +1 -0
  49. package/lib/application/services/index.d.ts +10 -0
  50. package/lib/application/services/index.js +27 -0
  51. package/lib/application/services/index.js.map +1 -0
  52. package/lib/application/services/register-inscription-proof.service.d.ts +26 -0
  53. package/lib/application/services/register-inscription-proof.service.js +49 -0
  54. package/lib/application/services/register-inscription-proof.service.js.map +1 -0
  55. package/lib/application/services/register-scope-five.service.d.ts +26 -0
  56. package/lib/application/services/register-scope-five.service.js +49 -0
  57. package/lib/application/services/register-scope-five.service.js.map +1 -0
  58. package/lib/application/services/register-scope-four.service.d.ts +28 -0
  59. package/lib/application/services/register-scope-four.service.js +51 -0
  60. package/lib/application/services/register-scope-four.service.js.map +1 -0
  61. package/lib/application/services/register-scope-ten.service.d.ts +21 -0
  62. package/lib/application/services/register-scope-ten.service.js +39 -0
  63. package/lib/application/services/register-scope-ten.service.js.map +1 -0
  64. package/lib/application/services/register-scope-thirteen.service.d.ts +26 -0
  65. package/lib/application/services/register-scope-thirteen.service.js +49 -0
  66. package/lib/application/services/register-scope-thirteen.service.js.map +1 -0
  67. package/lib/application/types/auth.types.d.ts +19 -0
  68. package/lib/application/types/auth.types.js +7 -0
  69. package/lib/application/types/auth.types.js.map +1 -0
  70. package/lib/application/types/context.types.d.ts +46 -0
  71. package/lib/application/types/context.types.js +3 -0
  72. package/lib/application/types/context.types.js.map +1 -0
  73. package/lib/application/types/index.d.ts +8 -0
  74. package/lib/application/types/index.js +25 -0
  75. package/lib/application/types/index.js.map +1 -0
  76. package/lib/application/types/result.types.d.ts +10 -0
  77. package/lib/application/types/result.types.js +3 -0
  78. package/lib/application/types/result.types.js.map +1 -0
  79. package/lib/application/types/use-case-inputs.types.d.ts +23 -0
  80. package/lib/application/types/use-case-inputs.types.js +7 -0
  81. package/lib/application/types/use-case-inputs.types.js.map +1 -0
  82. package/lib/application/use-cases/authentication/get-auth-params.use-case.d.ts +16 -0
  83. package/lib/application/use-cases/authentication/get-auth-params.use-case.js +29 -0
  84. package/lib/application/use-cases/authentication/get-auth-params.use-case.js.map +1 -0
  85. package/lib/application/use-cases/authentication/index.d.ts +7 -0
  86. package/lib/application/use-cases/authentication/index.js +24 -0
  87. package/lib/application/use-cases/authentication/index.js.map +1 -0
  88. package/lib/application/use-cases/authentication/login.use-case.d.ts +17 -0
  89. package/lib/application/use-cases/authentication/login.use-case.js +29 -0
  90. package/lib/application/use-cases/authentication/login.use-case.js.map +1 -0
  91. package/lib/application/use-cases/authentication/request-login.use-case.d.ts +16 -0
  92. package/lib/application/use-cases/authentication/request-login.use-case.js +29 -0
  93. package/lib/application/use-cases/authentication/request-login.use-case.js.map +1 -0
  94. package/lib/application/use-cases/electronic-billing/consult-caea-no-movement.use-case.d.ts +17 -0
  95. package/lib/application/use-cases/electronic-billing/consult-caea-no-movement.use-case.js +30 -0
  96. package/lib/application/use-cases/electronic-billing/consult-caea-no-movement.use-case.js.map +1 -0
  97. package/lib/application/use-cases/electronic-billing/consult-caea.use-case.d.ts +17 -0
  98. package/lib/application/use-cases/electronic-billing/consult-caea.use-case.js +30 -0
  99. package/lib/application/use-cases/electronic-billing/consult-caea.use-case.js.map +1 -0
  100. package/lib/application/use-cases/electronic-billing/create-next-voucher.use-case.d.ts +17 -0
  101. package/lib/application/use-cases/electronic-billing/create-next-voucher.use-case.js +39 -0
  102. package/lib/application/use-cases/electronic-billing/create-next-voucher.use-case.js.map +1 -0
  103. package/lib/application/use-cases/electronic-billing/create-voucher.use-case.d.ts +17 -0
  104. package/lib/application/use-cases/electronic-billing/create-voucher.use-case.js +33 -0
  105. package/lib/application/use-cases/electronic-billing/create-voucher.use-case.js.map +1 -0
  106. package/lib/application/use-cases/electronic-billing/get-activities.use-case.d.ts +15 -0
  107. package/lib/application/use-cases/electronic-billing/get-activities.use-case.js +28 -0
  108. package/lib/application/use-cases/electronic-billing/get-activities.use-case.js.map +1 -0
  109. package/lib/application/use-cases/electronic-billing/get-aliquot-types.use-case.d.ts +15 -0
  110. package/lib/application/use-cases/electronic-billing/get-aliquot-types.use-case.js +28 -0
  111. package/lib/application/use-cases/electronic-billing/get-aliquot-types.use-case.js.map +1 -0
  112. package/lib/application/use-cases/electronic-billing/get-caea.use-case.d.ts +17 -0
  113. package/lib/application/use-cases/electronic-billing/get-caea.use-case.js +30 -0
  114. package/lib/application/use-cases/electronic-billing/get-caea.use-case.js.map +1 -0
  115. package/lib/application/use-cases/electronic-billing/get-concept-types.use-case.d.ts +15 -0
  116. package/lib/application/use-cases/electronic-billing/get-concept-types.use-case.js +28 -0
  117. package/lib/application/use-cases/electronic-billing/get-concept-types.use-case.js.map +1 -0
  118. package/lib/application/use-cases/electronic-billing/get-countries.use-case.d.ts +15 -0
  119. package/lib/application/use-cases/electronic-billing/get-countries.use-case.js +28 -0
  120. package/lib/application/use-cases/electronic-billing/get-countries.use-case.js.map +1 -0
  121. package/lib/application/use-cases/electronic-billing/get-currency-types.use-case.d.ts +15 -0
  122. package/lib/application/use-cases/electronic-billing/get-currency-types.use-case.js +28 -0
  123. package/lib/application/use-cases/electronic-billing/get-currency-types.use-case.js.map +1 -0
  124. package/lib/application/use-cases/electronic-billing/get-document-types.use-case.d.ts +15 -0
  125. package/lib/application/use-cases/electronic-billing/get-document-types.use-case.js +28 -0
  126. package/lib/application/use-cases/electronic-billing/get-document-types.use-case.js.map +1 -0
  127. package/lib/application/use-cases/electronic-billing/get-iva-receptor-types.use-case.d.ts +16 -0
  128. package/lib/application/use-cases/electronic-billing/get-iva-receptor-types.use-case.js +29 -0
  129. package/lib/application/use-cases/electronic-billing/get-iva-receptor-types.use-case.js.map +1 -0
  130. package/lib/application/use-cases/electronic-billing/get-last-voucher.use-case.d.ts +17 -0
  131. package/lib/application/use-cases/electronic-billing/get-last-voucher.use-case.js +29 -0
  132. package/lib/application/use-cases/electronic-billing/get-last-voucher.use-case.js.map +1 -0
  133. package/lib/application/use-cases/electronic-billing/get-max-records.use-case.d.ts +15 -0
  134. package/lib/application/use-cases/electronic-billing/get-max-records.use-case.js +28 -0
  135. package/lib/application/use-cases/electronic-billing/get-max-records.use-case.js.map +1 -0
  136. package/lib/application/use-cases/electronic-billing/get-optional-types.use-case.d.ts +15 -0
  137. package/lib/application/use-cases/electronic-billing/get-optional-types.use-case.js +28 -0
  138. package/lib/application/use-cases/electronic-billing/get-optional-types.use-case.js.map +1 -0
  139. package/lib/application/use-cases/electronic-billing/get-parameter-types.use-case.d.ts +40 -0
  140. package/lib/application/use-cases/electronic-billing/get-parameter-types.use-case.js +73 -0
  141. package/lib/application/use-cases/electronic-billing/get-parameter-types.use-case.js.map +1 -0
  142. package/lib/application/use-cases/electronic-billing/get-quotation.use-case.d.ts +16 -0
  143. package/lib/application/use-cases/electronic-billing/get-quotation.use-case.js +29 -0
  144. package/lib/application/use-cases/electronic-billing/get-quotation.use-case.js.map +1 -0
  145. package/lib/application/use-cases/electronic-billing/get-sales-points.use-case.d.ts +15 -0
  146. package/lib/application/use-cases/electronic-billing/get-sales-points.use-case.js +28 -0
  147. package/lib/application/use-cases/electronic-billing/get-sales-points.use-case.js.map +1 -0
  148. package/lib/application/use-cases/electronic-billing/get-server-status.use-case.d.ts +15 -0
  149. package/lib/application/use-cases/electronic-billing/get-server-status.use-case.js +28 -0
  150. package/lib/application/use-cases/electronic-billing/get-server-status.use-case.js.map +1 -0
  151. package/lib/application/use-cases/electronic-billing/get-tax-types.use-case.d.ts +15 -0
  152. package/lib/application/use-cases/electronic-billing/get-tax-types.use-case.js +28 -0
  153. package/lib/application/use-cases/electronic-billing/get-tax-types.use-case.js.map +1 -0
  154. package/lib/application/use-cases/electronic-billing/get-voucher-info.use-case.d.ts +17 -0
  155. package/lib/application/use-cases/electronic-billing/get-voucher-info.use-case.js +29 -0
  156. package/lib/application/use-cases/electronic-billing/get-voucher-info.use-case.js.map +1 -0
  157. package/lib/application/use-cases/electronic-billing/get-voucher-types.use-case.d.ts +15 -0
  158. package/lib/application/use-cases/electronic-billing/get-voucher-types.use-case.js +28 -0
  159. package/lib/application/use-cases/electronic-billing/get-voucher-types.use-case.js.map +1 -0
  160. package/lib/application/use-cases/electronic-billing/index.d.ts +18 -0
  161. package/lib/application/use-cases/electronic-billing/index.js +36 -0
  162. package/lib/application/use-cases/electronic-billing/index.js.map +1 -0
  163. package/lib/application/use-cases/electronic-billing/inform-caea-no-movement.use-case.d.ts +17 -0
  164. package/lib/application/use-cases/electronic-billing/inform-caea-no-movement.use-case.js +30 -0
  165. package/lib/application/use-cases/electronic-billing/inform-caea-no-movement.use-case.js.map +1 -0
  166. package/lib/application/use-cases/electronic-billing/inform-caea-usage.use-case.d.ts +14 -0
  167. package/lib/application/use-cases/electronic-billing/inform-caea-usage.use-case.js +32 -0
  168. package/lib/application/use-cases/electronic-billing/inform-caea-usage.use-case.js.map +1 -0
  169. package/lib/application/use-cases/index.d.ts +7 -0
  170. package/lib/application/use-cases/index.js +24 -0
  171. package/lib/application/use-cases/index.js.map +1 -0
  172. package/lib/application/use-cases/register/get-register-server-status.use-case.d.ts +15 -0
  173. package/lib/application/use-cases/register/get-register-server-status.use-case.js +28 -0
  174. package/lib/application/use-cases/register/get-register-server-status.use-case.js.map +1 -0
  175. package/lib/application/use-cases/register/get-tax-id-by-document.use-case.d.ts +16 -0
  176. package/lib/application/use-cases/register/get-tax-id-by-document.use-case.js +29 -0
  177. package/lib/application/use-cases/register/get-tax-id-by-document.use-case.js.map +1 -0
  178. package/lib/application/use-cases/register/get-taxpayer-details.use-case.d.ts +16 -0
  179. package/lib/application/use-cases/register/get-taxpayer-details.use-case.js +29 -0
  180. package/lib/application/use-cases/register/get-taxpayer-details.use-case.js.map +1 -0
  181. package/lib/application/use-cases/register/get-taxpayers-details.use-case.d.ts +16 -0
  182. package/lib/application/use-cases/register/get-taxpayers-details.use-case.js +29 -0
  183. package/lib/application/use-cases/register/get-taxpayers-details.use-case.js.map +1 -0
  184. package/lib/application/use-cases/register/index.d.ts +4 -0
  185. package/lib/application/use-cases/register/index.js +21 -0
  186. package/lib/application/use-cases/register/index.js.map +1 -0
  187. package/lib/arca.d.ts +26 -0
  188. package/lib/arca.js +124 -0
  189. package/lib/arca.js.map +1 -0
  190. package/lib/domain/entities/access-ticket.entity.d.ts +73 -0
  191. package/lib/domain/entities/access-ticket.entity.js +144 -0
  192. package/lib/domain/entities/access-ticket.entity.js.map +1 -0
  193. package/lib/domain/entities/index.d.ts +6 -0
  194. package/lib/domain/entities/index.js +23 -0
  195. package/lib/domain/entities/index.js.map +1 -0
  196. package/lib/domain/entities/voucher.entity.d.ts +113 -0
  197. package/lib/domain/entities/voucher.entity.js +216 -0
  198. package/lib/domain/entities/voucher.entity.js.map +1 -0
  199. package/lib/domain/index.d.ts +6 -0
  200. package/lib/domain/index.js +23 -0
  201. package/lib/domain/index.js.map +1 -0
  202. package/lib/domain/types/electronic-billing.types.d.ts +193 -0
  203. package/lib/domain/types/electronic-billing.types.js +8 -0
  204. package/lib/domain/types/electronic-billing.types.js.map +1 -0
  205. package/lib/domain/types/index.d.ts +6 -0
  206. package/lib/domain/types/index.js +23 -0
  207. package/lib/domain/types/index.js.map +1 -0
  208. package/lib/domain/types/voucher.types.d.ts +65 -0
  209. package/lib/domain/types/voucher.types.js +3 -0
  210. package/lib/domain/types/voucher.types.js.map +1 -0
  211. package/lib/domain/value-objects/cae.vo.d.ts +47 -0
  212. package/lib/domain/value-objects/cae.vo.js +80 -0
  213. package/lib/domain/value-objects/cae.vo.js.map +1 -0
  214. package/lib/domain/value-objects/cuit.vo.d.ts +49 -0
  215. package/lib/domain/value-objects/cuit.vo.js +98 -0
  216. package/lib/domain/value-objects/cuit.vo.js.map +1 -0
  217. package/lib/domain/value-objects/index.d.ts +7 -0
  218. package/lib/domain/value-objects/index.js +24 -0
  219. package/lib/domain/value-objects/index.js.map +1 -0
  220. package/lib/domain/value-objects/voucher-number.vo.d.ts +66 -0
  221. package/lib/domain/value-objects/voucher-number.vo.js +106 -0
  222. package/lib/domain/value-objects/voucher-number.vo.js.map +1 -0
  223. package/lib/index.d.ts +8 -0
  224. package/lib/index.js +27 -0
  225. package/lib/index.js.map +1 -0
  226. package/lib/infrastructure/constants/index.d.ts +5 -0
  227. package/lib/infrastructure/constants/index.js +22 -0
  228. package/lib/infrastructure/constants/index.js.map +1 -0
  229. package/lib/infrastructure/constants/ssl.constants.d.ts +16 -0
  230. package/lib/infrastructure/constants/ssl.constants.js +20 -0
  231. package/lib/infrastructure/constants/ssl.constants.js.map +1 -0
  232. package/lib/infrastructure/index.d.ts +5 -0
  233. package/lib/infrastructure/index.js +22 -0
  234. package/lib/infrastructure/index.js.map +1 -0
  235. package/lib/infrastructure/outbound/adapters/auth/afip-auth.repository.d.ts +68 -0
  236. package/lib/infrastructure/outbound/adapters/auth/afip-auth.repository.js +128 -0
  237. package/lib/infrastructure/outbound/adapters/auth/afip-auth.repository.js.map +1 -0
  238. package/lib/infrastructure/outbound/adapters/auth/auth.repository.d.ts +59 -0
  239. package/lib/infrastructure/outbound/adapters/auth/auth.repository.js +134 -0
  240. package/lib/infrastructure/outbound/adapters/auth/auth.repository.js.map +1 -0
  241. package/lib/infrastructure/outbound/adapters/electronic-billing/electronic-billing-repository.d.ts +41 -0
  242. package/lib/infrastructure/outbound/adapters/electronic-billing/electronic-billing-repository.js +513 -0
  243. package/lib/infrastructure/outbound/adapters/electronic-billing/electronic-billing-repository.js.map +1 -0
  244. package/lib/infrastructure/outbound/adapters/electronic-billing/index.d.ts +5 -0
  245. package/lib/infrastructure/outbound/adapters/electronic-billing/index.js +22 -0
  246. package/lib/infrastructure/outbound/adapters/electronic-billing/index.js.map +1 -0
  247. package/lib/infrastructure/outbound/adapters/enums.d.ts +43 -0
  248. package/lib/infrastructure/outbound/adapters/enums.js +49 -0
  249. package/lib/infrastructure/outbound/adapters/enums.js.map +1 -0
  250. package/lib/infrastructure/outbound/adapters/generic/generic-repository.d.ts +13 -0
  251. package/lib/infrastructure/outbound/adapters/generic/generic-repository.js +53 -0
  252. package/lib/infrastructure/outbound/adapters/generic/generic-repository.js.map +1 -0
  253. package/lib/infrastructure/outbound/adapters/index.d.ts +10 -0
  254. package/lib/infrastructure/outbound/adapters/index.js +27 -0
  255. package/lib/infrastructure/outbound/adapters/index.js.map +1 -0
  256. package/lib/infrastructure/outbound/adapters/logger/winston-logger.d.ts +14 -0
  257. package/lib/infrastructure/outbound/adapters/logger/winston-logger.js +24 -0
  258. package/lib/infrastructure/outbound/adapters/logger/winston-logger.js.map +1 -0
  259. package/lib/infrastructure/outbound/adapters/register/index.d.ts +9 -0
  260. package/lib/infrastructure/outbound/adapters/register/index.js +26 -0
  261. package/lib/infrastructure/outbound/adapters/register/index.js.map +1 -0
  262. package/lib/infrastructure/outbound/adapters/register/register-inscription-proof.repository.d.ts +18 -0
  263. package/lib/infrastructure/outbound/adapters/register/register-inscription-proof.repository.js +143 -0
  264. package/lib/infrastructure/outbound/adapters/register/register-inscription-proof.repository.js.map +1 -0
  265. package/lib/infrastructure/outbound/adapters/register/register-scope-five.repository.d.ts +14 -0
  266. package/lib/infrastructure/outbound/adapters/register/register-scope-five.repository.js +136 -0
  267. package/lib/infrastructure/outbound/adapters/register/register-scope-five.repository.js.map +1 -0
  268. package/lib/infrastructure/outbound/adapters/register/register-scope-four.repository.d.ts +12 -0
  269. package/lib/infrastructure/outbound/adapters/register/register-scope-four.repository.js +103 -0
  270. package/lib/infrastructure/outbound/adapters/register/register-scope-four.repository.js.map +1 -0
  271. package/lib/infrastructure/outbound/adapters/register/register-scope-ten.repository.d.ts +12 -0
  272. package/lib/infrastructure/outbound/adapters/register/register-scope-ten.repository.js +112 -0
  273. package/lib/infrastructure/outbound/adapters/register/register-scope-ten.repository.js.map +1 -0
  274. package/lib/infrastructure/outbound/adapters/register/register-scope-thirteen.repository.d.ts +13 -0
  275. package/lib/infrastructure/outbound/adapters/register/register-scope-thirteen.repository.js +133 -0
  276. package/lib/infrastructure/outbound/adapters/register/register-scope-thirteen.repository.js.map +1 -0
  277. package/lib/infrastructure/outbound/adapters/soap/base-soap-repository.d.ts +30 -0
  278. package/lib/infrastructure/outbound/adapters/soap/base-soap-repository.js +68 -0
  279. package/lib/infrastructure/outbound/adapters/soap/base-soap-repository.js.map +1 -0
  280. package/lib/infrastructure/outbound/adapters/soap/soap-client-facade.d.ts +20 -0
  281. package/lib/infrastructure/outbound/adapters/soap/soap-client-facade.js +54 -0
  282. package/lib/infrastructure/outbound/adapters/soap/soap-client-facade.js.map +1 -0
  283. package/lib/infrastructure/outbound/adapters/soap/soap-client.d.ts +11 -0
  284. package/lib/infrastructure/outbound/adapters/soap/soap-client.js +95 -0
  285. package/lib/infrastructure/outbound/adapters/soap/soap-client.js.map +1 -0
  286. package/lib/infrastructure/outbound/adapters/soap/wsdl-strings.d.ts +10 -0
  287. package/lib/infrastructure/outbound/adapters/soap/wsdl-strings.js +6144 -0
  288. package/lib/infrastructure/outbound/adapters/soap/wsdl-strings.js.map +1 -0
  289. package/lib/infrastructure/outbound/adapters/storage/file-system-ticket-storage.d.ts +24 -0
  290. package/lib/infrastructure/outbound/adapters/storage/file-system-ticket-storage.js +98 -0
  291. package/lib/infrastructure/outbound/adapters/storage/file-system-ticket-storage.js.map +1 -0
  292. package/lib/infrastructure/outbound/index.d.ts +9 -0
  293. package/lib/infrastructure/outbound/index.js +26 -0
  294. package/lib/infrastructure/outbound/index.js.map +1 -0
  295. package/lib/infrastructure/outbound/ports/auth/auth-repository.types.d.ts +17 -0
  296. package/lib/infrastructure/outbound/ports/auth/auth-repository.types.js +3 -0
  297. package/lib/infrastructure/outbound/ports/auth/auth-repository.types.js.map +1 -0
  298. package/lib/infrastructure/outbound/ports/index.d.ts +11 -0
  299. package/lib/infrastructure/outbound/ports/index.js +28 -0
  300. package/lib/infrastructure/outbound/ports/index.js.map +1 -0
  301. package/lib/infrastructure/outbound/ports/logger/logger.port.d.ts +31 -0
  302. package/lib/infrastructure/outbound/ports/logger/logger.port.js +3 -0
  303. package/lib/infrastructure/outbound/ports/logger/logger.port.js.map +1 -0
  304. package/lib/infrastructure/outbound/ports/logger/logger.types.d.ts +7 -0
  305. package/lib/infrastructure/outbound/ports/logger/logger.types.js +3 -0
  306. package/lib/infrastructure/outbound/ports/logger/logger.types.js.map +1 -0
  307. package/lib/infrastructure/outbound/ports/soap/enums/endpoints.enum.d.ts +51 -0
  308. package/lib/infrastructure/outbound/ports/soap/enums/endpoints.enum.js +57 -0
  309. package/lib/infrastructure/outbound/ports/soap/enums/endpoints.enum.js.map +1 -0
  310. package/lib/infrastructure/outbound/ports/soap/enums/index.d.ts +7 -0
  311. package/lib/infrastructure/outbound/ports/soap/enums/index.js +24 -0
  312. package/lib/infrastructure/outbound/ports/soap/enums/index.js.map +1 -0
  313. package/lib/infrastructure/outbound/ports/soap/enums/service-names.enum.d.ts +9 -0
  314. package/lib/infrastructure/outbound/ports/soap/enums/service-names.enum.js +14 -0
  315. package/lib/infrastructure/outbound/ports/soap/enums/service-names.enum.js.map +1 -0
  316. package/lib/infrastructure/outbound/ports/soap/enums/wsdl-path.enum.d.ts +15 -0
  317. package/lib/infrastructure/outbound/ports/soap/enums/wsdl-path.enum.js +20 -0
  318. package/lib/infrastructure/outbound/ports/soap/enums/wsdl-path.enum.js.map +1 -0
  319. package/lib/infrastructure/outbound/ports/soap/index.d.ts +7 -0
  320. package/lib/infrastructure/outbound/ports/soap/index.js +24 -0
  321. package/lib/infrastructure/outbound/ports/soap/index.js.map +1 -0
  322. package/lib/infrastructure/outbound/ports/soap/interfaces/LoginCMSService/LoginCms.d.ts +42 -0
  323. package/lib/infrastructure/outbound/ports/soap/interfaces/LoginCMSService/LoginCms.js +3 -0
  324. package/lib/infrastructure/outbound/ports/soap/interfaces/LoginCMSService/LoginCms.js.map +1 -0
  325. package/lib/infrastructure/outbound/ports/soap/interfaces/PersonaServiceA10/PersonaServiceA10Port.d.ts +102 -0
  326. package/lib/infrastructure/outbound/ports/soap/interfaces/PersonaServiceA10/PersonaServiceA10Port.js +3 -0
  327. package/lib/infrastructure/outbound/ports/soap/interfaces/PersonaServiceA10/PersonaServiceA10Port.js.map +1 -0
  328. package/lib/infrastructure/outbound/ports/soap/interfaces/PersonaServiceA13/PersonaServiceA13Port.d.ts +145 -0
  329. package/lib/infrastructure/outbound/ports/soap/interfaces/PersonaServiceA13/PersonaServiceA13Port.js +3 -0
  330. package/lib/infrastructure/outbound/ports/soap/interfaces/PersonaServiceA13/PersonaServiceA13Port.js.map +1 -0
  331. package/lib/infrastructure/outbound/ports/soap/interfaces/PersonaServiceA4/PersonaServiceA4Port.d.ts +227 -0
  332. package/lib/infrastructure/outbound/ports/soap/interfaces/PersonaServiceA4/PersonaServiceA4Port.js +3 -0
  333. package/lib/infrastructure/outbound/ports/soap/interfaces/PersonaServiceA4/PersonaServiceA4Port.js.map +1 -0
  334. package/lib/infrastructure/outbound/ports/soap/interfaces/PersonaServiceA5/PersonaServiceA5Port.d.ts +300 -0
  335. package/lib/infrastructure/outbound/ports/soap/interfaces/PersonaServiceA5/PersonaServiceA5Port.js +3 -0
  336. package/lib/infrastructure/outbound/ports/soap/interfaces/PersonaServiceA5/PersonaServiceA5Port.js.map +1 -0
  337. package/lib/infrastructure/outbound/ports/soap/interfaces/PersonaServiceInscriptionProof/PersonaServiceInscriptionProofPort.d.ts +301 -0
  338. package/lib/infrastructure/outbound/ports/soap/interfaces/PersonaServiceInscriptionProof/PersonaServiceInscriptionProofPort.js +3 -0
  339. package/lib/infrastructure/outbound/ports/soap/interfaces/PersonaServiceInscriptionProof/PersonaServiceInscriptionProofPort.js.map +1 -0
  340. package/lib/infrastructure/outbound/ports/soap/interfaces/Service/ServiceSoap.d.ts +835 -0
  341. package/lib/infrastructure/outbound/ports/soap/interfaces/Service/ServiceSoap.js +3 -0
  342. package/lib/infrastructure/outbound/ports/soap/interfaces/Service/ServiceSoap.js.map +1 -0
  343. package/lib/infrastructure/outbound/ports/soap/interfaces/Service/ServiceSoap12.d.ts +876 -0
  344. package/lib/infrastructure/outbound/ports/soap/interfaces/Service/ServiceSoap12.js +3 -0
  345. package/lib/infrastructure/outbound/ports/soap/interfaces/Service/ServiceSoap12.js.map +1 -0
  346. package/lib/infrastructure/outbound/ports/soap/interfaces/index.d.ts +15 -0
  347. package/lib/infrastructure/outbound/ports/soap/interfaces/index.js +53 -0
  348. package/lib/infrastructure/outbound/ports/soap/interfaces/index.js.map +1 -0
  349. package/lib/infrastructure/outbound/ports/soap/soap-client.port.d.ts +30 -0
  350. package/lib/infrastructure/outbound/ports/soap/soap-client.port.js +3 -0
  351. package/lib/infrastructure/outbound/ports/soap/soap-client.port.js.map +1 -0
  352. package/lib/infrastructure/outbound/ports/soap/soap-repository.types.d.ts +45 -0
  353. package/lib/infrastructure/outbound/ports/soap/soap-repository.types.js +3 -0
  354. package/lib/infrastructure/outbound/ports/soap/soap-repository.types.js.map +1 -0
  355. package/lib/infrastructure/outbound/ports/storage/ticket-storage.port.d.ts +24 -0
  356. package/lib/infrastructure/outbound/ports/storage/ticket-storage.port.js +3 -0
  357. package/lib/infrastructure/outbound/ports/storage/ticket-storage.port.js.map +1 -0
  358. package/lib/infrastructure/outbound/ports/storage/ticket-storage.types.d.ts +9 -0
  359. package/lib/infrastructure/outbound/ports/storage/ticket-storage.types.js +3 -0
  360. package/lib/infrastructure/outbound/ports/storage/ticket-storage.types.js.map +1 -0
  361. package/lib/infrastructure/types/index.d.ts +5 -0
  362. package/lib/infrastructure/types/index.js +22 -0
  363. package/lib/infrastructure/types/index.js.map +1 -0
  364. package/lib/infrastructure/types/soap.types.d.ts +29 -0
  365. package/lib/infrastructure/types/soap.types.js +3 -0
  366. package/lib/infrastructure/types/soap.types.js.map +1 -0
  367. package/lib/infrastructure/utils/crypt-data.d.ts +6 -0
  368. package/lib/infrastructure/utils/crypt-data.js +46 -0
  369. package/lib/infrastructure/utils/crypt-data.js.map +1 -0
  370. package/lib/infrastructure/utils/env.d.ts +10 -0
  371. package/lib/infrastructure/utils/env.js +32 -0
  372. package/lib/infrastructure/utils/env.js.map +1 -0
  373. package/lib/infrastructure/utils/index.d.ts +8 -0
  374. package/lib/infrastructure/utils/index.js +25 -0
  375. package/lib/infrastructure/utils/index.js.map +1 -0
  376. package/lib/infrastructure/utils/logger.d.ts +4 -0
  377. package/lib/infrastructure/utils/logger.js +21 -0
  378. package/lib/infrastructure/utils/logger.js.map +1 -0
  379. package/lib/infrastructure/utils/parser.d.ts +14 -0
  380. package/lib/infrastructure/utils/parser.js +36 -0
  381. package/lib/infrastructure/utils/parser.js.map +1 -0
  382. package/lib/infrastructure/utils/soap-to-dto.mapper.d.ts +200 -0
  383. package/lib/infrastructure/utils/soap-to-dto.mapper.js +213 -0
  384. package/lib/infrastructure/utils/soap-to-dto.mapper.js.map +1 -0
  385. package/package.json +3 -2
@@ -0,0 +1,876 @@
1
+ import { Client } from "soap";
2
+ import { SoapAsyncFunc } from "@infrastructure/types";
3
+ export interface IFECAESolicitarInput {
4
+ FeCAEReq: ServiceSoap12Types.IFeCAEReq;
5
+ }
6
+ export interface IFECAESolicitarOutput {
7
+ FECAESolicitarResult: ServiceSoap12Types.IFECAESolicitarResult;
8
+ }
9
+ export interface IFECompTotXRequestInput {
10
+ Auth: ServiceSoap12Types.IAuth;
11
+ }
12
+ export interface IFECompTotXRequestOutput {
13
+ FECompTotXRequestResult: ServiceSoap12Types.IFECompTotXRequestResult;
14
+ }
15
+ export interface IFEDummyInput {
16
+ }
17
+ export interface IFEDummyOutput {
18
+ FEDummyResult: ServiceSoap12Types.IFEDummyResult;
19
+ }
20
+ export interface IFECompUltimoAutorizadoInput {
21
+ /** s:int(undefined) */
22
+ PtoVta: number;
23
+ /** s:int(undefined) */
24
+ CbteTipo: number;
25
+ }
26
+ export interface IFECompUltimoAutorizadoOutput {
27
+ FECompUltimoAutorizadoResult: ServiceSoap12Types.IFECompUltimoAutorizadoResult;
28
+ }
29
+ export interface IFECompConsultarInput {
30
+ FeCompConsReq: ServiceSoap12Types.IFeCompConsReq;
31
+ }
32
+ export interface IFECompConsultarOutput {
33
+ FECompConsultarResult: ServiceSoap12Types.IFECompConsultarResult;
34
+ }
35
+ export interface IFECAEARegInformativoInput {
36
+ Auth: ServiceSoap12Types.IAuth;
37
+ FeCAEARegInfReq: ServiceSoap12Types.IFeCAEARegInfReq;
38
+ }
39
+ export interface IFECAEARegInformativoOutput {
40
+ FECAEARegInformativoResult: ServiceSoap12Types.IFECAEARegInformativoResult;
41
+ }
42
+ export interface IFECAEASolicitarInput {
43
+ Auth: ServiceSoap12Types.IAuth;
44
+ /** s:int(undefined) */
45
+ Periodo: number;
46
+ /** s:short(undefined) */
47
+ Orden: number;
48
+ }
49
+ export interface IFECAEASolicitarOutput {
50
+ FECAEASolicitarResult: ServiceSoap12Types.IFECAEASolicitarResult;
51
+ }
52
+ export interface IFECAEASinMovimientoConsultarInput {
53
+ Auth: ServiceSoap12Types.IAuth;
54
+ /** s:string(undefined) */
55
+ CAEA: string;
56
+ /** s:int(undefined) */
57
+ PtoVta: number;
58
+ }
59
+ export interface IFECAEASinMovimientoConsultarOutput {
60
+ FECAEASinMovimientoConsultarResult: ServiceSoap12Types.IFECAEASinMovimientoConsultarResult;
61
+ }
62
+ export interface IFECAEASinMovimientoInformarInput {
63
+ Auth: ServiceSoap12Types.IAuth;
64
+ /** s:int(undefined) */
65
+ PtoVta: number;
66
+ /** s:string(undefined) */
67
+ CAEA: string;
68
+ }
69
+ export interface IFECAEASinMovimientoInformarOutput {
70
+ FECAEASinMovimientoInformarResult: ServiceSoap12Types.IFECAEASinMovimientoInformarResult;
71
+ }
72
+ export interface IFECAEAConsultarInput {
73
+ Auth: ServiceSoap12Types.IAuth;
74
+ /** s:int(undefined) */
75
+ Periodo: number;
76
+ /** s:short(undefined) */
77
+ Orden: number;
78
+ }
79
+ export interface IFECAEAConsultarOutput {
80
+ FECAEAConsultarResult: ServiceSoap12Types.IFECAEAConsultarResult;
81
+ }
82
+ export interface IFEParamGetCotizacionInput {
83
+ Auth: ServiceSoap12Types.IAuth;
84
+ /** s:string(undefined) */
85
+ MonId: string;
86
+ }
87
+ export interface IFEParamGetCotizacionOutput {
88
+ FEParamGetCotizacionResult: ServiceSoap12Types.IFEParamGetCotizacionResult;
89
+ }
90
+ export interface IFEParamGetTiposTributosInput {
91
+ }
92
+ export interface IFEParamGetTiposTributosOutput {
93
+ FEParamGetTiposTributosResult: ServiceSoap12Types.IFEParamGetTiposTributosResult;
94
+ }
95
+ export interface IFEParamGetTiposMonedasInput {
96
+ }
97
+ export interface IFEParamGetTiposMonedasOutput {
98
+ FEParamGetTiposMonedasResult: ServiceSoap12Types.IFEParamGetTiposMonedasResult;
99
+ }
100
+ export interface IFEParamGetTiposIvaInput {
101
+ }
102
+ export interface IFEParamGetTiposIvaOutput {
103
+ FEParamGetTiposIvaResult: ServiceSoap12Types.IFEParamGetTiposIvaResult;
104
+ }
105
+ export interface IFEParamGetTiposOpcionalInput {
106
+ }
107
+ export interface IFEParamGetTiposOpcionalOutput {
108
+ FEParamGetTiposOpcionalResult: ServiceSoap12Types.IFEParamGetTiposOpcionalResult;
109
+ }
110
+ export interface IFEParamGetTiposConceptoInput {
111
+ }
112
+ export interface IFEParamGetTiposConceptoOutput {
113
+ FEParamGetTiposConceptoResult: ServiceSoap12Types.IFEParamGetTiposConceptoResult;
114
+ }
115
+ export interface IFEParamGetPtosVentaInput {
116
+ }
117
+ export interface IFEParamGetPtosVentaOutput {
118
+ FEParamGetPtosVentaResult: ServiceSoap12Types.IFEParamGetPtosVentaResult;
119
+ }
120
+ export interface IFEParamGetTiposCbteInput {
121
+ }
122
+ export interface IFEParamGetTiposCbteOutput {
123
+ FEParamGetTiposCbteResult: ServiceSoap12Types.IFEParamGetTiposCbteResult;
124
+ }
125
+ export interface IFEParamGetTiposDocInput {
126
+ }
127
+ export interface IFEParamGetTiposDocOutput {
128
+ FEParamGetTiposDocResult: ServiceSoap12Types.IFEParamGetTiposDocResult;
129
+ }
130
+ export interface IFEParamGetTiposPaisesInput {
131
+ Auth: ServiceSoap12Types.IAuth;
132
+ }
133
+ export interface IFEParamGetTiposPaisesOutput {
134
+ FEParamGetTiposPaisesResult: ServiceSoap12Types.IFEParamGetTiposPaisesResult;
135
+ }
136
+ export interface IServiceSoap12Soap extends Client {
137
+ FECAESolicitar: (input: IFECAESolicitarInput, cb: (err: any | null, result: IFECAESolicitarOutput, raw: string, soapHeader: {
138
+ [k: string]: any;
139
+ }) => any, options?: any, extraHeaders?: any) => void;
140
+ FECAESolicitarAsync: SoapAsyncFunc<IFECAESolicitarInput, IFECAESolicitarOutput>;
141
+ FECompTotXRequest: (input: IFECompTotXRequestInput, cb: (err: any | null, result: IFECompTotXRequestOutput, raw: string, soapHeader: {
142
+ [k: string]: any;
143
+ }) => any, options?: any, extraHeaders?: any) => void;
144
+ FECompTotXRequestAsync: SoapAsyncFunc<IFECompTotXRequestInput, IFECompTotXRequestOutput>;
145
+ FEDummy: (input: IFEDummyInput, cb: (err: any | null, result: IFEDummyOutput, raw: string, soapHeader: {
146
+ [k: string]: any;
147
+ }) => any, options?: any, extraHeaders?: any) => void;
148
+ FEDummyAsync: (input: IFEDummyInput, options?: any, extraHeaders?: any) => Promise<[IFEDummyOutput, string, {
149
+ [k: string]: any;
150
+ }, string]>;
151
+ FECompUltimoAutorizado: (input: IFECompUltimoAutorizadoInput, cb: (err: any | null, result: IFECompUltimoAutorizadoOutput, raw: string, soapHeader: {
152
+ [k: string]: any;
153
+ }) => any, options?: any, extraHeaders?: any) => void;
154
+ FECompUltimoAutorizadoAsync: (input: IFECompUltimoAutorizadoInput, options?: any, extraHeaders?: any) => Promise<[
155
+ IFECompUltimoAutorizadoOutput,
156
+ string,
157
+ {
158
+ [k: string]: any;
159
+ },
160
+ string
161
+ ]>;
162
+ FECompConsultar: (input: IFECompConsultarInput, cb: (err: any | null, result: IFECompConsultarOutput, raw: string, soapHeader: {
163
+ [k: string]: any;
164
+ }) => any, options?: any, extraHeaders?: any) => void;
165
+ FECompConsultarAsync: (input: IFECompConsultarInput, options?: any, extraHeaders?: any) => Promise<[IFECompConsultarOutput, string, {
166
+ [k: string]: any;
167
+ }, string]>;
168
+ FECAEARegInformativo: (input: IFECAEARegInformativoInput, cb: (err: any | null, result: IFECAEARegInformativoOutput, raw: string, soapHeader: {
169
+ [k: string]: any;
170
+ }) => any, options?: any, extraHeaders?: any) => void;
171
+ FECAEARegInformativoAsync: (input: IFECAEARegInformativoInput, options?: any, extraHeaders?: any) => Promise<[
172
+ IFECAEARegInformativoOutput,
173
+ string,
174
+ {
175
+ [k: string]: any;
176
+ },
177
+ string
178
+ ]>;
179
+ FECAEASolicitar: (input: IFECAEASolicitarInput, cb: (err: any | null, result: IFECAEASolicitarOutput, raw: string, soapHeader: {
180
+ [k: string]: any;
181
+ }) => any, options?: any, extraHeaders?: any) => void;
182
+ FECAEASolicitarAsync: (input: IFECAEASolicitarInput, options?: any, extraHeaders?: any) => Promise<[IFECAEASolicitarOutput, string, {
183
+ [k: string]: any;
184
+ }, string]>;
185
+ FECAEASinMovimientoConsultar: (input: IFECAEASinMovimientoConsultarInput, cb: (err: any | null, result: IFECAEASinMovimientoConsultarOutput, raw: string, soapHeader: {
186
+ [k: string]: any;
187
+ }) => any, options?: any, extraHeaders?: any) => void;
188
+ FECAEASinMovimientoConsultarAsync: (input: IFECAEASinMovimientoConsultarInput, options?: any, extraHeaders?: any) => Promise<[
189
+ IFECAEASinMovimientoConsultarOutput,
190
+ string,
191
+ {
192
+ [k: string]: any;
193
+ },
194
+ string
195
+ ]>;
196
+ FECAEASinMovimientoInformar: (input: IFECAEASinMovimientoInformarInput, cb: (err: any | null, result: IFECAEASinMovimientoInformarOutput, raw: string, soapHeader: {
197
+ [k: string]: any;
198
+ }) => any, options?: any, extraHeaders?: any) => void;
199
+ FECAEASinMovimientoInformarAsync: (input: IFECAEASinMovimientoInformarInput, options?: any, extraHeaders?: any) => Promise<[
200
+ IFECAEASinMovimientoInformarOutput,
201
+ string,
202
+ {
203
+ [k: string]: any;
204
+ },
205
+ string
206
+ ]>;
207
+ FECAEAConsultar: (input: IFECAEAConsultarInput, cb: (err: any | null, result: IFECAEAConsultarOutput, raw: string, soapHeader: {
208
+ [k: string]: any;
209
+ }) => any, options?: any, extraHeaders?: any) => void;
210
+ FECAEAConsultarAsync: (input: IFECAEAConsultarInput, options?: any, extraHeaders?: any) => Promise<[IFECAEAConsultarInput, string, {
211
+ [k: string]: any;
212
+ }, string]>;
213
+ FEParamGetCotizacion: (input: IFEParamGetCotizacionInput, cb: (err: any | null, result: IFEParamGetCotizacionOutput, raw: string, soapHeader: {
214
+ [k: string]: any;
215
+ }) => any, options?: any, extraHeaders?: any) => void;
216
+ FEParamGetCotizacionAsync: (input: IFEParamGetCotizacionInput, options?: any, extraHeaders?: any) => Promise<[
217
+ IFEParamGetCotizacionOutput,
218
+ string,
219
+ {
220
+ [k: string]: any;
221
+ },
222
+ string
223
+ ]>;
224
+ FEParamGetTiposTributos: (input: IFEParamGetTiposTributosInput, cb: (err: any | null, result: IFEParamGetTiposTributosOutput, raw: string, soapHeader: {
225
+ [k: string]: any;
226
+ }) => any, options?: any, extraHeaders?: any) => void;
227
+ FEParamGetTiposTributosAsync: SoapAsyncFunc<IFEParamGetTiposTributosInput, IFEParamGetTiposTributosOutput>;
228
+ FEParamGetTiposMonedas: (input: IFEParamGetTiposMonedasInput, cb: (err: any | null, result: IFEParamGetTiposMonedasOutput, raw: string, soapHeader: {
229
+ [k: string]: any;
230
+ }) => any, options?: any, extraHeaders?: any) => void;
231
+ FEParamGetTiposMonedasAsync: SoapAsyncFunc<IFEParamGetTiposMonedasInput, IFEParamGetTiposMonedasOutput>;
232
+ FEParamGetTiposIvaAsync: SoapAsyncFunc<IFEParamGetTiposIvaInput, IFEParamGetTiposIvaOutput>;
233
+ FEParamGetTiposIva: (input: IFEParamGetTiposIvaInput, cb: (err: any | null, result: IFEParamGetTiposIvaOutput, raw: string, soapHeader: {
234
+ [k: string]: any;
235
+ }) => any, options?: any, extraHeaders?: any) => void;
236
+ FEParamGetTiposOpcionalAsync: SoapAsyncFunc<IFEParamGetTiposOpcionalInput, IFEParamGetTiposOpcionalOutput>;
237
+ FEParamGetTiposOpcional: (input: IFEParamGetTiposOpcionalInput, cb: (err: any | null, result: IFEParamGetTiposOpcionalOutput, raw: string, soapHeader: {
238
+ [k: string]: any;
239
+ }) => any, options?: any, extraHeaders?: any) => void;
240
+ FEParamGetTiposConceptoAsync: SoapAsyncFunc<IFEParamGetTiposConceptoInput, IFEParamGetTiposConceptoOutput>;
241
+ FEParamGetTiposConcepto: (input: IFEParamGetTiposConceptoInput, cb: (err: any | null, result: IFEParamGetTiposConceptoOutput, raw: string, soapHeader: {
242
+ [k: string]: any;
243
+ }) => any, options?: any, extraHeaders?: any) => void;
244
+ FEParamGetPtosVentaAsync: (input: IFEParamGetPtosVentaInput, options?: any, extraHeaders?: any) => Promise<[
245
+ IFEParamGetPtosVentaOutput,
246
+ string,
247
+ {
248
+ [k: string]: any;
249
+ },
250
+ string
251
+ ]>;
252
+ FEParamGetPtosVenta: (input: IFEParamGetPtosVentaInput, cb: (err: any | null, result: IFEParamGetPtosVentaOutput, raw: string, soapHeader: {
253
+ [k: string]: any;
254
+ }) => any, options?: any, extraHeaders?: any) => void;
255
+ FEParamGetTiposCbte: (input: IFEParamGetTiposCbteInput, cb: (err: any | null, result: IFEParamGetTiposCbteOutput, raw: string, soapHeader: {
256
+ [k: string]: any;
257
+ }) => any, options?: any, extraHeaders?: any) => void;
258
+ FEParamGetTiposCbteAsync: (input: IFEParamGetTiposCbteInput, options?: any, extraHeaders?: any) => [IFEParamGetTiposCbteOutput, string, {
259
+ [k: string]: any;
260
+ }, string];
261
+ FEParamGetTiposDocAsync: SoapAsyncFunc<IFEParamGetTiposDocInput, IFEParamGetTiposDocOutput>;
262
+ FEParamGetTiposDoc: (input: IFEParamGetTiposDocInput, cb: (err: any | null, result: IFEParamGetTiposDocOutput, raw: string, soapHeader: {
263
+ [k: string]: any;
264
+ }) => any, options?: any, extraHeaders?: any) => void;
265
+ FEParamGetTiposPaisesAsync: SoapAsyncFunc<IFEParamGetTiposPaisesInput, IFEParamGetTiposPaisesOutput>;
266
+ FEParamGetTiposPaises: (input: IFEParamGetTiposPaisesInput, cb: (err: any | null, result: IFEParamGetTiposPaisesOutput, raw: string, soapHeader: {
267
+ [k: string]: any;
268
+ }) => any, options?: any, extraHeaders?: any) => void;
269
+ }
270
+ export declare namespace ServiceSoap12Types {
271
+ interface IAuth {
272
+ /** http://ar.gov.afip.dif.FEV1/#s:string(undefined) */
273
+ Token: string;
274
+ /** http://ar.gov.afip.dif.FEV1/#s:string(undefined) */
275
+ Sign: string;
276
+ /** http://ar.gov.afip.dif.FEV1/#s:long(undefined) */
277
+ Cuit: number;
278
+ }
279
+ interface IFeCabReq {
280
+ /** http://ar.gov.afip.dif.FEV1/#s:int(undefined) */
281
+ CantReg: number;
282
+ /** http://ar.gov.afip.dif.FEV1/#s:int(undefined) */
283
+ PtoVta: number;
284
+ /** http://ar.gov.afip.dif.FEV1/#s:int(undefined) */
285
+ CbteTipo: number;
286
+ }
287
+ interface ICbteAsoc {
288
+ /** http://ar.gov.afip.dif.FEV1/#s:int(undefined) */
289
+ Tipo: number;
290
+ /** http://ar.gov.afip.dif.FEV1/#s:int(undefined) */
291
+ PtoVta: number;
292
+ /** http://ar.gov.afip.dif.FEV1/#s:long(undefined) */
293
+ Nro: number;
294
+ /** http://ar.gov.afip.dif.FEV1/#s:string(undefined) */
295
+ Cuit: string;
296
+ /** http://ar.gov.afip.dif.FEV1/#s:string(undefined) */
297
+ CbteFch?: string;
298
+ }
299
+ interface ICbtesAsoc {
300
+ CbteAsoc: ServiceSoap12Types.ICbteAsoc[];
301
+ }
302
+ interface ITributo {
303
+ /** http://ar.gov.afip.dif.FEV1/#s:short(undefined) */
304
+ Id: number;
305
+ /** http://ar.gov.afip.dif.FEV1/#s:string(undefined) */
306
+ Desc: string;
307
+ /** http://ar.gov.afip.dif.FEV1/#s:double(undefined) */
308
+ BaseImp: number;
309
+ /** http://ar.gov.afip.dif.FEV1/#s:double(undefined) */
310
+ Alic: number;
311
+ /** http://ar.gov.afip.dif.FEV1/#s:double(undefined) */
312
+ Importe: number;
313
+ }
314
+ interface ITributos {
315
+ Tributo: ServiceSoap12Types.ITributo[];
316
+ }
317
+ interface IAlicIva {
318
+ /** http://ar.gov.afip.dif.FEV1/#s:int(undefined) */
319
+ Id: number;
320
+ /** http://ar.gov.afip.dif.FEV1/#s:double(undefined) */
321
+ BaseImp: number;
322
+ /** http://ar.gov.afip.dif.FEV1/#s:double(undefined) */
323
+ Importe: number;
324
+ }
325
+ interface IIva {
326
+ AlicIva: ServiceSoap12Types.IAlicIva[];
327
+ }
328
+ interface IOpcional {
329
+ /** http://ar.gov.afip.dif.FEV1/#s:string(undefined) */
330
+ Id: string;
331
+ /** http://ar.gov.afip.dif.FEV1/#s:string(undefined) */
332
+ Valor: string;
333
+ }
334
+ interface IOpcionales {
335
+ Opcional: ServiceSoap12Types.IOpcional[];
336
+ }
337
+ interface IComprador {
338
+ /** http://ar.gov.afip.dif.FEV1/#s:int(undefined) */
339
+ DocTipo: number;
340
+ /** http://ar.gov.afip.dif.FEV1/#s:long(undefined) */
341
+ DocNro: number;
342
+ /** http://ar.gov.afip.dif.FEV1/#s:double(undefined) */
343
+ Porcentaje: number;
344
+ }
345
+ interface ICompradores {
346
+ Comprador: ServiceSoap12Types.IComprador[];
347
+ }
348
+ interface IPeriodoAsoc {
349
+ /** http://ar.gov.afip.dif.FEV1/#s:string(undefined) */
350
+ FchDesde: string;
351
+ /** http://ar.gov.afip.dif.FEV1/#s:string(undefined) */
352
+ FchHasta: string;
353
+ }
354
+ interface IFECAEDetRequest {
355
+ /** http://ar.gov.afip.dif.FEV1/#s:int(undefined) */
356
+ Concepto: number;
357
+ /** http://ar.gov.afip.dif.FEV1/#s:int(undefined) */
358
+ DocTipo: number;
359
+ /** http://ar.gov.afip.dif.FEV1/#s:long(undefined) */
360
+ DocNro: number;
361
+ /** http://ar.gov.afip.dif.FEV1/#s:long(undefined) */
362
+ CbteDesde: number;
363
+ /** http://ar.gov.afip.dif.FEV1/#s:long(undefined) */
364
+ CbteHasta: number;
365
+ /** http://ar.gov.afip.dif.FEV1/#s:string(undefined) */
366
+ CbteFch: string;
367
+ /** http://ar.gov.afip.dif.FEV1/#s:double(undefined) */
368
+ ImpTotal: number;
369
+ /** http://ar.gov.afip.dif.FEV1/#s:double(undefined) */
370
+ ImpTotConc: number;
371
+ /** http://ar.gov.afip.dif.FEV1/#s:double(undefined) */
372
+ ImpNeto: number;
373
+ /** http://ar.gov.afip.dif.FEV1/#s:double(undefined) */
374
+ ImpOpEx: number;
375
+ /** http://ar.gov.afip.dif.FEV1/#s:double(undefined) */
376
+ ImpTrib: number;
377
+ /** http://ar.gov.afip.dif.FEV1/#s:double(undefined) */
378
+ ImpIVA: number;
379
+ /** http://ar.gov.afip.dif.FEV1/#s:string(undefined) */
380
+ FchServDesde?: string;
381
+ /** http://ar.gov.afip.dif.FEV1/#s:string(undefined) */
382
+ FchServHasta?: string;
383
+ /** http://ar.gov.afip.dif.FEV1/#s:string(undefined) */
384
+ FchVtoPago?: string;
385
+ /** http://ar.gov.afip.dif.FEV1/#s:string(undefined) */
386
+ MonId: string;
387
+ /** http://ar.gov.afip.dif.FEV1/#s:double(undefined) */
388
+ MonCotiz: number;
389
+ CbtesAsoc?: ServiceSoap12Types.ICbtesAsoc;
390
+ Tributos?: ServiceSoap12Types.ITributos;
391
+ Iva?: ServiceSoap12Types.IIva;
392
+ Opcionales?: ServiceSoap12Types.IOpcionales;
393
+ Compradores?: ServiceSoap12Types.ICompradores;
394
+ PeriodoAsoc?: ServiceSoap12Types.IPeriodoAsoc;
395
+ }
396
+ interface IFeCAEReq {
397
+ FeCabReq: ServiceSoap12Types.IFeCabReq;
398
+ FeDetReq: {
399
+ FECAEDetRequest: ServiceSoap12Types.IFECAEDetRequest[];
400
+ };
401
+ }
402
+ interface IFeCabResp {
403
+ /** http://ar.gov.afip.dif.FEV1/#s:long(undefined) */
404
+ Cuit: number;
405
+ /** http://ar.gov.afip.dif.FEV1/#s:int(undefined) */
406
+ PtoVta: number;
407
+ /** http://ar.gov.afip.dif.FEV1/#s:int(undefined) */
408
+ CbteTipo: number;
409
+ /** http://ar.gov.afip.dif.FEV1/#s:string(undefined) */
410
+ FchProceso: string;
411
+ /** http://ar.gov.afip.dif.FEV1/#s:int(undefined) */
412
+ CantReg: number;
413
+ /** http://ar.gov.afip.dif.FEV1/#s:string(undefined) */
414
+ Resultado: string;
415
+ /** http://ar.gov.afip.dif.FEV1/#s:string(undefined) */
416
+ Reproceso: string;
417
+ }
418
+ interface IObs {
419
+ /** http://ar.gov.afip.dif.FEV1/#s:int(undefined) */
420
+ Code: number;
421
+ /** http://ar.gov.afip.dif.FEV1/#s:string(undefined) */
422
+ Msg: string;
423
+ }
424
+ interface IObservaciones {
425
+ Obs: ServiceSoap12Types.IObs[];
426
+ }
427
+ interface IFECAEDetResponse {
428
+ /** http://ar.gov.afip.dif.FEV1/#s:int(undefined) */
429
+ Concepto: number;
430
+ /** http://ar.gov.afip.dif.FEV1/#s:int(undefined) */
431
+ DocTipo: number;
432
+ /** http://ar.gov.afip.dif.FEV1/#s:long(undefined) */
433
+ DocNro: number;
434
+ /** http://ar.gov.afip.dif.FEV1/#s:long(undefined) */
435
+ CbteDesde: number;
436
+ /** http://ar.gov.afip.dif.FEV1/#s:long(undefined) */
437
+ CbteHasta: number;
438
+ /** http://ar.gov.afip.dif.FEV1/#s:string(undefined) */
439
+ CbteFch: string;
440
+ /** http://ar.gov.afip.dif.FEV1/#s:string(undefined) */
441
+ Resultado: string;
442
+ Observaciones: ServiceSoap12Types.IObservaciones;
443
+ /** http://ar.gov.afip.dif.FEV1/#s:string(undefined) */
444
+ CAE: string;
445
+ /** http://ar.gov.afip.dif.FEV1/#s:string(undefined) */
446
+ CAEFchVto: string;
447
+ }
448
+ interface IEvt {
449
+ /** http://ar.gov.afip.dif.FEV1/#s:int(undefined) */
450
+ Code: number;
451
+ /** http://ar.gov.afip.dif.FEV1/#s:string(undefined) */
452
+ Msg: string;
453
+ }
454
+ interface IEvents {
455
+ Evt: ServiceSoap12Types.IEvt[];
456
+ }
457
+ interface IErr {
458
+ /** http://ar.gov.afip.dif.FEV1/#s:int(undefined) */
459
+ Code: number;
460
+ /** http://ar.gov.afip.dif.FEV1/#s:string(undefined) */
461
+ Msg: string;
462
+ }
463
+ interface IErrors {
464
+ Err: ServiceSoap12Types.IErr[];
465
+ }
466
+ interface IFECAESolicitarResult {
467
+ FeCabResp: ServiceSoap12Types.IFeCabResp;
468
+ FeDetResp: {
469
+ FECAEDetResponse: ServiceSoap12Types.IFECAEDetResponse[];
470
+ };
471
+ Events: ServiceSoap12Types.IEvents;
472
+ Errors: ServiceSoap12Types.IErrors;
473
+ }
474
+ interface IFECompTotXRequestResult {
475
+ /** http://ar.gov.afip.dif.FEV1/#s:int(undefined) */
476
+ RegXReq: number;
477
+ Errors: ServiceSoap12Types.IErrors;
478
+ Events: ServiceSoap12Types.IEvents;
479
+ }
480
+ interface IFEDummyResult {
481
+ /** http://ar.gov.afip.dif.FEV1/#s:string(undefined) */
482
+ AppServer: string;
483
+ /** http://ar.gov.afip.dif.FEV1/#s:string(undefined) */
484
+ DbServer: string;
485
+ /** http://ar.gov.afip.dif.FEV1/#s:string(undefined) */
486
+ AuthServer: string;
487
+ }
488
+ interface IFECompUltimoAutorizadoResult {
489
+ /** http://ar.gov.afip.dif.FEV1/#s:int(undefined) */
490
+ PtoVta: number;
491
+ /** http://ar.gov.afip.dif.FEV1/#s:int(undefined) */
492
+ CbteTipo: number;
493
+ /** http://ar.gov.afip.dif.FEV1/#s:int(undefined) */
494
+ CbteNro: number;
495
+ Errors: ServiceSoap12Types.IErrors;
496
+ Events: ServiceSoap12Types.IEvents;
497
+ }
498
+ interface IFeCompConsReq {
499
+ /** http://ar.gov.afip.dif.FEV1/#s:int(undefined) */
500
+ CbteTipo: number;
501
+ /** http://ar.gov.afip.dif.FEV1/#s:long(undefined) */
502
+ CbteNro: number;
503
+ /** http://ar.gov.afip.dif.FEV1/#s:int(undefined) */
504
+ PtoVta: number;
505
+ }
506
+ interface IFECompConsultarResult {
507
+ ResultGet: {
508
+ /** http://ar.gov.afip.dif.FEV1/#s:int(undefined) */
509
+ Concepto: number;
510
+ /** http://ar.gov.afip.dif.FEV1/#s:int(undefined) */
511
+ DocTipo: number;
512
+ /** http://ar.gov.afip.dif.FEV1/#s:long(undefined) */
513
+ DocNro: number;
514
+ /** http://ar.gov.afip.dif.FEV1/#s:long(undefined) */
515
+ CbteDesde: number;
516
+ /** http://ar.gov.afip.dif.FEV1/#s:long(undefined) */
517
+ CbteHasta: number;
518
+ /** http://ar.gov.afip.dif.FEV1/#s:string(undefined) */
519
+ CbteFch: string;
520
+ /** http://ar.gov.afip.dif.FEV1/#s:double(undefined) */
521
+ ImpTotal: number;
522
+ /** http://ar.gov.afip.dif.FEV1/#s:double(undefined) */
523
+ ImpTotConc: number;
524
+ /** http://ar.gov.afip.dif.FEV1/#s:double(undefined) */
525
+ ImpNeto: number;
526
+ /** http://ar.gov.afip.dif.FEV1/#s:double(undefined) */
527
+ ImpOpEx: number;
528
+ /** http://ar.gov.afip.dif.FEV1/#s:double(undefined) */
529
+ ImpTrib: number;
530
+ /** http://ar.gov.afip.dif.FEV1/#s:double(undefined) */
531
+ ImpIVA: number;
532
+ /** http://ar.gov.afip.dif.FEV1/#s:string(undefined) */
533
+ FchServDesde: string;
534
+ /** http://ar.gov.afip.dif.FEV1/#s:string(undefined) */
535
+ FchServHasta: string;
536
+ /** http://ar.gov.afip.dif.FEV1/#s:string(undefined) */
537
+ FchVtoPago: string;
538
+ /** http://ar.gov.afip.dif.FEV1/#s:string(undefined) */
539
+ MonId: string;
540
+ /** http://ar.gov.afip.dif.FEV1/#s:double(undefined) */
541
+ MonCotiz: number;
542
+ CbtesAsoc: ServiceSoap12Types.ICbtesAsoc;
543
+ Tributos: ServiceSoap12Types.ITributos;
544
+ Iva: ServiceSoap12Types.IIva;
545
+ Opcionales: ServiceSoap12Types.IOpcionales;
546
+ Compradores: ServiceSoap12Types.ICompradores;
547
+ PeriodoAsoc: ServiceSoap12Types.IPeriodoAsoc;
548
+ /** http://ar.gov.afip.dif.FEV1/#s:string(undefined) */
549
+ Resultado: string;
550
+ /** http://ar.gov.afip.dif.FEV1/#s:string(undefined) */
551
+ CodAutorizacion: string;
552
+ /** http://ar.gov.afip.dif.FEV1/#s:string(undefined) */
553
+ EmisionTipo: string;
554
+ /** http://ar.gov.afip.dif.FEV1/#s:string(undefined) */
555
+ FchVto: string;
556
+ /** http://ar.gov.afip.dif.FEV1/#s:string(undefined) */
557
+ FchProceso: string;
558
+ Observaciones: ServiceSoap12Types.IObservaciones;
559
+ /** http://ar.gov.afip.dif.FEV1/#s:int(undefined) */
560
+ PtoVta: number;
561
+ /** http://ar.gov.afip.dif.FEV1/#s:int(undefined) */
562
+ CbteTipo: number;
563
+ };
564
+ Errors: ServiceSoap12Types.IErrors;
565
+ Events: ServiceSoap12Types.IEvents;
566
+ }
567
+ interface IFECAEADetRequest {
568
+ /** http://ar.gov.afip.dif.FEV1/#s:int(undefined) */
569
+ Concepto: number;
570
+ /** http://ar.gov.afip.dif.FEV1/#s:int(undefined) */
571
+ DocTipo: number;
572
+ /** http://ar.gov.afip.dif.FEV1/#s:long(undefined) */
573
+ DocNro: number;
574
+ /** http://ar.gov.afip.dif.FEV1/#s:long(undefined) */
575
+ CbteDesde: number;
576
+ /** http://ar.gov.afip.dif.FEV1/#s:long(undefined) */
577
+ CbteHasta: number;
578
+ /** http://ar.gov.afip.dif.FEV1/#s:string(undefined) */
579
+ CbteFch: string;
580
+ /** http://ar.gov.afip.dif.FEV1/#s:double(undefined) */
581
+ ImpTotal: number;
582
+ /** http://ar.gov.afip.dif.FEV1/#s:double(undefined) */
583
+ ImpTotConc: number;
584
+ /** http://ar.gov.afip.dif.FEV1/#s:double(undefined) */
585
+ ImpNeto: number;
586
+ /** http://ar.gov.afip.dif.FEV1/#s:double(undefined) */
587
+ ImpOpEx: number;
588
+ /** http://ar.gov.afip.dif.FEV1/#s:double(undefined) */
589
+ ImpTrib: number;
590
+ /** http://ar.gov.afip.dif.FEV1/#s:double(undefined) */
591
+ ImpIVA: number;
592
+ /** http://ar.gov.afip.dif.FEV1/#s:string(undefined) */
593
+ FchServDesde: string;
594
+ /** http://ar.gov.afip.dif.FEV1/#s:string(undefined) */
595
+ FchServHasta: string;
596
+ /** http://ar.gov.afip.dif.FEV1/#s:string(undefined) */
597
+ FchVtoPago: string;
598
+ /** http://ar.gov.afip.dif.FEV1/#s:string(undefined) */
599
+ MonId: string;
600
+ /** http://ar.gov.afip.dif.FEV1/#s:double(undefined) */
601
+ MonCotiz: number;
602
+ CbtesAsoc: ServiceSoap12Types.ICbtesAsoc;
603
+ Tributos: ServiceSoap12Types.ITributos;
604
+ Iva: ServiceSoap12Types.IIva;
605
+ Opcionales: ServiceSoap12Types.IOpcionales;
606
+ Compradores: ServiceSoap12Types.ICompradores;
607
+ PeriodoAsoc: ServiceSoap12Types.IPeriodoAsoc;
608
+ /** http://ar.gov.afip.dif.FEV1/#s:string(undefined) */
609
+ CAEA: string;
610
+ /** http://ar.gov.afip.dif.FEV1/#s:string(undefined) */
611
+ CbteFchHsGen: string;
612
+ }
613
+ interface IFeCAEARegInfReq {
614
+ FeCabReq: ServiceSoap12Types.IFeCabReq;
615
+ FeDetReq: {
616
+ FECAEADetRequest: ServiceSoap12Types.IFECAEADetRequest[];
617
+ };
618
+ }
619
+ interface IFECAEADetResponse {
620
+ /** http://ar.gov.afip.dif.FEV1/#s:int(undefined) */
621
+ Concepto: number;
622
+ /** http://ar.gov.afip.dif.FEV1/#s:int(undefined) */
623
+ DocTipo: number;
624
+ /** http://ar.gov.afip.dif.FEV1/#s:long(undefined) */
625
+ DocNro: number;
626
+ /** http://ar.gov.afip.dif.FEV1/#s:long(undefined) */
627
+ CbteDesde: number;
628
+ /** http://ar.gov.afip.dif.FEV1/#s:long(undefined) */
629
+ CbteHasta: number;
630
+ /** http://ar.gov.afip.dif.FEV1/#s:string(undefined) */
631
+ CbteFch: string;
632
+ /** http://ar.gov.afip.dif.FEV1/#s:string(undefined) */
633
+ Resultado: string;
634
+ Observaciones: ServiceSoap12Types.IObservaciones;
635
+ /** http://ar.gov.afip.dif.FEV1/#s:string(undefined) */
636
+ CAEA: string;
637
+ }
638
+ interface IFECAEARegInformativoResult {
639
+ FeCabResp: ServiceSoap12Types.IFeCabResp;
640
+ FeDetResp: {
641
+ FECAEADetResponse: ServiceSoap12Types.IFECAEADetResponse[];
642
+ };
643
+ Events: ServiceSoap12Types.IEvents;
644
+ Errors: ServiceSoap12Types.IErrors;
645
+ }
646
+ interface IFECAEASolicitarResult {
647
+ ResultGet: {
648
+ /** http://ar.gov.afip.dif.FEV1/#s:string(undefined) */
649
+ CAEA: string;
650
+ /** http://ar.gov.afip.dif.FEV1/#s:int(undefined) */
651
+ Periodo: number;
652
+ /** http://ar.gov.afip.dif.FEV1/#s:short(undefined) */
653
+ Orden: number;
654
+ /** http://ar.gov.afip.dif.FEV1/#s:string(undefined) */
655
+ FchVigDesde: string;
656
+ /** http://ar.gov.afip.dif.FEV1/#s:string(undefined) */
657
+ FchVigHasta: string;
658
+ /** http://ar.gov.afip.dif.FEV1/#s:string(undefined) */
659
+ FchTopeInf: string;
660
+ /** http://ar.gov.afip.dif.FEV1/#s:string(undefined) */
661
+ FchProceso: string;
662
+ Observaciones: ServiceSoap12Types.IObservaciones;
663
+ };
664
+ Errors: ServiceSoap12Types.IErrors;
665
+ Events: ServiceSoap12Types.IEvents;
666
+ }
667
+ interface IFECAEASinMov {
668
+ /** http://ar.gov.afip.dif.FEV1/#s:string(undefined) */
669
+ CAEA: string;
670
+ /** http://ar.gov.afip.dif.FEV1/#s:string(undefined) */
671
+ FchProceso: string;
672
+ /** http://ar.gov.afip.dif.FEV1/#s:int(undefined) */
673
+ PtoVta: number;
674
+ }
675
+ interface IFECAEASinMovimientoConsultarResult {
676
+ ResultGet: {
677
+ FECAEASinMov: ServiceSoap12Types.IFECAEASinMov[];
678
+ };
679
+ Errors: ServiceSoap12Types.IErrors;
680
+ Events: ServiceSoap12Types.IEvents;
681
+ }
682
+ interface IFECAEASinMovimientoInformarResult {
683
+ /** http://ar.gov.afip.dif.FEV1/#s:string(undefined) */
684
+ CAEA: string;
685
+ /** http://ar.gov.afip.dif.FEV1/#s:string(undefined) */
686
+ FchProceso: string;
687
+ /** http://ar.gov.afip.dif.FEV1/#s:int(undefined) */
688
+ PtoVta: number;
689
+ /** http://ar.gov.afip.dif.FEV1/#s:string(undefined) */
690
+ Resultado: string;
691
+ Errors: ServiceSoap12Types.IErrors;
692
+ Events: ServiceSoap12Types.IEvents;
693
+ }
694
+ interface IFECAEAConsultarResult {
695
+ ResultGet: {
696
+ /** http://ar.gov.afip.dif.FEV1/#s:string(undefined) */
697
+ CAEA: string;
698
+ /** http://ar.gov.afip.dif.FEV1/#s:int(undefined) */
699
+ Periodo: number;
700
+ /** http://ar.gov.afip.dif.FEV1/#s:short(undefined) */
701
+ Orden: number;
702
+ /** http://ar.gov.afip.dif.FEV1/#s:string(undefined) */
703
+ FchVigDesde: string;
704
+ /** http://ar.gov.afip.dif.FEV1/#s:string(undefined) */
705
+ FchVigHasta: string;
706
+ /** http://ar.gov.afip.dif.FEV1/#s:string(undefined) */
707
+ FchTopeInf: string;
708
+ /** http://ar.gov.afip.dif.FEV1/#s:string(undefined) */
709
+ FchProceso: string;
710
+ Observaciones: ServiceSoap12Types.IObservaciones;
711
+ };
712
+ Errors: ServiceSoap12Types.IErrors;
713
+ Events: ServiceSoap12Types.IEvents;
714
+ }
715
+ interface IFEParamGetCotizacionResult {
716
+ ResultGet: {
717
+ /** http://ar.gov.afip.dif.FEV1/#s:string(undefined) */
718
+ MonId: string;
719
+ /** http://ar.gov.afip.dif.FEV1/#s:double(undefined) */
720
+ MonCotiz: number;
721
+ /** http://ar.gov.afip.dif.FEV1/#s:string(undefined) */
722
+ FchCotiz: string;
723
+ };
724
+ Errors: ServiceSoap12Types.IErrors;
725
+ Events: ServiceSoap12Types.IEvents;
726
+ }
727
+ interface ITributoTipo {
728
+ /** http://ar.gov.afip.dif.FEV1/#s:short(undefined) */
729
+ Id: number;
730
+ /** http://ar.gov.afip.dif.FEV1/#s:string(undefined) */
731
+ Desc: string;
732
+ /** http://ar.gov.afip.dif.FEV1/#s:string(undefined) */
733
+ FchDesde: string;
734
+ /** http://ar.gov.afip.dif.FEV1/#s:string(undefined) */
735
+ FchHasta: string;
736
+ }
737
+ interface IFEParamGetTiposTributosResult {
738
+ ResultGet: {
739
+ TributoTipo: ServiceSoap12Types.ITributoTipo[];
740
+ };
741
+ Errors: ServiceSoap12Types.IErrors;
742
+ Events: ServiceSoap12Types.IEvents;
743
+ }
744
+ interface IMoneda {
745
+ /** http://ar.gov.afip.dif.FEV1/#s:string(undefined) */
746
+ Id: string;
747
+ /** http://ar.gov.afip.dif.FEV1/#s:string(undefined) */
748
+ Desc: string;
749
+ /** http://ar.gov.afip.dif.FEV1/#s:string(undefined) */
750
+ FchDesde: string;
751
+ /** http://ar.gov.afip.dif.FEV1/#s:string(undefined) */
752
+ FchHasta: string;
753
+ }
754
+ interface IFEParamGetTiposMonedasResult {
755
+ ResultGet: {
756
+ Moneda: ServiceSoap12Types.IMoneda[];
757
+ };
758
+ Errors: ServiceSoap12Types.IErrors;
759
+ Events: ServiceSoap12Types.IEvents;
760
+ }
761
+ interface IIvaTipo {
762
+ /** http://ar.gov.afip.dif.FEV1/#s:string(undefined) */
763
+ Id: string;
764
+ /** http://ar.gov.afip.dif.FEV1/#s:string(undefined) */
765
+ Desc: string;
766
+ /** http://ar.gov.afip.dif.FEV1/#s:string(undefined) */
767
+ FchDesde: string;
768
+ /** http://ar.gov.afip.dif.FEV1/#s:string(undefined) */
769
+ FchHasta: string;
770
+ }
771
+ interface IFEParamGetTiposIvaResult {
772
+ ResultGet: {
773
+ IvaTipo: ServiceSoap12Types.IIvaTipo[];
774
+ };
775
+ Errors: ServiceSoap12Types.IErrors;
776
+ Events: ServiceSoap12Types.IEvents;
777
+ }
778
+ interface IOpcionalTipo {
779
+ /** http://ar.gov.afip.dif.FEV1/#s:string(undefined) */
780
+ Id: string;
781
+ /** http://ar.gov.afip.dif.FEV1/#s:string(undefined) */
782
+ Desc: string;
783
+ /** http://ar.gov.afip.dif.FEV1/#s:string(undefined) */
784
+ FchDesde: string;
785
+ /** http://ar.gov.afip.dif.FEV1/#s:string(undefined) */
786
+ FchHasta: string;
787
+ }
788
+ interface IFEParamGetTiposOpcionalResult {
789
+ ResultGet: {
790
+ OpcionalTipo: ServiceSoap12Types.IOpcionalTipo[];
791
+ };
792
+ Errors: ServiceSoap12Types.IErrors;
793
+ Events: ServiceSoap12Types.IEvents;
794
+ }
795
+ interface IConceptoTipo {
796
+ /** http://ar.gov.afip.dif.FEV1/#s:int(undefined) */
797
+ Id: number;
798
+ /** http://ar.gov.afip.dif.FEV1/#s:string(undefined) */
799
+ Desc: string;
800
+ /** http://ar.gov.afip.dif.FEV1/#s:string(undefined) */
801
+ FchDesde: string;
802
+ /** http://ar.gov.afip.dif.FEV1/#s:string(undefined) */
803
+ FchHasta: string;
804
+ }
805
+ interface IFEParamGetTiposConceptoResult {
806
+ ResultGet: {
807
+ ConceptoTipo: ServiceSoap12Types.IConceptoTipo[];
808
+ };
809
+ Errors: ServiceSoap12Types.IErrors;
810
+ Events: ServiceSoap12Types.IEvents;
811
+ }
812
+ interface IPtoVenta {
813
+ /** http://ar.gov.afip.dif.FEV1/#s:int(undefined) */
814
+ Nro: number;
815
+ /** http://ar.gov.afip.dif.FEV1/#s:string(undefined) */
816
+ EmisionTipo: string;
817
+ /** http://ar.gov.afip.dif.FEV1/#s:string(undefined) */
818
+ Bloqueado: string;
819
+ /** http://ar.gov.afip.dif.FEV1/#s:string(undefined) */
820
+ FchBaja: string;
821
+ }
822
+ interface IFEParamGetPtosVentaResult {
823
+ ResultGet: {
824
+ PtoVenta: ServiceSoap12Types.IPtoVenta[];
825
+ };
826
+ Errors: ServiceSoap12Types.IErrors;
827
+ Events: ServiceSoap12Types.IEvents;
828
+ }
829
+ interface ICbteTipo {
830
+ /** http://ar.gov.afip.dif.FEV1/#s:int(undefined) */
831
+ Id: number;
832
+ /** http://ar.gov.afip.dif.FEV1/#s:string(undefined) */
833
+ Desc: string;
834
+ /** http://ar.gov.afip.dif.FEV1/#s:string(undefined) */
835
+ FchDesde: string;
836
+ /** http://ar.gov.afip.dif.FEV1/#s:string(undefined) */
837
+ FchHasta: string;
838
+ }
839
+ interface IFEParamGetTiposCbteResult {
840
+ ResultGet: {
841
+ CbteTipo: ServiceSoap12Types.ICbteTipo[];
842
+ };
843
+ Errors: ServiceSoap12Types.IErrors;
844
+ Events: ServiceSoap12Types.IEvents;
845
+ }
846
+ interface IDocTipo {
847
+ /** http://ar.gov.afip.dif.FEV1/#s:int(undefined) */
848
+ Id: number;
849
+ /** http://ar.gov.afip.dif.FEV1/#s:string(undefined) */
850
+ Desc: string;
851
+ /** http://ar.gov.afip.dif.FEV1/#s:string(undefined) */
852
+ FchDesde: string;
853
+ /** http://ar.gov.afip.dif.FEV1/#s:string(undefined) */
854
+ FchHasta: string;
855
+ }
856
+ interface IFEParamGetTiposDocResult {
857
+ ResultGet: {
858
+ DocTipo: ServiceSoap12Types.IDocTipo[];
859
+ };
860
+ Errors: ServiceSoap12Types.IErrors;
861
+ Events: ServiceSoap12Types.IEvents;
862
+ }
863
+ interface IPaisTipo {
864
+ /** http://ar.gov.afip.dif.FEV1/#s:short(undefined) */
865
+ Id: number;
866
+ /** http://ar.gov.afip.dif.FEV1/#s:string(undefined) */
867
+ Desc: string;
868
+ }
869
+ interface IFEParamGetTiposPaisesResult {
870
+ ResultGet: {
871
+ PaisTipo: ServiceSoap12Types.IPaisTipo[];
872
+ };
873
+ Errors: ServiceSoap12Types.IErrors;
874
+ Events: ServiceSoap12Types.IEvents;
875
+ }
876
+ }