cecon-interfaces 1.1.28 → 1.1.31

Sign up to get free protection for your applications and to get access to all the features.
Files changed (335) hide show
  1. package/dist/app/entities/app.entity.js +71 -0
  2. package/dist/app/entities/index.js +9 -0
  3. package/dist/app/entities/natigo.entity.js +28 -0
  4. package/dist/app/entities/rabbit.entity.d.ts +2 -1
  5. package/dist/app/entities/rabbit.entity.js +45 -0
  6. package/dist/app/enums/app-category.enum.js +34 -0
  7. package/dist/app/enums/app-type.enum.js +10 -0
  8. package/dist/app/enums/header-type.enum.js +8 -0
  9. package/dist/app/enums/index.js +11 -0
  10. package/dist/app/enums/mode.enum.js +15 -0
  11. package/dist/app/index.js +20 -0
  12. package/dist/app/interfaces/i-app.js +2 -0
  13. package/dist/app/interfaces/i-natigo.js +2 -0
  14. package/dist/app/interfaces/i-rabbit.d.ts +14 -1
  15. package/dist/app/interfaces/i-rabbit.js +2 -0
  16. package/dist/app/interfaces/index.js +2 -0
  17. package/dist/app/types/app-config.type.js +2 -0
  18. package/dist/app/types/index.js +2 -0
  19. package/dist/campaign/entities/campaign.entity.js +30 -0
  20. package/dist/campaign/entities/index.js +5 -0
  21. package/dist/campaign/enums/e-campaign-status.enum.js +11 -0
  22. package/dist/campaign/enums/index.js +5 -0
  23. package/dist/campaign/index.js +19 -0
  24. package/dist/campaign/interfaces/i-campaign.js +2 -0
  25. package/dist/campaign/interfaces/index.js +2 -0
  26. package/dist/company/entities/company.entity.js +49 -0
  27. package/dist/company/entities/index.js +6 -0
  28. package/dist/company/enums/index.js +8 -0
  29. package/dist/company/enums/keys.enum.js +11 -0
  30. package/dist/company/enums/message-type.enum.js +9 -0
  31. package/dist/company/index.js +19 -0
  32. package/dist/company/interfaces/i-company.js +2 -0
  33. package/dist/company/interfaces/index.js +2 -0
  34. package/dist/container/entities/container.entity.js +39 -0
  35. package/dist/container/entities/index.js +5 -0
  36. package/dist/container/index.js +18 -0
  37. package/dist/container/interfaces/i-container.js +2 -0
  38. package/dist/container/interfaces/index.js +2 -0
  39. package/dist/device/entities/device.entity.js +34 -0
  40. package/dist/device/entities/index.js +8 -0
  41. package/dist/device/entities/metadata.entity.js +21 -0
  42. package/dist/device/index.js +18 -0
  43. package/dist/device/interfaces/i-device.js +2 -0
  44. package/dist/device/interfaces/i-metadata.js +2 -0
  45. package/dist/device/interfaces/index.js +3 -0
  46. package/dist/esm2022/app/entities/rabbit.entity.mjs +3 -2
  47. package/dist/esm2022/app/interfaces/i-rabbit.mjs +1 -1
  48. package/dist/feature/entities/feature.entity.js +30 -0
  49. package/dist/feature/entities/index.js +5 -0
  50. package/dist/feature/index.js +18 -0
  51. package/dist/feature/interfaces/i-feature.js +2 -0
  52. package/dist/feature/interfaces/index.js +2 -0
  53. package/dist/fesm2022/cecon-interfaces.mjs +2 -1
  54. package/dist/fesm2022/cecon-interfaces.mjs.map +1 -1
  55. package/dist/general/entities/address.entity.js +28 -0
  56. package/dist/general/entities/base.entity.js +26 -0
  57. package/dist/general/entities/carousel-image.entity.js +22 -0
  58. package/dist/general/entities/coords.entity.js +21 -0
  59. package/dist/general/entities/custom-variable.entity.js +21 -0
  60. package/dist/general/entities/delivery-area.entity.js +27 -0
  61. package/dist/general/entities/dellivery-area-fixed.entity.js +24 -0
  62. package/dist/general/entities/index.js +49 -0
  63. package/dist/general/entities/messager-channel.entity.js +22 -0
  64. package/dist/general/entities/mobyo-apiconfig.entity.js +25 -0
  65. package/dist/general/entities/origin.entity.js +26 -0
  66. package/dist/general/entities/payment-card.entity.js +22 -0
  67. package/dist/general/entities/payment-cash.entity.js +20 -0
  68. package/dist/general/entities/payment-method-option.entity.js +35 -0
  69. package/dist/general/entities/payment-method.entity.js +31 -0
  70. package/dist/general/entities/payment-pix.entity.js +21 -0
  71. package/dist/general/entities/payment-provider-agent.entity.js +22 -0
  72. package/dist/general/entities/payment-provider.entity.js +33 -0
  73. package/dist/general/entities/payment-token-data.entity.js +26 -0
  74. package/dist/general/entities/payment-token.entity.js +25 -0
  75. package/dist/general/entities/payment-wallet.entity.js +20 -0
  76. package/dist/general/entities/payment.entity.js +29 -0
  77. package/dist/general/entities/rating.entity.js +23 -0
  78. package/dist/general/entities/sponsorship-value.entity.js +21 -0
  79. package/dist/general/enums/bank-slip-status.enum.js +11 -0
  80. package/dist/general/enums/boolean-string.enum.js +8 -0
  81. package/dist/general/enums/doc-type.enum.js +8 -0
  82. package/dist/general/enums/e-discount-type.enum.js +8 -0
  83. package/dist/general/enums/fiscal-doc-model-code.enum.js +15 -0
  84. package/dist/general/enums/index.js +35 -0
  85. package/dist/general/enums/interval-type.enum.js +9 -0
  86. package/dist/general/enums/lead-origin.enum.js +13 -0
  87. package/dist/general/enums/os.enum.js +14 -0
  88. package/dist/general/enums/payment-channel.enum.js +14 -0
  89. package/dist/general/enums/payment-mode.enum.js +9 -0
  90. package/dist/general/enums/payment-status.enum.js +15 -0
  91. package/dist/general/enums/payment-type.enum.js +26 -0
  92. package/dist/general/enums/person-type.enum.js +8 -0
  93. package/dist/general/enums/platform.enum.js +13 -0
  94. package/dist/general/enums/providers.enum.js +12 -0
  95. package/dist/general/enums/sponsorship-values.enum.js +10 -0
  96. package/dist/general/index.js +19 -0
  97. package/dist/general/interfaces/i-address.js +2 -0
  98. package/dist/general/interfaces/i-base.js +3 -0
  99. package/dist/general/interfaces/i-carousel-image.js +2 -0
  100. package/dist/general/interfaces/i-coords.js +2 -0
  101. package/dist/general/interfaces/i-custom-variable.js +3 -0
  102. package/dist/general/interfaces/i-delivery-area-fixed.js +2 -0
  103. package/dist/general/interfaces/i-delivery-area.js +2 -0
  104. package/dist/general/interfaces/i-messager-channel.js +2 -0
  105. package/dist/general/interfaces/i-mobyo-api-config.js +2 -0
  106. package/dist/general/interfaces/i-origin.js +2 -0
  107. package/dist/general/interfaces/i-payment-card.js +2 -0
  108. package/dist/general/interfaces/i-payment-cash.js +2 -0
  109. package/dist/general/interfaces/i-payment-method-option.js +2 -0
  110. package/dist/general/interfaces/i-payment-method.js +2 -0
  111. package/dist/general/interfaces/i-payment-pix.js +2 -0
  112. package/dist/general/interfaces/i-payment-provider-agent.js +2 -0
  113. package/dist/general/interfaces/i-payment-provider.js +2 -0
  114. package/dist/general/interfaces/i-payment-token-data.js +3 -0
  115. package/dist/general/interfaces/i-payment-token.js +3 -0
  116. package/dist/general/interfaces/i-payment-wallet.js +2 -0
  117. package/dist/general/interfaces/i-payment.js +2 -0
  118. package/dist/general/interfaces/i-rating.js +2 -0
  119. package/dist/general/interfaces/i-sponsorship-value.js +2 -0
  120. package/dist/general/interfaces/index.js +3 -0
  121. package/dist/index.js +39 -0
  122. package/dist/installation/entities/index.js +5 -0
  123. package/dist/installation/entities/installation-app.entity.js +25 -0
  124. package/dist/installation/entities/installation.entity.js +34 -0
  125. package/dist/installation/enums/index.js +5 -0
  126. package/dist/installation/enums/status.enum.js +15 -0
  127. package/dist/installation/index.js +19 -0
  128. package/dist/installation/interfaces/i-installation-app.js +2 -0
  129. package/dist/installation/interfaces/i-installation.js +2 -0
  130. package/dist/installation/interfaces/index.js +2 -0
  131. package/dist/invite/entities/index.js +5 -0
  132. package/dist/invite/entities/invite.entity.js +38 -0
  133. package/dist/invite/enums/index.js +5 -0
  134. package/dist/invite/enums/status.enum.js +11 -0
  135. package/dist/invite/index.js +19 -0
  136. package/dist/invite/interfaces/i-invite.js +2 -0
  137. package/dist/invite/interfaces/index.js +2 -0
  138. package/dist/invoice/entities/index.js +17 -0
  139. package/dist/invoice/entities/invoice-bank-slip.entity.js +27 -0
  140. package/dist/invoice/entities/invoice-credit-card.entity.js +25 -0
  141. package/dist/invoice/entities/invoice-item.entity.js +22 -0
  142. package/dist/invoice/entities/invoice-log.entity.js +23 -0
  143. package/dist/invoice/entities/invoice-payer.entity.js +26 -0
  144. package/dist/invoice/entities/invoice-pix.entity.js +23 -0
  145. package/dist/invoice/entities/invoice.entity.js +66 -0
  146. package/dist/invoice/enums/index.js +5 -0
  147. package/dist/invoice/enums/invoices-status.enum.js +17 -0
  148. package/dist/invoice/index.js +19 -0
  149. package/dist/invoice/interfaces/i-invoice-bank-slip.js +2 -0
  150. package/dist/invoice/interfaces/i-invoice-credit-card.js +2 -0
  151. package/dist/invoice/interfaces/i-invoice-item.js +2 -0
  152. package/dist/invoice/interfaces/i-invoice-log.js +2 -0
  153. package/dist/invoice/interfaces/i-invoice-payer.js +2 -0
  154. package/dist/invoice/interfaces/i-invoice-pix.js +2 -0
  155. package/dist/invoice/interfaces/i-invoice.js +2 -0
  156. package/dist/invoice/interfaces/index.js +2 -0
  157. package/dist/iugu/entities/account-informations.entity.js +21 -0
  158. package/dist/iugu/entities/account-last-verification-request-data.entity.js +40 -0
  159. package/dist/iugu/entities/customer.entity.js +40 -0
  160. package/dist/iugu/entities/index.js +17 -0
  161. package/dist/iugu/entities/invoice.entity.js +82 -0
  162. package/dist/iugu/entities/iugu-account.entity.js +75 -0
  163. package/dist/iugu/entities/payment-token-data.entity.js +28 -0
  164. package/dist/iugu/entities/payment-token.entity.js +25 -0
  165. package/dist/iugu/enums/index.js +9 -0
  166. package/dist/iugu/enums/iugu-auto-advance.enum.js +10 -0
  167. package/dist/iugu/enums/iugu-bank.enum.js +222 -0
  168. package/dist/iugu/enums/iugu-status-invoice.enum.js +17 -0
  169. package/dist/iugu/index.js +20 -0
  170. package/dist/iugu/interfaces/i-account-configuration-bank-slip.js +2 -0
  171. package/dist/iugu/interfaces/i-account-configuration-creadit-card.js +2 -0
  172. package/dist/iugu/interfaces/i-account-configuration-pix.js +2 -0
  173. package/dist/iugu/interfaces/i-account-configuration.js +2 -0
  174. package/dist/iugu/interfaces/i-account-info-last-ver-req-data.js +2 -0
  175. package/dist/iugu/interfaces/i-account-informations.js +2 -0
  176. package/dist/iugu/interfaces/i-account-marketplace-split.js +2 -0
  177. package/dist/iugu/interfaces/i-account.js +2 -0
  178. package/dist/iugu/interfaces/i-change-plan-simulation.js +2 -0
  179. package/dist/iugu/interfaces/i-config-early-payment-discounts.js +2 -0
  180. package/dist/iugu/interfaces/i-customer.js +2 -0
  181. package/dist/iugu/interfaces/i-invoice.js +2 -0
  182. package/dist/iugu/interfaces/i-payment-token-data.js +2 -0
  183. package/dist/iugu/interfaces/i-payment-token.js +2 -0
  184. package/dist/iugu/interfaces/i-plan-feature.js +2 -0
  185. package/dist/iugu/interfaces/i-plan-price.js +2 -0
  186. package/dist/iugu/interfaces/i-plan.js +2 -0
  187. package/dist/iugu/interfaces/i-subscription-custom-variable.js +2 -0
  188. package/dist/iugu/interfaces/i-subscription-feature.js +2 -0
  189. package/dist/iugu/interfaces/i-subscription-features.js +2 -0
  190. package/dist/iugu/interfaces/i-subscription-log.js +2 -0
  191. package/dist/iugu/interfaces/i-subscription-recent-invoice.js +2 -0
  192. package/dist/iugu/interfaces/i-subscription-subitem.js +2 -0
  193. package/dist/iugu/interfaces/i-subscription.js +2 -0
  194. package/dist/iugu/interfaces/index.js +2 -0
  195. package/dist/iugu/responses/i-marketplace-list.js +2 -0
  196. package/dist/iugu/responses/i-marketplace-token.js +2 -0
  197. package/dist/iugu/responses/i-marketplace-tokens.js +2 -0
  198. package/dist/iugu/responses/index.js +2 -0
  199. package/dist/lead/entities/index.js +5 -0
  200. package/dist/lead/entities/lead.entity.js +57 -0
  201. package/dist/lead/enums/index.js +5 -0
  202. package/dist/lead/enums/lead-status.enum.js +18 -0
  203. package/dist/lead/index.js +19 -0
  204. package/dist/lead/interfaces/i-lead.js +2 -0
  205. package/dist/lead/interfaces/index.js +2 -0
  206. package/dist/member/entities/index.js +5 -0
  207. package/dist/member/entities/member.entity.js +51 -0
  208. package/dist/member/enums/index.js +7 -0
  209. package/dist/member/enums/member-rules.enum.js +14 -0
  210. package/dist/member/enums/member-type.enum.js +9 -0
  211. package/dist/member/index.js +19 -0
  212. package/dist/member/interfaces/i-member.js +2 -0
  213. package/dist/member/interfaces/index.js +2 -0
  214. package/dist/notification/entities/index.js +7 -0
  215. package/dist/notification/entities/notification-action.entity.js +24 -0
  216. package/dist/notification/entities/notification.entity.js +34 -0
  217. package/dist/notification/enums/action-type.enum.js +9 -0
  218. package/dist/notification/enums/category.enum.js +17 -0
  219. package/dist/notification/enums/index.js +11 -0
  220. package/dist/notification/enums/priority.enum.js +10 -0
  221. package/dist/notification/enums/status.enum.js +11 -0
  222. package/dist/notification/index.js +19 -0
  223. package/dist/notification/interfaces/i-notification-action.js +2 -0
  224. package/dist/notification/interfaces/i-notification.js +2 -0
  225. package/dist/notification/interfaces/index.js +2 -0
  226. package/dist/order/entities/additional-fees.entity.js +21 -0
  227. package/dist/order/entities/benefits.entity.js +25 -0
  228. package/dist/order/entities/cancellation.entity.js +22 -0
  229. package/dist/order/entities/customer-phone.entity.js +23 -0
  230. package/dist/order/entities/customer.entity.js +27 -0
  231. package/dist/order/entities/index.js +39 -0
  232. package/dist/order/entities/item-composition.entity.js +25 -0
  233. package/dist/order/entities/item-option.entity.js +34 -0
  234. package/dist/order/entities/item.entity.js +40 -0
  235. package/dist/order/entities/order.entity.js +38 -0
  236. package/dist/order/entities/payment-card.entity.js +20 -0
  237. package/dist/order/entities/payment-cash.entity.js +20 -0
  238. package/dist/order/entities/payment-method.entity.js +31 -0
  239. package/dist/order/entities/payment-pix.entity.js +21 -0
  240. package/dist/order/entities/payment-wallet.entity.js +20 -0
  241. package/dist/order/entities/payment.entity.js +22 -0
  242. package/dist/order/entities/scale-item.entity.js +21 -0
  243. package/dist/order/entities/scale-price.entity.js +21 -0
  244. package/dist/order/entities/total.entity.js +24 -0
  245. package/dist/order/enums/index.js +6 -0
  246. package/dist/order/enums/order-status.enum.js +42 -0
  247. package/dist/order/index.js +19 -0
  248. package/dist/order/interfaces/i-additional-fee.js +2 -0
  249. package/dist/order/interfaces/i-benefits.js +2 -0
  250. package/dist/order/interfaces/i-cancellation.js +2 -0
  251. package/dist/order/interfaces/i-customer-phone.js +2 -0
  252. package/dist/order/interfaces/i-customer.js +2 -0
  253. package/dist/order/interfaces/i-item-composition.js +2 -0
  254. package/dist/order/interfaces/i-item-option.js +2 -0
  255. package/dist/order/interfaces/i-item.js +2 -0
  256. package/dist/order/interfaces/i-order.js +2 -0
  257. package/dist/order/interfaces/i-payment-card.js +2 -0
  258. package/dist/order/interfaces/i-payment-cash.js +2 -0
  259. package/dist/order/interfaces/i-payment-method.js +2 -0
  260. package/dist/order/interfaces/i-payment-pix.js +2 -0
  261. package/dist/order/interfaces/i-payment-wallet.js +2 -0
  262. package/dist/order/interfaces/i-payment.js +2 -0
  263. package/dist/order/interfaces/i-scale-item.js +2 -0
  264. package/dist/order/interfaces/i-scale-price.js +2 -0
  265. package/dist/order/interfaces/i-total.js +2 -0
  266. package/dist/order/interfaces/index.js +2 -0
  267. package/dist/package.json +1 -1
  268. package/dist/partner/entities/index.js +5 -0
  269. package/dist/partner/entities/partner.entity.js +38 -0
  270. package/dist/partner/index.js +18 -0
  271. package/dist/partner/interfaces/i-partner.js +2 -0
  272. package/dist/partner/interfaces/index.js +2 -0
  273. package/dist/plan/entities/feature.entity.js +30 -0
  274. package/dist/plan/entities/index.js +7 -0
  275. package/dist/plan/entities/plan.entity.js +32 -0
  276. package/dist/plan/enums/index.js +7 -0
  277. package/dist/plan/enums/plans-feature-type.enum.js +8 -0
  278. package/dist/plan/enums/plans-identifier.enum.js +8 -0
  279. package/dist/plan/index.js +19 -0
  280. package/dist/plan/interfaces/i-feature.js +2 -0
  281. package/dist/plan/interfaces/i-plan.js +2 -0
  282. package/dist/plan/interfaces/index.js +2 -0
  283. package/dist/purchases/entities/app-info.entity.js +22 -0
  284. package/dist/purchases/entities/index.js +7 -0
  285. package/dist/purchases/entities/purchase.entity.js +44 -0
  286. package/dist/purchases/index.js +18 -0
  287. package/dist/purchases/interfaces/i-app-info.js +2 -0
  288. package/dist/purchases/interfaces/i-purchase.js +2 -0
  289. package/dist/purchases/interfaces/index.js +2 -0
  290. package/dist/resume/entities/index.js +17 -0
  291. package/dist/resume/entities/resume-collection.entity.js +23 -0
  292. package/dist/resume/entities/resume-day.entity.js +25 -0
  293. package/dist/resume/entities/resume-hour.entity.js +23 -0
  294. package/dist/resume/entities/resume-month.entity.js +25 -0
  295. package/dist/resume/entities/resume-total.entity.js +24 -0
  296. package/dist/resume/entities/resume-year.entity.js +24 -0
  297. package/dist/resume/entities/resume.entity.js +21 -0
  298. package/dist/resume/index.js +18 -0
  299. package/dist/resume/interfaces/i-resume-collection.js +2 -0
  300. package/dist/resume/interfaces/i-resume-day.js +2 -0
  301. package/dist/resume/interfaces/i-resume-hour.js +2 -0
  302. package/dist/resume/interfaces/i-resume-month.js +2 -0
  303. package/dist/resume/interfaces/i-resume-total.js +2 -0
  304. package/dist/resume/interfaces/i-resume-year.js +2 -0
  305. package/dist/resume/interfaces/i-resume.js +2 -0
  306. package/dist/resume/interfaces/index.js +2 -0
  307. package/dist/subscription/entities/index.js +11 -0
  308. package/dist/subscription/entities/subscription-company.entity.js +25 -0
  309. package/dist/subscription/entities/subscription-item.entity.js +24 -0
  310. package/dist/subscription/entities/subscription-log.entity.js +23 -0
  311. package/dist/subscription/entities/subscription.entity.js +49 -0
  312. package/dist/subscription/enums/index.js +5 -0
  313. package/dist/subscription/enums/subscription-status.enum.js +14 -0
  314. package/dist/subscription/index.js +19 -0
  315. package/dist/subscription/interfaces/i-subscription-company.js +2 -0
  316. package/dist/subscription/interfaces/i-subscription-item.js +2 -0
  317. package/dist/subscription/interfaces/i-subscription-log.js +2 -0
  318. package/dist/subscription/interfaces/i-subscription.js +2 -0
  319. package/dist/subscription/interfaces/index.js +2 -0
  320. package/dist/token/entities/index.js +5 -0
  321. package/dist/token/entities/token.entity.js +32 -0
  322. package/dist/token/index.js +18 -0
  323. package/dist/token/interfaces/i-token.js +2 -0
  324. package/dist/token/interfaces/index.js +2 -0
  325. package/dist/viacep/index.js +17 -0
  326. package/dist/viacep/interfaces/i-via-cep.js +2 -0
  327. package/dist/viacep/interfaces/index.js +2 -0
  328. package/dist/voucher/entities/index.js +5 -0
  329. package/dist/voucher/entities/voucher.entity.js +58 -0
  330. package/dist/voucher/enums/e-voucher-status.enum.js +11 -0
  331. package/dist/voucher/enums/index.js +5 -0
  332. package/dist/voucher/index.js +19 -0
  333. package/dist/voucher/interfaces/i-voucher.js +2 -0
  334. package/dist/voucher/interfaces/index.js +2 -0
  335. package/package.json +1 -1
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,17 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.InvoiceEntity = exports.InvoicePixEntity = exports.InvoicePayerEntity = exports.InvoiceLogEntity = exports.InvoiceItemEntity = exports.InvoiceCreditCardEntity = exports.InvoiceBankSlipEntity = void 0;
4
+ var invoice_bank_slip_entity_1 = require("./invoice-bank-slip.entity");
5
+ Object.defineProperty(exports, "InvoiceBankSlipEntity", { enumerable: true, get: function () { return invoice_bank_slip_entity_1.InvoiceBankSlipEntity; } });
6
+ var invoice_credit_card_entity_1 = require("./invoice-credit-card.entity");
7
+ Object.defineProperty(exports, "InvoiceCreditCardEntity", { enumerable: true, get: function () { return invoice_credit_card_entity_1.InvoiceCreditCardEntity; } });
8
+ var invoice_item_entity_1 = require("./invoice-item.entity");
9
+ Object.defineProperty(exports, "InvoiceItemEntity", { enumerable: true, get: function () { return invoice_item_entity_1.InvoiceItemEntity; } });
10
+ var invoice_log_entity_1 = require("./invoice-log.entity");
11
+ Object.defineProperty(exports, "InvoiceLogEntity", { enumerable: true, get: function () { return invoice_log_entity_1.InvoiceLogEntity; } });
12
+ var invoice_payer_entity_1 = require("./invoice-payer.entity");
13
+ Object.defineProperty(exports, "InvoicePayerEntity", { enumerable: true, get: function () { return invoice_payer_entity_1.InvoicePayerEntity; } });
14
+ var invoice_pix_entity_1 = require("./invoice-pix.entity");
15
+ Object.defineProperty(exports, "InvoicePixEntity", { enumerable: true, get: function () { return invoice_pix_entity_1.InvoicePixEntity; } });
16
+ var invoice_entity_1 = require("./invoice.entity");
17
+ Object.defineProperty(exports, "InvoiceEntity", { enumerable: true, get: function () { return invoice_entity_1.InvoiceEntity; } });
@@ -0,0 +1,27 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.InvoiceBankSlipEntity = void 0;
4
+ var general_1 = require("../../general");
5
+ var InvoiceBankSlipEntity = /** @class */ (function () {
6
+ // #endregion Properties (7)
7
+ // #region Constructors (1)
8
+ function InvoiceBankSlipEntity(data) {
9
+ // #region Properties (7)
10
+ this.bankSlipBank = 0;
11
+ this.bankSlipErrorCode = '';
12
+ this.bankSlipErrorMessage = '';
13
+ this.bankSlipStatus = general_1.EBankSlipStatus.PENDING;
14
+ this.barcode = '';
15
+ this.barcodeData = '';
16
+ this.digitableLine = '';
17
+ if (data) {
18
+ for (var key in data) {
19
+ if (data.hasOwnProperty(key) && key in this) {
20
+ this[key] = data[key];
21
+ }
22
+ }
23
+ }
24
+ }
25
+ return InvoiceBankSlipEntity;
26
+ }());
27
+ exports.InvoiceBankSlipEntity = InvoiceBankSlipEntity;
@@ -0,0 +1,25 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.InvoiceCreditCardEntity = void 0;
4
+ var InvoiceCreditCardEntity = /** @class */ (function () {
5
+ // #endregion Properties (6)
6
+ // #region Constructors (1)
7
+ function InvoiceCreditCardEntity(data) {
8
+ // #region Properties (6)
9
+ this.bin = '';
10
+ this.brand = '';
11
+ this.capturedAt = '';
12
+ this.last4 = '';
13
+ this.tid = '';
14
+ this.transaction = '';
15
+ if (data) {
16
+ for (var key in data) {
17
+ if (data.hasOwnProperty(key) && key in this) {
18
+ this[key] = data[key];
19
+ }
20
+ }
21
+ }
22
+ }
23
+ return InvoiceCreditCardEntity;
24
+ }());
25
+ exports.InvoiceCreditCardEntity = InvoiceCreditCardEntity;
@@ -0,0 +1,22 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.InvoiceItemEntity = void 0;
4
+ var InvoiceItemEntity = /** @class */ (function () {
5
+ // #endregion Properties (3)
6
+ // #region Constructors (1)
7
+ function InvoiceItemEntity(data) {
8
+ // #region Properties (3)
9
+ this.description = '';
10
+ this.quantity = 1;
11
+ this.unitPrice = 0;
12
+ if (data) {
13
+ for (var key in data) {
14
+ if (data.hasOwnProperty(key) && key in this) {
15
+ this[key] = data[key];
16
+ }
17
+ }
18
+ }
19
+ }
20
+ return InvoiceItemEntity;
21
+ }());
22
+ exports.InvoiceItemEntity = InvoiceItemEntity;
@@ -0,0 +1,23 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.InvoiceLogEntity = void 0;
4
+ var InvoiceLogEntity = /** @class */ (function () {
5
+ // #endregion Properties (4)
6
+ // #region Constructors (1)
7
+ function InvoiceLogEntity(data) {
8
+ // #region Properties (4)
9
+ this.createdAt = '';
10
+ this.description = '';
11
+ this.id = '';
12
+ this.notes = '';
13
+ if (data) {
14
+ for (var key in data) {
15
+ if (data.hasOwnProperty(key) && key in this) {
16
+ this[key] = data[key];
17
+ }
18
+ }
19
+ }
20
+ }
21
+ return InvoiceLogEntity;
22
+ }());
23
+ exports.InvoiceLogEntity = InvoiceLogEntity;
@@ -0,0 +1,26 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.InvoicePayerEntity = void 0;
4
+ var general_1 = require("../../general");
5
+ var InvoicePayerEntity = /** @class */ (function () {
6
+ // #endregion Properties (6)
7
+ // #region Constructors (1)
8
+ function InvoicePayerEntity(data) {
9
+ // #region Properties (6)
10
+ this.address = new general_1.AddressEntity();
11
+ this.doc = '';
12
+ this.docType = general_1.DocTypeEnum.CNPJ;
13
+ this.email = '';
14
+ this.name = '';
15
+ this.phoneNumber = null;
16
+ if (data) {
17
+ for (var key in data) {
18
+ if (data.hasOwnProperty(key) && key in this) {
19
+ this[key] = data[key];
20
+ }
21
+ }
22
+ }
23
+ }
24
+ return InvoicePayerEntity;
25
+ }());
26
+ exports.InvoicePayerEntity = InvoicePayerEntity;
@@ -0,0 +1,23 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.InvoicePixEntity = void 0;
4
+ var InvoicePixEntity = /** @class */ (function () {
5
+ // #endregion Properties (4)
6
+ // #region Constructors (1)
7
+ function InvoicePixEntity(data) {
8
+ // #region Properties (4)
9
+ this.qrCode = '';
10
+ this.qrCodeImage = '';
11
+ this.qrCodeText = '';
12
+ this.status = '';
13
+ if (data) {
14
+ for (var key in data) {
15
+ if (data.hasOwnProperty(key) && key in this) {
16
+ this[key] = data[key];
17
+ }
18
+ }
19
+ }
20
+ }
21
+ return InvoicePixEntity;
22
+ }());
23
+ exports.InvoicePixEntity = InvoicePixEntity;
@@ -0,0 +1,66 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.InvoiceEntity = void 0;
4
+ var general_1 = require("../../general");
5
+ var enums_1 = require("../enums");
6
+ var invoice_payer_entity_1 = require("./invoice-payer.entity");
7
+ var InvoiceEntity = /** @class */ (function () {
8
+ // #endregion Properties (44)
9
+ // #region Constructors (1)
10
+ function InvoiceEntity(data) {
11
+ // #region Properties (44)
12
+ this.addition = 0;
13
+ this.bankSlip = null;
14
+ this.bankSlipExtraDue = 3;
15
+ this.ccEmails = [];
16
+ this.companyId = '';
17
+ this.containerId = '';
18
+ this.createdAt = new Date();
19
+ this.creditCard = null;
20
+ this.currency = 'BRL';
21
+ this.discount = 0;
22
+ this.dueDateAt = new Date(Date.now() + 3 * 24 * 60 * 60 * 1000);
23
+ this.email = '';
24
+ this.ensureDueOnWorkday = true;
25
+ this.expiresIn = 3;
26
+ this.externalInvoiceId = '';
27
+ this.externalInvoiceUrl = '';
28
+ this.fineForlatePayment = 0;
29
+ this.id = '';
30
+ this.items = [];
31
+ this.log = [];
32
+ this.notes = '';
33
+ this.notificationUrl = '';
34
+ this.orderId = '';
35
+ this.paidAt = new Date();
36
+ this.partnerId = '';
37
+ this.password = null;
38
+ this.payer = new invoice_payer_entity_1.InvoicePayerEntity();
39
+ this.paymentMethod = general_1.PaymentTypeEnum.NONE;
40
+ this.paymentProvider = null;
41
+ this.phoneNumberNotification = null;
42
+ this.pix = null;
43
+ this.returnExpiredUrl = '';
44
+ this.returnUrl = '';
45
+ this.secureId = '';
46
+ this.secureUrl = '';
47
+ this.status = enums_1.EInvoiceStatus.PENDING;
48
+ this.subscriptionId = '';
49
+ this.subtotal = 0;
50
+ this.totalAmount = 0;
51
+ this.totalFee = 0;
52
+ this.totalOverPaid = 0;
53
+ this.totalPaid = 0;
54
+ this.totalRefunded = 0;
55
+ this.updatedAt = new Date();
56
+ if (data) {
57
+ for (var key in data) {
58
+ if (data.hasOwnProperty(key) && key in this) {
59
+ this[key] = data[key];
60
+ }
61
+ }
62
+ }
63
+ }
64
+ return InvoiceEntity;
65
+ }());
66
+ exports.InvoiceEntity = InvoiceEntity;
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.EInvoiceStatus = void 0;
4
+ var invoices_status_enum_1 = require("./invoices-status.enum");
5
+ Object.defineProperty(exports, "EInvoiceStatus", { enumerable: true, get: function () { return invoices_status_enum_1.EInvoiceStatus; } });
@@ -0,0 +1,17 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.EInvoiceStatus = void 0;
4
+ var EInvoiceStatus;
5
+ (function (EInvoiceStatus) {
6
+ EInvoiceStatus["PENDING"] = "PENDING";
7
+ EInvoiceStatus["PAID"] = "PAID";
8
+ EInvoiceStatus["CANCELED"] = "CANCELED";
9
+ EInvoiceStatus["IN_ANALYSIS"] = "IN_ANALYSIS";
10
+ EInvoiceStatus["DRAFT"] = "DRAFT";
11
+ EInvoiceStatus["PARTIALLY_PAID"] = "PARTIALLY_PAID";
12
+ EInvoiceStatus["REFUNDED"] = "REFUNDED";
13
+ EInvoiceStatus["EXPIRED"] = "EXPIRED";
14
+ EInvoiceStatus["IN_PROTEST"] = "IN_PROTEST";
15
+ EInvoiceStatus["CHARGEBACK"] = "CHARGEBACK";
16
+ EInvoiceStatus["EXTERNALLY_PAID"] = "EXTERNALLY_PAID";
17
+ })(EInvoiceStatus || (exports.EInvoiceStatus = EInvoiceStatus = {}));
@@ -0,0 +1,19 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
+ };
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("./entities"), exports);
18
+ __exportStar(require("./enums"), exports);
19
+ __exportStar(require("./interfaces"), exports);
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,21 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.AccountInformationsEntity = void 0;
4
+ var AccountInformationsEntity = /** @class */ (function () {
5
+ // #endregion Properties (2)
6
+ // #region Constructors (1)
7
+ function AccountInformationsEntity(data) {
8
+ // #region Properties (2)
9
+ this.key = '';
10
+ this.value = '';
11
+ if (data) {
12
+ for (var key in data) {
13
+ if (data.hasOwnProperty(key) && key in this) {
14
+ this[key] = data[key];
15
+ }
16
+ }
17
+ }
18
+ }
19
+ return AccountInformationsEntity;
20
+ }());
21
+ exports.AccountInformationsEntity = AccountInformationsEntity;
@@ -0,0 +1,40 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.LastVerificationRequestDataEntity = void 0;
4
+ var enums_1 = require("../../general/enums");
5
+ var person_type_enum_1 = require("../../general/enums/person-type.enum");
6
+ var LastVerificationRequestDataEntity = /** @class */ (function () {
7
+ // #endregion Properties (19)
8
+ // #region Constructors (1)
9
+ function LastVerificationRequestDataEntity(data) {
10
+ // #region Properties (19)
11
+ this.accountType = '';
12
+ this.address = '';
13
+ this.automaticTransfer = enums_1.BooleanStringEnum.FALSE;
14
+ this.bank = '';
15
+ this.bankAg = '';
16
+ this.bankCc = '';
17
+ this.businessType = '';
18
+ this.cep = '';
19
+ this.city = '';
20
+ this.cpf = '';
21
+ this.documentActivity = '';
22
+ this.documentCpf = '';
23
+ this.documentId = '';
24
+ this.name = '';
25
+ this.personType = person_type_enum_1.LegalEntiyEnum.LEGAL;
26
+ this.physicalProducts = enums_1.BooleanStringEnum.FALSE;
27
+ this.priceRange = '';
28
+ this.state = '';
29
+ this.telephone = '';
30
+ if (data) {
31
+ for (var key in data) {
32
+ if (data.hasOwnProperty(key) && key in this) {
33
+ this[key] = data[key];
34
+ }
35
+ }
36
+ }
37
+ }
38
+ return LastVerificationRequestDataEntity;
39
+ }());
40
+ exports.LastVerificationRequestDataEntity = LastVerificationRequestDataEntity;
@@ -0,0 +1,40 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.IuguCustomerEntity = void 0;
4
+ var IuguCustomerEntity = /** @class */ (function () {
5
+ // #endregion Properties (21)
6
+ // #region Constructors (1)
7
+ function IuguCustomerEntity(data) {
8
+ // #region Properties (21)
9
+ this.ccEmails = '';
10
+ this.city = '';
11
+ this.complement = '';
12
+ this.cpfCnpj = '';
13
+ this.createdAt = new Date();
14
+ this.customVariables = [];
15
+ this.defaultPaymentMethodId = '';
16
+ this.district = '';
17
+ this.email = '';
18
+ this.id = '';
19
+ this.name = '';
20
+ this.notes = '';
21
+ this.number = '';
22
+ this.paymentMethods = [];
23
+ this.phone = '';
24
+ this.phonePrefix = '';
25
+ this.proxyPaymentsFromCustomerId = '';
26
+ this.state = '';
27
+ this.street = '';
28
+ this.updatedAt = new Date();
29
+ this.zipCode = '';
30
+ if (data) {
31
+ for (var key in data) {
32
+ if (data.hasOwnProperty(key) && key in this) {
33
+ this[key] = data[key];
34
+ }
35
+ }
36
+ }
37
+ }
38
+ return IuguCustomerEntity;
39
+ }());
40
+ exports.IuguCustomerEntity = IuguCustomerEntity;
@@ -0,0 +1,17 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.IuguPaymentTokenEntity = exports.IuguPaymentTokenDataEntity = exports.IuguAccountEntity = exports.IuguInvoiceEntity = exports.IuguCustomerEntity = exports.IuguAccountLastVerificationRequestDataEntity = exports.AccountInformationsEntity = void 0;
4
+ var account_informations_entity_1 = require("./account-informations.entity");
5
+ Object.defineProperty(exports, "AccountInformationsEntity", { enumerable: true, get: function () { return account_informations_entity_1.AccountInformationsEntity; } });
6
+ var account_last_verification_request_data_entity_1 = require("./account-last-verification-request-data.entity");
7
+ Object.defineProperty(exports, "IuguAccountLastVerificationRequestDataEntity", { enumerable: true, get: function () { return account_last_verification_request_data_entity_1.LastVerificationRequestDataEntity; } });
8
+ var customer_entity_1 = require("./customer.entity");
9
+ Object.defineProperty(exports, "IuguCustomerEntity", { enumerable: true, get: function () { return customer_entity_1.IuguCustomerEntity; } });
10
+ var invoice_entity_1 = require("./invoice.entity");
11
+ Object.defineProperty(exports, "IuguInvoiceEntity", { enumerable: true, get: function () { return invoice_entity_1.IuguInvoiceEntity; } });
12
+ var iugu_account_entity_1 = require("./iugu-account.entity");
13
+ Object.defineProperty(exports, "IuguAccountEntity", { enumerable: true, get: function () { return iugu_account_entity_1.IuguAccountEntity; } });
14
+ var payment_token_data_entity_1 = require("./payment-token-data.entity");
15
+ Object.defineProperty(exports, "IuguPaymentTokenDataEntity", { enumerable: true, get: function () { return payment_token_data_entity_1.IuguPaymentTokenDataEntity; } });
16
+ var payment_token_entity_1 = require("./payment-token.entity");
17
+ Object.defineProperty(exports, "IuguPaymentTokenEntity", { enumerable: true, get: function () { return payment_token_entity_1.IuguPaymentTokenEntity; } });
@@ -0,0 +1,82 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.IuguInvoiceEntity = void 0;
4
+ var IuguInvoiceEntity = /** @class */ (function () {
5
+ // #endregion Properties (114)
6
+ // #region Constructors (1)
7
+ function IuguInvoiceEntity(data) {
8
+ // #region Properties (114)
9
+ this.accountId = "";
10
+ this.accountName = "";
11
+ this.bankAccountBranch = "";
12
+ this.bankAccountNumber = "";
13
+ this.bankSlip = {};
14
+ this.bankSlipExtraDue = 0;
15
+ this.commission = "";
16
+ this.createdAt = "";
17
+ this.createdAtIso = "";
18
+ this.creditCardTransaction = "";
19
+ this.currency = "";
20
+ this.customVariables = [];
21
+ this.discountCents = 0;
22
+ this.dueDate = "";
23
+ this.earlyPaymentDiscount = false;
24
+ this.earlyPaymentDiscounts = [];
25
+ this.email = "";
26
+ this.finesOnOccurrenceDay = "";
27
+ this.finesOnOccurrenceDayCents = 0;
28
+ this.id = "";
29
+ this.ignoreCanceledEmail = false;
30
+ this.ignoreDueEmail = false;
31
+ this.items = [];
32
+ this.itemsTotalCents = 0;
33
+ this.latePaymentFineCents = 0;
34
+ this.logs = [];
35
+ this.notificationUrl = "";
36
+ this.paid = "";
37
+ this.payableWith = "";
38
+ this.payerAddressCity = "";
39
+ this.payerAddressCountry = "";
40
+ this.payerAddressDistrict = "";
41
+ this.payerAddressNumber = "";
42
+ this.payerAddressState = "";
43
+ this.payerAddressStreet = "";
44
+ this.payerAddressZipCode = "";
45
+ this.payerCpfCnpj = "";
46
+ this.payerName = "";
47
+ this.payerPhone = "";
48
+ this.payerPhonePrefix = "";
49
+ this.perDayInterest = false;
50
+ this.perDayInterestCents = 0;
51
+ this.pix = {};
52
+ this.refundedCents = 0;
53
+ this.remainingCapturedCents = 0;
54
+ this.returnUrl = "";
55
+ this.secureId = "";
56
+ this.secureUrl = "";
57
+ this.status = "";
58
+ this.taxCents = 0;
59
+ this.taxesPaid = "";
60
+ this.total = "";
61
+ this.totalCents = 0;
62
+ this.totalOnOccurrenceDay = "";
63
+ this.totalOnOccurrenceDayCents = 0;
64
+ this.totalOverpaid = "";
65
+ this.totalPaid = "";
66
+ this.totalPaidCents = 0;
67
+ this.totalRefunded = "";
68
+ this.transactionNumber = 0;
69
+ this.updatedAt = "";
70
+ this.userId = "";
71
+ this.variables = [];
72
+ if (data) {
73
+ for (var key in data) {
74
+ if (data.hasOwnProperty(key) && key in this) {
75
+ this[key] = data[key];
76
+ }
77
+ }
78
+ }
79
+ }
80
+ return IuguInvoiceEntity;
81
+ }());
82
+ exports.IuguInvoiceEntity = IuguInvoiceEntity;
@@ -0,0 +1,75 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.IuguAccountEntity = void 0;
4
+ var enums_1 = require("../enums");
5
+ var account_last_verification_request_data_entity_1 = require("./account-last-verification-request-data.entity");
6
+ var IuguAccountEntity = /** @class */ (function () {
7
+ // #endregion Properties (54)
8
+ // #region Constructors (1)
9
+ function IuguAccountEntity(data) {
10
+ // #region Properties (54)
11
+ this.autoAdvance = false;
12
+ this.autoAdvanceOption = 0;
13
+ this.autoAdvanceType = enums_1.IuguAutoAdvanceEnum.DAILY;
14
+ this.autoWithdraw = false;
15
+ this.balance = '';
16
+ this.balanceAvailableForWithdraw = '';
17
+ this.balanceInProtest = '';
18
+ this.canReceive = false;
19
+ this.changePlanType = 0;
20
+ this.commissionBalance = '';
21
+ this.configuration = null;
22
+ this.createdAt = new Date();
23
+ this.creditCardVerified = false;
24
+ this.customLogoSmallUrl = '';
25
+ this.customLogoUrl = '';
26
+ this.defaultReturnUrl = '';
27
+ this.disableEmails = false;
28
+ this.disabledWithdraw = false;
29
+ this.earlyPaymentDiscount = false;
30
+ this.earlyPaymentDiscountDays = 0;
31
+ this.earlyPaymentDiscountPercent = 0;
32
+ this.earlyPaymentDiscounts = [];
33
+ this.fines = false;
34
+ this.hasBankAddress = false;
35
+ this.id = '';
36
+ this.informations = [];
37
+ this.isVerified = false;
38
+ this.lastVerificationRequestData = new account_last_verification_request_data_entity_1.LastVerificationRequestDataEntity();
39
+ this.lastVerificationRequestFeedback = '';
40
+ this.lastVerificationRequestStatus = 'accepted';
41
+ this.lastWithdraw = new Date();
42
+ this.latePaymentFine = 0;
43
+ this.marketplace = false;
44
+ this.name = '';
45
+ this.oldAdvancement = false;
46
+ this.payableBalance = '';
47
+ this.paymentEmailNotification = false;
48
+ this.paymentEmailNotificationReceiver = '';
49
+ this.perDayInterest = false;
50
+ this.permissions = [];
51
+ this.protectedBalance = '';
52
+ this.receivableBalance = '';
53
+ this.replyTo = '';
54
+ this.splits = [];
55
+ this.subscriptionsBillingDays = 0;
56
+ this.subscriptionsTrialPeriod = 0;
57
+ this.taxesPaidLastMonth = '';
58
+ this.taxesPaidThisMonth = '';
59
+ this.totalActiveSubscriptions = 0;
60
+ this.totalSubscriptions = 0;
61
+ this.updatedAt = new Date();
62
+ this.volumeLastMonth = '';
63
+ this.volumeThisMonth = '';
64
+ this.webappOnTestMode = false;
65
+ if (data) {
66
+ for (var key in data) {
67
+ if (data.hasOwnProperty(key) && key in this) {
68
+ this[key] = data[key];
69
+ }
70
+ }
71
+ }
72
+ }
73
+ return IuguAccountEntity;
74
+ }());
75
+ exports.IuguAccountEntity = IuguAccountEntity;
@@ -0,0 +1,28 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.IuguPaymentTokenDataEntity = void 0;
4
+ var IuguPaymentTokenDataEntity = /** @class */ (function () {
5
+ // #endregion Properties (9)
6
+ // #region Constructors (1)
7
+ function IuguPaymentTokenDataEntity(data) {
8
+ // #region Properties (9)
9
+ this.bin = '';
10
+ this.brand = '';
11
+ this.displayNumber = '';
12
+ this.firstDigits = '';
13
+ this.holderName = '';
14
+ this.lastDigits = '';
15
+ this.maskedNumber = '';
16
+ this.month = 0;
17
+ this.year = 2035;
18
+ if (data) {
19
+ for (var key in data) {
20
+ if (data.hasOwnProperty(key) && key in this) {
21
+ this[key] = data[key];
22
+ }
23
+ }
24
+ }
25
+ }
26
+ return IuguPaymentTokenDataEntity;
27
+ }());
28
+ exports.IuguPaymentTokenDataEntity = IuguPaymentTokenDataEntity;