@infrab4a/connect 3.14.2 → 3.14.3-beta.1

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 (660) hide show
  1. package/README.md +24 -24
  2. package/bundles/infrab4a-connect.umd.js +6106 -6056
  3. package/bundles/infrab4a-connect.umd.js.map +1 -1
  4. package/domain/catalog/helpers/index.d.ts +1 -1
  5. package/domain/catalog/helpers/round-product-price.helper.d.ts +4 -4
  6. package/domain/catalog/index.d.ts +3 -3
  7. package/domain/catalog/models/category-collection-children.d.ts +13 -13
  8. package/domain/catalog/models/category-filter.d.ts +13 -11
  9. package/domain/catalog/models/category.d.ts +31 -29
  10. package/domain/catalog/models/enums/index.d.ts +2 -2
  11. package/domain/catalog/models/enums/product-genders.enum.d.ts +5 -5
  12. package/domain/catalog/models/enums/shops.enum.d.ts +6 -6
  13. package/domain/catalog/models/filter-option.d.ts +9 -9
  14. package/domain/catalog/models/filter.d.ts +12 -12
  15. package/domain/catalog/models/index.d.ts +10 -10
  16. package/domain/catalog/models/kit-product.d.ts +12 -12
  17. package/domain/catalog/models/product.d.ts +44 -44
  18. package/domain/catalog/models/types/category-condition.type.d.ts +4 -4
  19. package/domain/catalog/models/types/category-metadata.type.d.ts +4 -4
  20. package/domain/catalog/models/types/category-product.d.ts +4 -4
  21. package/domain/catalog/models/types/index.d.ts +11 -11
  22. package/domain/catalog/models/types/product-evaluation.type.d.ts +6 -6
  23. package/domain/catalog/models/types/product-gender.type.d.ts +1 -1
  24. package/domain/catalog/models/types/product-metadata.type.d.ts +4 -4
  25. package/domain/catalog/models/types/product-review.type.d.ts +17 -17
  26. package/domain/catalog/models/types/shop-description.type.d.ts +8 -8
  27. package/domain/catalog/models/types/shop-price.type.d.ts +6 -6
  28. package/domain/catalog/models/types/stock.type.d.ts +3 -3
  29. package/domain/catalog/models/types/variant-grade.type.d.ts +4 -4
  30. package/domain/catalog/models/variant.d.ts +17 -17
  31. package/domain/catalog/repositories/category-collection-children.repository.d.ts +4 -4
  32. package/domain/catalog/repositories/category-filter.repository.d.ts +5 -5
  33. package/domain/catalog/repositories/category.repository.d.ts +18 -18
  34. package/domain/catalog/repositories/filter-option.repository.d.ts +4 -4
  35. package/domain/catalog/repositories/filter.repository.d.ts +4 -4
  36. package/domain/catalog/repositories/index.d.ts +8 -8
  37. package/domain/catalog/repositories/product.repository.d.ts +15 -15
  38. package/domain/catalog/repositories/subscription-product.repository.d.ts +4 -4
  39. package/domain/catalog/repositories/variant.repository.d.ts +4 -4
  40. package/domain/generic/index.d.ts +2 -2
  41. package/domain/generic/model/base.model.d.ts +14 -14
  42. package/domain/generic/model/identifier-fields.d.ts +4 -4
  43. package/domain/generic/model/index.d.ts +3 -3
  44. package/domain/generic/model/types/base-model-builder.type.d.ts +17 -17
  45. package/domain/generic/model/types/identifier-model.type.d.ts +8 -8
  46. package/domain/generic/model/types/index.d.ts +5 -5
  47. package/domain/generic/model/types/model-base-structure.type.d.ts +12 -12
  48. package/domain/generic/model/types/non-function-properties.type.d.ts +12 -12
  49. package/domain/generic/model/types/non-function-property-name.type.d.ts +13 -13
  50. package/domain/generic/repository/create.repository.d.ts +8 -8
  51. package/domain/generic/repository/crud.repository.d.ts +19 -19
  52. package/domain/generic/repository/delete.repository.d.ts +7 -7
  53. package/domain/generic/repository/enums/index.d.ts +2 -2
  54. package/domain/generic/repository/enums/update-option-actions.enum.d.ts +7 -7
  55. package/domain/generic/repository/enums/where.enum.d.ts +14 -14
  56. package/domain/generic/repository/find.repository.d.ts +16 -16
  57. package/domain/generic/repository/get.repository.d.ts +5 -5
  58. package/domain/generic/repository/index.d.ts +9 -9
  59. package/domain/generic/repository/read.repository.d.ts +14 -14
  60. package/domain/generic/repository/types/index.d.ts +6 -6
  61. package/domain/generic/repository/types/repository-find-filters.type.d.ts +13 -13
  62. package/domain/generic/repository/types/repository-find-result.type.d.ts +11 -11
  63. package/domain/generic/repository/types/repository-limit-options.type.d.ts +4 -4
  64. package/domain/generic/repository/types/repository-order-by-list.type.d.ts +5 -5
  65. package/domain/generic/repository/types/repository-update-params.type.d.ts +11 -11
  66. package/domain/generic/repository/types/where-options.type.d.ts +2 -2
  67. package/domain/generic/repository/update.repository.d.ts +6 -6
  68. package/domain/index.d.ts +6 -6
  69. package/domain/location/index.d.ts +1 -1
  70. package/domain/location/models/address.d.ts +24 -24
  71. package/domain/location/models/index.d.ts +2 -2
  72. package/domain/location/models/types/index.d.ts +3 -3
  73. package/domain/location/models/types/location-bound.type.d.ts +6 -6
  74. package/domain/location/models/types/location-geometry.type.d.ts +7 -7
  75. package/domain/location/models/types/location-lat-lng.type.d.ts +4 -4
  76. package/domain/shop-settings/enums/filter-type.enum.d.ts +19 -19
  77. package/domain/shop-settings/enums/index.d.ts +2 -2
  78. package/domain/shop-settings/enums/questions-filters.enum.d.ts +19 -19
  79. package/domain/shop-settings/helpers/beauty-questions.helper.d.ts +9 -9
  80. package/domain/shop-settings/helpers/index.d.ts +1 -1
  81. package/domain/shop-settings/index.d.ts +4 -4
  82. package/domain/shop-settings/models/home.d.ts +18 -18
  83. package/domain/shop-settings/models/index.d.ts +4 -4
  84. package/domain/shop-settings/models/shop-menu.d.ts +7 -7
  85. package/domain/shop-settings/models/shop-settings.d.ts +9 -9
  86. package/domain/shop-settings/models/types/banner.type.d.ts +6 -6
  87. package/domain/shop-settings/models/types/benefit.type.d.ts +5 -5
  88. package/domain/shop-settings/models/types/home-data.type.d.ts +15 -15
  89. package/domain/shop-settings/models/types/index.d.ts +10 -10
  90. package/domain/shop-settings/models/types/menu-nav.type.d.ts +8 -8
  91. package/domain/shop-settings/models/types/shop-banner.type.d.ts +12 -12
  92. package/domain/shop-settings/models/types/shop-brands.type.d.ts +10 -10
  93. package/domain/shop-settings/models/types/shop-carousel.type.d.ts +5 -5
  94. package/domain/shop-settings/models/types/shop-collection.type.d.ts +9 -9
  95. package/domain/shop-settings/models/types/shop-section.type.d.ts +9 -9
  96. package/domain/shop-settings/models/types/sub-menu.type.d.ts +8 -8
  97. package/domain/shop-settings/repositories/home.repository.d.ts +4 -4
  98. package/domain/shop-settings/repositories/index.d.ts +3 -3
  99. package/domain/shop-settings/repositories/shop-menu.repository.d.ts +4 -4
  100. package/domain/shop-settings/repositories/shop-settings.repository.d.ts +4 -4
  101. package/domain/shopping/index.d.ts +2 -2
  102. package/domain/shopping/models/buy-2-win.d.ts +18 -18
  103. package/domain/shopping/models/campaign-dashboard.d.ts +15 -15
  104. package/domain/shopping/models/campaign-hashtag.d.ts +18 -18
  105. package/domain/shopping/models/checkout.d.ts +26 -26
  106. package/domain/shopping/models/coupons/coupon.d.ts +60 -60
  107. package/domain/shopping/models/coupons/enums/coupon-club-mens.enum.d.ts +5 -5
  108. package/domain/shopping/models/coupons/enums/coupon-subtypes.enum.d.ts +4 -4
  109. package/domain/shopping/models/coupons/enums/coupon-types.enum.d.ts +4 -4
  110. package/domain/shopping/models/coupons/enums/exclusivities.enum.d.ts +8 -8
  111. package/domain/shopping/models/coupons/enums/index.d.ts +3 -3
  112. package/domain/shopping/models/coupons/index.d.ts +2 -2
  113. package/domain/shopping/models/enums/checkout-types.enum.d.ts +5 -5
  114. package/domain/shopping/models/enums/index.d.ts +2 -2
  115. package/domain/shopping/models/enums/order-status.enum.d.ts +10 -10
  116. package/domain/shopping/models/index.d.ts +12 -12
  117. package/domain/shopping/models/line-item.d.ts +8 -8
  118. package/domain/shopping/models/order.d.ts +10 -10
  119. package/domain/shopping/models/payment.d.ts +67 -67
  120. package/domain/shopping/models/shipping-method.d.ts +17 -17
  121. package/domain/shopping/models/subscription/checkout.d.ts +20 -20
  122. package/domain/shopping/models/subscription/index.d.ts +2 -2
  123. package/domain/shopping/models/subscription/plan.d.ts +10 -10
  124. package/domain/shopping/models/types/index.d.ts +7 -7
  125. package/domain/shopping/models/types/payment-address.type.d.ts +12 -12
  126. package/domain/shopping/models/types/payment-billing.type.d.ts +7 -7
  127. package/domain/shopping/models/types/payment-card.type.d.ts +14 -14
  128. package/domain/shopping/models/types/payment-customer.type.d.ts +18 -18
  129. package/domain/shopping/models/types/payment-document.type.d.ts +6 -6
  130. package/domain/shopping/models/types/payment-item.type.d.ts +11 -11
  131. package/domain/shopping/models/types/payment-shipping.type.d.ts +10 -10
  132. package/domain/shopping/repositories/buy-2-win.repository.d.ts +4 -4
  133. package/domain/shopping/repositories/campaign-dashboard.repository.d.ts +4 -4
  134. package/domain/shopping/repositories/campaign-hashtag.repository.d.ts +4 -4
  135. package/domain/shopping/repositories/checkout.repository.d.ts +4 -4
  136. package/domain/shopping/repositories/coupon.repository.d.ts +4 -4
  137. package/domain/shopping/repositories/index.d.ts +9 -9
  138. package/domain/shopping/repositories/legacy-order.repository.d.ts +3 -3
  139. package/domain/shopping/repositories/order.repository.d.ts +4 -4
  140. package/domain/shopping/repositories/payment.repository.d.ts +4 -4
  141. package/domain/shopping/repositories/subscription/checkout.repository.d.ts +4 -4
  142. package/domain/shopping/repositories/subscription/index.d.ts +2 -2
  143. package/domain/shopping/repositories/subscription/plan.repository.d.ts +4 -4
  144. package/domain/users/errors/index.d.ts +3 -3
  145. package/domain/users/errors/unauthorized.error.d.ts +5 -5
  146. package/domain/users/errors/user-already-registered.error.d.ts +5 -5
  147. package/domain/users/errors/weak-password.error.d.ts +5 -5
  148. package/domain/users/index.d.ts +5 -5
  149. package/domain/users/models/beauty-profile.d.ts +11 -11
  150. package/domain/users/models/enums/accessory-importances.enum.d.ts +5 -5
  151. package/domain/users/models/enums/area.enum.d.ts +11 -11
  152. package/domain/users/models/enums/beard-problems.enum.d.ts +9 -9
  153. package/domain/users/models/enums/beard-sizes.enum.d.ts +7 -7
  154. package/domain/users/models/enums/beauty-product-importances.enum.d.ts +6 -6
  155. package/domain/users/models/enums/body-problems.enum.d.ts +11 -11
  156. package/domain/users/models/enums/body-shapes.enum.d.ts +7 -7
  157. package/domain/users/models/enums/body-tattoos.enum.d.ts +5 -5
  158. package/domain/users/models/enums/face-skin-oilinesses.enum.d.ts +7 -7
  159. package/domain/users/models/enums/face-skin-problems.enum.d.ts +10 -10
  160. package/domain/users/models/enums/face-skin-tones.enum.d.ts +8 -8
  161. package/domain/users/models/enums/family-incomes.enum.d.ts +8 -8
  162. package/domain/users/models/enums/fragrance-importances.enum.d.ts +5 -5
  163. package/domain/users/models/enums/hair-colors.enum.d.ts +10 -10
  164. package/domain/users/models/enums/hair-problems.enum.d.ts +10 -10
  165. package/domain/users/models/enums/hair-strands.enum.d.ts +8 -8
  166. package/domain/users/models/enums/hair-types.enum.d.ts +7 -7
  167. package/domain/users/models/enums/index.d.ts +20 -20
  168. package/domain/users/models/enums/office-position.enum.d.ts +6 -6
  169. package/domain/users/models/enums/product-spents.enum.d.ts +8 -8
  170. package/domain/users/models/enums/user-type.enum.d.ts +8 -8
  171. package/domain/users/models/index.d.ts +7 -7
  172. package/domain/users/models/lead.d.ts +8 -8
  173. package/domain/users/models/subscription/edition.d.ts +16 -16
  174. package/domain/users/models/subscription/enums/billing-status.enum.d.ts +3 -3
  175. package/domain/users/models/subscription/enums/edition-status.enum.d.ts +4 -4
  176. package/domain/users/models/subscription/enums/index.d.ts +4 -4
  177. package/domain/users/models/subscription/enums/payment-type.enum.d.ts +5 -5
  178. package/domain/users/models/subscription/enums/status.enum.d.ts +4 -4
  179. package/domain/users/models/subscription/index.d.ts +4 -4
  180. package/domain/users/models/subscription/payment.d.ts +13 -13
  181. package/domain/users/models/subscription/subscription.d.ts +28 -28
  182. package/domain/users/models/user-address.d.ts +7 -7
  183. package/domain/users/models/user-payment-method.d.ts +14 -14
  184. package/domain/users/models/user.d.ts +27 -27
  185. package/domain/users/repositories/beauty-profile.repository.d.ts +4 -4
  186. package/domain/users/repositories/edition.repository.d.ts +4 -4
  187. package/domain/users/repositories/index.d.ts +8 -8
  188. package/domain/users/repositories/lead.repository.d.ts +4 -4
  189. package/domain/users/repositories/subscription-payment.repository.d.ts +4 -4
  190. package/domain/users/repositories/subscription.repository.d.ts +4 -4
  191. package/domain/users/repositories/user-address.repository.d.ts +4 -4
  192. package/domain/users/repositories/user-payment-method.repository.d.ts +4 -4
  193. package/domain/users/repositories/user.repository.d.ts +6 -6
  194. package/domain/users/services/authentication.service.d.ts +12 -12
  195. package/domain/users/services/index.d.ts +3 -3
  196. package/domain/users/services/register.service.d.ts +7 -7
  197. package/domain/users/services/types/basic-user-data.type.d.ts +4 -4
  198. package/domain/users/services/types/index.d.ts +1 -1
  199. package/domain/users/use-cases/authentication.d.ts +21 -21
  200. package/domain/users/use-cases/index.d.ts +4 -4
  201. package/domain/users/use-cases/recovery-password.d.ts +6 -6
  202. package/domain/users/use-cases/register.d.ts +13 -13
  203. package/domain/users/use-cases/signout.d.ts +6 -6
  204. package/errors/duplicated-results.error.d.ts +5 -5
  205. package/errors/index.d.ts +4 -4
  206. package/errors/invalid-argument.error.d.ts +5 -5
  207. package/errors/not-found.error.d.ts +5 -5
  208. package/errors/required-argument.error.d.ts +6 -6
  209. package/esm2015/domain/catalog/helpers/index.js +2 -2
  210. package/esm2015/domain/catalog/helpers/round-product-price.helper.js +15 -15
  211. package/esm2015/domain/catalog/index.js +4 -4
  212. package/esm2015/domain/catalog/models/category-collection-children.js +13 -13
  213. package/esm2015/domain/catalog/models/category-filter.js +19 -14
  214. package/esm2015/domain/catalog/models/category.js +23 -18
  215. package/esm2015/domain/catalog/models/enums/index.js +3 -3
  216. package/esm2015/domain/catalog/models/enums/product-genders.enum.js +7 -7
  217. package/esm2015/domain/catalog/models/enums/shops.enum.js +8 -8
  218. package/esm2015/domain/catalog/models/filter-option.js +7 -7
  219. package/esm2015/domain/catalog/models/filter.js +7 -7
  220. package/esm2015/domain/catalog/models/index.js +11 -11
  221. package/esm2015/domain/catalog/models/kit-product.js +18 -18
  222. package/esm2015/domain/catalog/models/product.js +37 -37
  223. package/esm2015/domain/catalog/models/types/category-condition.type.js +2 -2
  224. package/esm2015/domain/catalog/models/types/category-metadata.type.js +2 -2
  225. package/esm2015/domain/catalog/models/types/category-product.js +2 -2
  226. package/esm2015/domain/catalog/models/types/index.js +12 -12
  227. package/esm2015/domain/catalog/models/types/product-evaluation.type.js +2 -2
  228. package/esm2015/domain/catalog/models/types/product-gender.type.js +2 -2
  229. package/esm2015/domain/catalog/models/types/product-metadata.type.js +2 -2
  230. package/esm2015/domain/catalog/models/types/product-review.type.js +2 -2
  231. package/esm2015/domain/catalog/models/types/shop-description.type.js +2 -2
  232. package/esm2015/domain/catalog/models/types/shop-price.type.js +2 -2
  233. package/esm2015/domain/catalog/models/types/stock.type.js +2 -2
  234. package/esm2015/domain/catalog/models/types/variant-grade.type.js +2 -2
  235. package/esm2015/domain/catalog/models/variant.js +7 -7
  236. package/esm2015/domain/catalog/repositories/category-collection-children.repository.js +2 -2
  237. package/esm2015/domain/catalog/repositories/category-filter.repository.js +2 -2
  238. package/esm2015/domain/catalog/repositories/category.repository.js +2 -2
  239. package/esm2015/domain/catalog/repositories/filter-option.repository.js +2 -2
  240. package/esm2015/domain/catalog/repositories/filter.repository.js +2 -2
  241. package/esm2015/domain/catalog/repositories/index.js +9 -9
  242. package/esm2015/domain/catalog/repositories/product.repository.js +2 -2
  243. package/esm2015/domain/catalog/repositories/subscription-product.repository.js +2 -2
  244. package/esm2015/domain/catalog/repositories/variant.repository.js +2 -2
  245. package/esm2015/domain/generic/index.js +3 -3
  246. package/esm2015/domain/generic/model/base.model.js +24 -24
  247. package/esm2015/domain/generic/model/identifier-fields.js +2 -2
  248. package/esm2015/domain/generic/model/index.js +4 -4
  249. package/esm2015/domain/generic/model/types/base-model-builder.type.js +2 -2
  250. package/esm2015/domain/generic/model/types/identifier-model.type.js +2 -2
  251. package/esm2015/domain/generic/model/types/index.js +6 -6
  252. package/esm2015/domain/generic/model/types/model-base-structure.type.js +2 -2
  253. package/esm2015/domain/generic/model/types/non-function-properties.type.js +2 -2
  254. package/esm2015/domain/generic/model/types/non-function-property-name.type.js +2 -2
  255. package/esm2015/domain/generic/repository/create.repository.js +2 -2
  256. package/esm2015/domain/generic/repository/crud.repository.js +2 -2
  257. package/esm2015/domain/generic/repository/delete.repository.js +2 -2
  258. package/esm2015/domain/generic/repository/enums/index.js +3 -3
  259. package/esm2015/domain/generic/repository/enums/update-option-actions.enum.js +9 -9
  260. package/esm2015/domain/generic/repository/enums/where.enum.js +16 -16
  261. package/esm2015/domain/generic/repository/find.repository.js +2 -2
  262. package/esm2015/domain/generic/repository/get.repository.js +2 -2
  263. package/esm2015/domain/generic/repository/index.js +10 -10
  264. package/esm2015/domain/generic/repository/read.repository.js +2 -2
  265. package/esm2015/domain/generic/repository/types/index.js +7 -7
  266. package/esm2015/domain/generic/repository/types/repository-find-filters.type.js +2 -2
  267. package/esm2015/domain/generic/repository/types/repository-find-result.type.js +2 -2
  268. package/esm2015/domain/generic/repository/types/repository-limit-options.type.js +2 -2
  269. package/esm2015/domain/generic/repository/types/repository-order-by-list.type.js +2 -2
  270. package/esm2015/domain/generic/repository/types/repository-update-params.type.js +2 -2
  271. package/esm2015/domain/generic/repository/types/where-options.type.js +2 -2
  272. package/esm2015/domain/generic/repository/update.repository.js +2 -2
  273. package/esm2015/domain/index.js +7 -7
  274. package/esm2015/domain/location/index.js +2 -2
  275. package/esm2015/domain/location/models/address.js +7 -7
  276. package/esm2015/domain/location/models/index.js +3 -3
  277. package/esm2015/domain/location/models/types/index.js +4 -4
  278. package/esm2015/domain/location/models/types/location-bound.type.js +2 -2
  279. package/esm2015/domain/location/models/types/location-geometry.type.js +2 -2
  280. package/esm2015/domain/location/models/types/location-lat-lng.type.js +2 -2
  281. package/esm2015/domain/shop-settings/enums/filter-type.enum.js +21 -21
  282. package/esm2015/domain/shop-settings/enums/index.js +3 -3
  283. package/esm2015/domain/shop-settings/enums/questions-filters.enum.js +21 -21
  284. package/esm2015/domain/shop-settings/helpers/beauty-questions.helper.js +46 -46
  285. package/esm2015/domain/shop-settings/helpers/index.js +2 -2
  286. package/esm2015/domain/shop-settings/index.js +5 -5
  287. package/esm2015/domain/shop-settings/models/home.js +7 -7
  288. package/esm2015/domain/shop-settings/models/index.js +5 -5
  289. package/esm2015/domain/shop-settings/models/shop-menu.js +7 -7
  290. package/esm2015/domain/shop-settings/models/shop-settings.js +7 -7
  291. package/esm2015/domain/shop-settings/models/types/banner.type.js +2 -2
  292. package/esm2015/domain/shop-settings/models/types/benefit.type.js +2 -2
  293. package/esm2015/domain/shop-settings/models/types/home-data.type.js +2 -2
  294. package/esm2015/domain/shop-settings/models/types/index.js +11 -11
  295. package/esm2015/domain/shop-settings/models/types/menu-nav.type.js +2 -2
  296. package/esm2015/domain/shop-settings/models/types/shop-banner.type.js +2 -2
  297. package/esm2015/domain/shop-settings/models/types/shop-brands.type.js +2 -2
  298. package/esm2015/domain/shop-settings/models/types/shop-carousel.type.js +2 -2
  299. package/esm2015/domain/shop-settings/models/types/shop-collection.type.js +2 -2
  300. package/esm2015/domain/shop-settings/models/types/shop-section.type.js +2 -2
  301. package/esm2015/domain/shop-settings/models/types/sub-menu.type.js +2 -2
  302. package/esm2015/domain/shop-settings/repositories/home.repository.js +2 -2
  303. package/esm2015/domain/shop-settings/repositories/index.js +4 -4
  304. package/esm2015/domain/shop-settings/repositories/shop-menu.repository.js +2 -2
  305. package/esm2015/domain/shop-settings/repositories/shop-settings.repository.js +2 -2
  306. package/esm2015/domain/shopping/index.js +3 -3
  307. package/esm2015/domain/shopping/models/buy-2-win.js +14 -14
  308. package/esm2015/domain/shopping/models/campaign-dashboard.js +7 -7
  309. package/esm2015/domain/shopping/models/campaign-hashtag.js +7 -7
  310. package/esm2015/domain/shopping/models/checkout.js +37 -37
  311. package/esm2015/domain/shopping/models/coupons/coupon.js +38 -38
  312. package/esm2015/domain/shopping/models/coupons/enums/coupon-club-mens.enum.js +7 -7
  313. package/esm2015/domain/shopping/models/coupons/enums/coupon-subtypes.enum.js +6 -6
  314. package/esm2015/domain/shopping/models/coupons/enums/coupon-types.enum.js +10 -10
  315. package/esm2015/domain/shopping/models/coupons/enums/exclusivities.enum.js +10 -10
  316. package/esm2015/domain/shopping/models/coupons/enums/index.js +4 -4
  317. package/esm2015/domain/shopping/models/coupons/index.js +3 -3
  318. package/esm2015/domain/shopping/models/enums/checkout-types.enum.js +7 -7
  319. package/esm2015/domain/shopping/models/enums/index.js +3 -3
  320. package/esm2015/domain/shopping/models/enums/order-status.enum.js +12 -12
  321. package/esm2015/domain/shopping/models/index.js +13 -13
  322. package/esm2015/domain/shopping/models/line-item.js +4 -4
  323. package/esm2015/domain/shopping/models/order.js +11 -11
  324. package/esm2015/domain/shopping/models/payment.js +169 -169
  325. package/esm2015/domain/shopping/models/shipping-method.js +7 -7
  326. package/esm2015/domain/shopping/models/subscription/checkout.js +28 -28
  327. package/esm2015/domain/shopping/models/subscription/index.js +3 -3
  328. package/esm2015/domain/shopping/models/subscription/plan.js +7 -7
  329. package/esm2015/domain/shopping/models/types/index.js +8 -8
  330. package/esm2015/domain/shopping/models/types/payment-address.type.js +2 -2
  331. package/esm2015/domain/shopping/models/types/payment-billing.type.js +2 -2
  332. package/esm2015/domain/shopping/models/types/payment-card.type.js +2 -2
  333. package/esm2015/domain/shopping/models/types/payment-customer.type.js +2 -2
  334. package/esm2015/domain/shopping/models/types/payment-document.type.js +2 -2
  335. package/esm2015/domain/shopping/models/types/payment-item.type.js +2 -2
  336. package/esm2015/domain/shopping/models/types/payment-shipping.type.js +2 -2
  337. package/esm2015/domain/shopping/repositories/buy-2-win.repository.js +2 -2
  338. package/esm2015/domain/shopping/repositories/campaign-dashboard.repository.js +2 -2
  339. package/esm2015/domain/shopping/repositories/campaign-hashtag.repository.js +2 -2
  340. package/esm2015/domain/shopping/repositories/checkout.repository.js +2 -2
  341. package/esm2015/domain/shopping/repositories/coupon.repository.js +2 -2
  342. package/esm2015/domain/shopping/repositories/index.js +10 -10
  343. package/esm2015/domain/shopping/repositories/legacy-order.repository.js +2 -2
  344. package/esm2015/domain/shopping/repositories/order.repository.js +2 -2
  345. package/esm2015/domain/shopping/repositories/payment.repository.js +2 -2
  346. package/esm2015/domain/shopping/repositories/subscription/checkout.repository.js +2 -2
  347. package/esm2015/domain/shopping/repositories/subscription/index.js +3 -3
  348. package/esm2015/domain/shopping/repositories/subscription/plan.repository.js +2 -2
  349. package/esm2015/domain/users/errors/index.js +4 -4
  350. package/esm2015/domain/users/errors/unauthorized.error.js +8 -8
  351. package/esm2015/domain/users/errors/user-already-registered.error.js +8 -8
  352. package/esm2015/domain/users/errors/weak-password.error.js +8 -8
  353. package/esm2015/domain/users/index.js +6 -6
  354. package/esm2015/domain/users/models/beauty-profile.js +12 -12
  355. package/esm2015/domain/users/models/enums/accessory-importances.enum.js +7 -7
  356. package/esm2015/domain/users/models/enums/area.enum.js +13 -13
  357. package/esm2015/domain/users/models/enums/beard-problems.enum.js +11 -11
  358. package/esm2015/domain/users/models/enums/beard-sizes.enum.js +9 -9
  359. package/esm2015/domain/users/models/enums/beauty-product-importances.enum.js +8 -8
  360. package/esm2015/domain/users/models/enums/body-problems.enum.js +13 -13
  361. package/esm2015/domain/users/models/enums/body-shapes.enum.js +9 -9
  362. package/esm2015/domain/users/models/enums/body-tattoos.enum.js +7 -7
  363. package/esm2015/domain/users/models/enums/face-skin-oilinesses.enum.js +9 -9
  364. package/esm2015/domain/users/models/enums/face-skin-problems.enum.js +12 -12
  365. package/esm2015/domain/users/models/enums/face-skin-tones.enum.js +10 -10
  366. package/esm2015/domain/users/models/enums/family-incomes.enum.js +10 -10
  367. package/esm2015/domain/users/models/enums/fragrance-importances.enum.js +7 -7
  368. package/esm2015/domain/users/models/enums/hair-colors.enum.js +12 -12
  369. package/esm2015/domain/users/models/enums/hair-problems.enum.js +12 -12
  370. package/esm2015/domain/users/models/enums/hair-strands.enum.js +10 -10
  371. package/esm2015/domain/users/models/enums/hair-types.enum.js +9 -9
  372. package/esm2015/domain/users/models/enums/index.js +21 -21
  373. package/esm2015/domain/users/models/enums/office-position.enum.js +8 -8
  374. package/esm2015/domain/users/models/enums/product-spents.enum.js +10 -10
  375. package/esm2015/domain/users/models/enums/user-type.enum.js +10 -10
  376. package/esm2015/domain/users/models/index.js +8 -8
  377. package/esm2015/domain/users/models/lead.js +7 -7
  378. package/esm2015/domain/users/models/subscription/edition.js +7 -7
  379. package/esm2015/domain/users/models/subscription/enums/billing-status.enum.js +5 -5
  380. package/esm2015/domain/users/models/subscription/enums/edition-status.enum.js +6 -6
  381. package/esm2015/domain/users/models/subscription/enums/index.js +5 -5
  382. package/esm2015/domain/users/models/subscription/enums/payment-type.enum.js +7 -7
  383. package/esm2015/domain/users/models/subscription/enums/status.enum.js +6 -6
  384. package/esm2015/domain/users/models/subscription/index.js +5 -5
  385. package/esm2015/domain/users/models/subscription/payment.js +14 -14
  386. package/esm2015/domain/users/models/subscription/subscription.js +43 -43
  387. package/esm2015/domain/users/models/user-address.js +7 -7
  388. package/esm2015/domain/users/models/user-payment-method.js +7 -7
  389. package/esm2015/domain/users/models/user.js +26 -26
  390. package/esm2015/domain/users/repositories/beauty-profile.repository.js +2 -2
  391. package/esm2015/domain/users/repositories/edition.repository.js +2 -2
  392. package/esm2015/domain/users/repositories/index.js +9 -9
  393. package/esm2015/domain/users/repositories/lead.repository.js +2 -2
  394. package/esm2015/domain/users/repositories/subscription-payment.repository.js +2 -2
  395. package/esm2015/domain/users/repositories/subscription.repository.js +2 -2
  396. package/esm2015/domain/users/repositories/user-address.repository.js +2 -2
  397. package/esm2015/domain/users/repositories/user-payment-method.repository.js +2 -2
  398. package/esm2015/domain/users/repositories/user.repository.js +2 -2
  399. package/esm2015/domain/users/services/authentication.service.js +2 -2
  400. package/esm2015/domain/users/services/index.js +4 -4
  401. package/esm2015/domain/users/services/register.service.js +2 -2
  402. package/esm2015/domain/users/services/types/basic-user-data.type.js +2 -2
  403. package/esm2015/domain/users/services/types/index.js +2 -2
  404. package/esm2015/domain/users/use-cases/authentication.js +40 -40
  405. package/esm2015/domain/users/use-cases/index.js +5 -5
  406. package/esm2015/domain/users/use-cases/recovery-password.js +12 -12
  407. package/esm2015/domain/users/use-cases/register.js +34 -34
  408. package/esm2015/domain/users/use-cases/signout.js +12 -12
  409. package/esm2015/errors/duplicated-results.error.js +8 -8
  410. package/esm2015/errors/index.js +5 -5
  411. package/esm2015/errors/invalid-argument.error.js +8 -8
  412. package/esm2015/errors/not-found.error.js +8 -8
  413. package/esm2015/errors/required-argument.error.js +9 -9
  414. package/esm2015/index.js +6 -6
  415. package/esm2015/infra/elasticsearch/adapters/axios.adapter.js +76 -76
  416. package/esm2015/infra/elasticsearch/adapters/elastic-search.adapter.js +2 -2
  417. package/esm2015/infra/elasticsearch/adapters/index.js +3 -3
  418. package/esm2015/infra/elasticsearch/index.js +4 -4
  419. package/esm2015/infra/elasticsearch/indexes/index.js +2 -2
  420. package/esm2015/infra/elasticsearch/indexes/products-index.js +115 -115
  421. package/esm2015/infra/elasticsearch/types/elastic-search-result.js +2 -2
  422. package/esm2015/infra/elasticsearch/types/index.js +2 -2
  423. package/esm2015/infra/firebase/auth/authentication-firebase-auth.service.js +52 -52
  424. package/esm2015/infra/firebase/auth/index.js +3 -3
  425. package/esm2015/infra/firebase/auth/register-firebase-auth.service.js +26 -26
  426. package/esm2015/infra/firebase/auth/types/firebase-user-with-id.type.js +2 -2
  427. package/esm2015/infra/firebase/firestore/enums/firestore-field-type.enum.js +10 -10
  428. package/esm2015/infra/firebase/firestore/enums/index.js +2 -2
  429. package/esm2015/infra/firebase/firestore/index.js +4 -4
  430. package/esm2015/infra/firebase/firestore/mixins/index.js +10 -10
  431. package/esm2015/infra/firebase/firestore/mixins/with-create-firestore.mixin.js +31 -31
  432. package/esm2015/infra/firebase/firestore/mixins/with-crud-firestore.mixin.js +10 -10
  433. package/esm2015/infra/firebase/firestore/mixins/with-delete-firestore.mixin.js +18 -18
  434. package/esm2015/infra/firebase/firestore/mixins/with-find-firestore.mixin.js +98 -98
  435. package/esm2015/infra/firebase/firestore/mixins/with-firestore.mixin.js +64 -64
  436. package/esm2015/infra/firebase/firestore/mixins/with-get-firestore.mixin.js +24 -24
  437. package/esm2015/infra/firebase/firestore/mixins/with-helpers.mixin.js +17 -17
  438. package/esm2015/infra/firebase/firestore/mixins/with-sub-collection.mixin.js +11 -11
  439. package/esm2015/infra/firebase/firestore/mixins/with-update-firestore.mixin.js +45 -45
  440. package/esm2015/infra/firebase/firestore/repositories/catalog/category-firestore.repository.js +82 -82
  441. package/esm2015/infra/firebase/firestore/repositories/catalog/index.js +5 -5
  442. package/esm2015/infra/firebase/firestore/repositories/catalog/product-firestore.repository.js +58 -58
  443. package/esm2015/infra/firebase/firestore/repositories/catalog/product-variant-firestore.repository.js +14 -14
  444. package/esm2015/infra/firebase/firestore/repositories/catalog/subscription-product-firestore.repository.js +12 -12
  445. package/esm2015/infra/firebase/firestore/repositories/index.js +5 -5
  446. package/esm2015/infra/firebase/firestore/repositories/shop-settings/home-firestore.repository.js +56 -56
  447. package/esm2015/infra/firebase/firestore/repositories/shop-settings/index.js +4 -4
  448. package/esm2015/infra/firebase/firestore/repositories/shop-settings/shop-menu-firestore.repository.js +12 -12
  449. package/esm2015/infra/firebase/firestore/repositories/shop-settings/shop-settings-firestore.repository.js +12 -12
  450. package/esm2015/infra/firebase/firestore/repositories/shopping/buy-2-win-firestore.repository.js +12 -12
  451. package/esm2015/infra/firebase/firestore/repositories/shopping/campaign-dashboard-firestore.repository.js +12 -12
  452. package/esm2015/infra/firebase/firestore/repositories/shopping/campaign-hashtag-firestore.repository.js +12 -12
  453. package/esm2015/infra/firebase/firestore/repositories/shopping/checkout-firestore.repository.js +12 -12
  454. package/esm2015/infra/firebase/firestore/repositories/shopping/checkout-subscription-firestore.repository.js +12 -12
  455. package/esm2015/infra/firebase/firestore/repositories/shopping/coupon-firestore.repository.js +29 -29
  456. package/esm2015/infra/firebase/firestore/repositories/shopping/index.js +11 -11
  457. package/esm2015/infra/firebase/firestore/repositories/shopping/legacy-order-firestore.repository.js +9 -9
  458. package/esm2015/infra/firebase/firestore/repositories/shopping/order-firestore.repository.js +40 -40
  459. package/esm2015/infra/firebase/firestore/repositories/shopping/payment-firestore.repository.js +12 -12
  460. package/esm2015/infra/firebase/firestore/repositories/shopping/subscription-plan-firestore.repository.js +12 -12
  461. package/esm2015/infra/firebase/firestore/repositories/users/index.js +9 -9
  462. package/esm2015/infra/firebase/firestore/repositories/users/lead-firestore.repository.js +12 -12
  463. package/esm2015/infra/firebase/firestore/repositories/users/subscription-edition-firestore.repository.js +14 -14
  464. package/esm2015/infra/firebase/firestore/repositories/users/subscription-firestore.repository.js +12 -12
  465. package/esm2015/infra/firebase/firestore/repositories/users/subscription-payment-firestore.repository.js +14 -14
  466. package/esm2015/infra/firebase/firestore/repositories/users/user-address-firestore.repository.js +14 -14
  467. package/esm2015/infra/firebase/firestore/repositories/users/user-beauty-profile-firestore.repository.js +14 -14
  468. package/esm2015/infra/firebase/firestore/repositories/users/user-firestore.repository.js +68 -68
  469. package/esm2015/infra/firebase/firestore/repositories/users/user-payment-method-firestore.repository.js +14 -14
  470. package/esm2015/infra/firebase/firestore/types/firestore-sub.repository.type.js +2 -2
  471. package/esm2015/infra/firebase/firestore/types/firestore.helpers.type.js +2 -2
  472. package/esm2015/infra/firebase/firestore/types/firestore.repository.type.js +2 -2
  473. package/esm2015/infra/firebase/firestore/types/index.js +4 -4
  474. package/esm2015/infra/firebase/index.js +3 -3
  475. package/esm2015/infra/hasura-graphql/enums/hasura-graphql-column-type.enum.js +13 -13
  476. package/esm2015/infra/hasura-graphql/enums/hasura-graphql-where.enum.js +15 -15
  477. package/esm2015/infra/hasura-graphql/enums/index.js +3 -3
  478. package/esm2015/infra/hasura-graphql/index.js +5 -5
  479. package/esm2015/infra/hasura-graphql/mixins/helpers/attribute-option.helper.js +31 -31
  480. package/esm2015/infra/hasura-graphql/mixins/helpers/bind-filter-query.helper.js +58 -58
  481. package/esm2015/infra/hasura-graphql/mixins/helpers/filter-option.helper.js +22 -22
  482. package/esm2015/infra/hasura-graphql/mixins/helpers/graphql-field.helper.js +95 -95
  483. package/esm2015/infra/hasura-graphql/mixins/helpers/index.js +5 -5
  484. package/esm2015/infra/hasura-graphql/mixins/index.js +8 -8
  485. package/esm2015/infra/hasura-graphql/mixins/with-create-hasura-graphql.mixin.js +61 -61
  486. package/esm2015/infra/hasura-graphql/mixins/with-crud-hasura-graphql.mixin.js +10 -10
  487. package/esm2015/infra/hasura-graphql/mixins/with-delete-hasura-graphql.mixin.js +31 -31
  488. package/esm2015/infra/hasura-graphql/mixins/with-find-hasura-graphql.mixin.js +109 -109
  489. package/esm2015/infra/hasura-graphql/mixins/with-get-hasura-graphql.mixin.js +37 -37
  490. package/esm2015/infra/hasura-graphql/mixins/with-hasura-graphql.mixin.js +97 -97
  491. package/esm2015/infra/hasura-graphql/mixins/with-update-hasura-graphql.mixin.js +58 -58
  492. package/esm2015/infra/hasura-graphql/models/category-hasura-graphql.js +4 -4
  493. package/esm2015/infra/hasura-graphql/models/index.js +5 -5
  494. package/esm2015/infra/hasura-graphql/models/kit-product-hasura-graphql.js +15 -15
  495. package/esm2015/infra/hasura-graphql/models/product-hasura-graphql.js +11 -11
  496. package/esm2015/infra/hasura-graphql/models/variant-hasura-graphql.js +9 -9
  497. package/esm2015/infra/hasura-graphql/repositories/catalog/category-collection-children-hasura-graphql.repository.js +38 -38
  498. package/esm2015/infra/hasura-graphql/repositories/catalog/category-filter-hasura-graphql.repository.js +97 -55
  499. package/esm2015/infra/hasura-graphql/repositories/catalog/category-hasura-graphql.repository.js +377 -377
  500. package/esm2015/infra/hasura-graphql/repositories/catalog/filter-hasura-graphql.repository.js +123 -123
  501. package/esm2015/infra/hasura-graphql/repositories/catalog/filter-option-hasura-graphql.repository.js +21 -21
  502. package/esm2015/infra/hasura-graphql/repositories/catalog/index.js +8 -8
  503. package/esm2015/infra/hasura-graphql/repositories/catalog/product-hasura-graphql.repository.js +506 -506
  504. package/esm2015/infra/hasura-graphql/repositories/catalog/variant-hasura-graphql.repository.js +117 -117
  505. package/esm2015/infra/hasura-graphql/repositories/index.js +2 -2
  506. package/esm2015/infra/hasura-graphql/types/fields.type.js +2 -2
  507. package/esm2015/infra/hasura-graphql/types/graphql.repository.type.js +2 -2
  508. package/esm2015/infra/hasura-graphql/types/hasura-graphql-auth-options.type.js +2 -2
  509. package/esm2015/infra/hasura-graphql/types/hasura-graphql-fields.type.js +2 -2
  510. package/esm2015/infra/hasura-graphql/types/hasura-graphql-headers.type.js +2 -2
  511. package/esm2015/infra/hasura-graphql/types/index.js +9 -9
  512. package/esm2015/infra/hasura-graphql/types/nested-field.type.js +2 -2
  513. package/esm2015/infra/hasura-graphql/types/query-builder-options.type.js +2 -2
  514. package/esm2015/infra/hasura-graphql/types/variable-options.type.js +2 -2
  515. package/esm2015/infra/index.js +4 -4
  516. package/esm2015/infrab4a-connect.js +4 -4
  517. package/esm2015/utils/decorators/debug.class.decorator.js +7 -7
  518. package/esm2015/utils/decorators/index.js +3 -3
  519. package/esm2015/utils/decorators/trace.method.decorator.js +81 -81
  520. package/esm2015/utils/helpers/class-name.helper.js +15 -15
  521. package/esm2015/utils/helpers/debug-decorator.helper.js +18 -18
  522. package/esm2015/utils/helpers/debug.helper.js +150 -150
  523. package/esm2015/utils/helpers/index.js +5 -5
  524. package/esm2015/utils/helpers/reflect.helper.js +165 -165
  525. package/esm2015/utils/index.js +11 -11
  526. package/esm2015/utils/is-uuid.js +3 -3
  527. package/esm2015/utils/log.utils.js +9 -9
  528. package/esm2015/utils/mixins/base.mixin.js +6 -6
  529. package/esm2015/utils/mixins/index.js +4 -4
  530. package/esm2015/utils/mixins/merge-constructor-params.type.js +2 -2
  531. package/esm2015/utils/mixins/mixin-ctor.type.js +2 -2
  532. package/esm2015/utils/parse-datetime.js +14 -14
  533. package/esm2015/utils/types/array-element.type.js +2 -2
  534. package/esm2015/utils/types/index.js +3 -3
  535. package/esm2015/utils/types/prop.type.js +2 -2
  536. package/fesm2015/infrab4a-connect.js +4178 -4128
  537. package/fesm2015/infrab4a-connect.js.map +1 -1
  538. package/index.d.ts +5 -5
  539. package/infra/elasticsearch/adapters/axios.adapter.d.ts +16 -16
  540. package/infra/elasticsearch/adapters/elastic-search.adapter.d.ts +8 -8
  541. package/infra/elasticsearch/adapters/index.d.ts +2 -2
  542. package/infra/elasticsearch/index.d.ts +3 -3
  543. package/infra/elasticsearch/indexes/index.d.ts +1 -1
  544. package/infra/elasticsearch/indexes/products-index.d.ts +13 -13
  545. package/infra/elasticsearch/types/elastic-search-result.d.ts +9 -9
  546. package/infra/elasticsearch/types/index.d.ts +1 -1
  547. package/infra/firebase/auth/authentication-firebase-auth.service.d.ts +12 -12
  548. package/infra/firebase/auth/index.d.ts +2 -2
  549. package/infra/firebase/auth/register-firebase-auth.service.d.ts +8 -8
  550. package/infra/firebase/auth/types/firebase-user-with-id.type.d.ts +3 -3
  551. package/infra/firebase/firestore/enums/firestore-field-type.enum.d.ts +8 -8
  552. package/infra/firebase/firestore/enums/index.d.ts +1 -1
  553. package/infra/firebase/firestore/index.d.ts +3 -3
  554. package/infra/firebase/firestore/mixins/index.d.ts +9 -9
  555. package/infra/firebase/firestore/mixins/with-create-firestore.mixin.d.ts +4 -4
  556. package/infra/firebase/firestore/mixins/with-crud-firestore.mixin.d.ts +4 -4
  557. package/infra/firebase/firestore/mixins/with-delete-firestore.mixin.d.ts +4 -4
  558. package/infra/firebase/firestore/mixins/with-find-firestore.mixin.d.ts +4 -4
  559. package/infra/firebase/firestore/mixins/with-firestore.mixin.d.ts +4 -4
  560. package/infra/firebase/firestore/mixins/with-get-firestore.mixin.d.ts +4 -4
  561. package/infra/firebase/firestore/mixins/with-helpers.mixin.d.ts +11 -11
  562. package/infra/firebase/firestore/mixins/with-sub-collection.mixin.d.ts +7 -7
  563. package/infra/firebase/firestore/mixins/with-update-firestore.mixin.d.ts +7 -7
  564. package/infra/firebase/firestore/repositories/catalog/category-firestore.repository.d.ts +21 -21
  565. package/infra/firebase/firestore/repositories/catalog/index.d.ts +4 -4
  566. package/infra/firebase/firestore/repositories/catalog/product-firestore.repository.d.ts +13 -13
  567. package/infra/firebase/firestore/repositories/catalog/product-variant-firestore.repository.d.ts +13 -13
  568. package/infra/firebase/firestore/repositories/catalog/subscription-product-firestore.repository.d.ts +8 -8
  569. package/infra/firebase/firestore/repositories/index.d.ts +4 -4
  570. package/infra/firebase/firestore/repositories/shop-settings/home-firestore.repository.d.ts +16 -16
  571. package/infra/firebase/firestore/repositories/shop-settings/index.d.ts +3 -3
  572. package/infra/firebase/firestore/repositories/shop-settings/shop-menu-firestore.repository.d.ts +8 -8
  573. package/infra/firebase/firestore/repositories/shop-settings/shop-settings-firestore.repository.d.ts +8 -8
  574. package/infra/firebase/firestore/repositories/shopping/buy-2-win-firestore.repository.d.ts +8 -8
  575. package/infra/firebase/firestore/repositories/shopping/campaign-dashboard-firestore.repository.d.ts +9 -9
  576. package/infra/firebase/firestore/repositories/shopping/campaign-hashtag-firestore.repository.d.ts +9 -9
  577. package/infra/firebase/firestore/repositories/shopping/checkout-firestore.repository.d.ts +8 -8
  578. package/infra/firebase/firestore/repositories/shopping/checkout-subscription-firestore.repository.d.ts +8 -8
  579. package/infra/firebase/firestore/repositories/shopping/coupon-firestore.repository.d.ts +12 -12
  580. package/infra/firebase/firestore/repositories/shopping/index.d.ts +10 -10
  581. package/infra/firebase/firestore/repositories/shopping/legacy-order-firestore.repository.d.ts +7 -7
  582. package/infra/firebase/firestore/repositories/shopping/order-firestore.repository.d.ts +13 -13
  583. package/infra/firebase/firestore/repositories/shopping/payment-firestore.repository.d.ts +8 -8
  584. package/infra/firebase/firestore/repositories/shopping/subscription-plan-firestore.repository.d.ts +8 -8
  585. package/infra/firebase/firestore/repositories/users/index.d.ts +8 -8
  586. package/infra/firebase/firestore/repositories/users/lead-firestore.repository.d.ts +8 -8
  587. package/infra/firebase/firestore/repositories/users/subscription-edition-firestore.repository.d.ts +13 -13
  588. package/infra/firebase/firestore/repositories/users/subscription-firestore.repository.d.ts +8 -8
  589. package/infra/firebase/firestore/repositories/users/subscription-payment-firestore.repository.d.ts +13 -13
  590. package/infra/firebase/firestore/repositories/users/user-address-firestore.repository.d.ts +13 -13
  591. package/infra/firebase/firestore/repositories/users/user-beauty-profile-firestore.repository.d.ts +13 -13
  592. package/infra/firebase/firestore/repositories/users/user-firestore.repository.d.ts +17 -17
  593. package/infra/firebase/firestore/repositories/users/user-payment-method-firestore.repository.d.ts +13 -13
  594. package/infra/firebase/firestore/types/firestore-sub.repository.type.d.ts +6 -6
  595. package/infra/firebase/firestore/types/firestore.helpers.type.d.ts +8 -8
  596. package/infra/firebase/firestore/types/firestore.repository.type.d.ts +14 -14
  597. package/infra/firebase/firestore/types/index.d.ts +3 -3
  598. package/infra/firebase/index.d.ts +2 -2
  599. package/infra/hasura-graphql/enums/hasura-graphql-column-type.enum.d.ts +11 -11
  600. package/infra/hasura-graphql/enums/hasura-graphql-where.enum.d.ts +13 -13
  601. package/infra/hasura-graphql/enums/index.d.ts +2 -2
  602. package/infra/hasura-graphql/index.d.ts +4 -4
  603. package/infra/hasura-graphql/mixins/helpers/attribute-option.helper.d.ts +15 -15
  604. package/infra/hasura-graphql/mixins/helpers/bind-filter-query.helper.d.ts +10 -10
  605. package/infra/hasura-graphql/mixins/helpers/filter-option.helper.d.ts +8 -8
  606. package/infra/hasura-graphql/mixins/helpers/graphql-field.helper.d.ts +9 -9
  607. package/infra/hasura-graphql/mixins/helpers/index.d.ts +4 -4
  608. package/infra/hasura-graphql/mixins/index.d.ts +7 -7
  609. package/infra/hasura-graphql/mixins/with-create-hasura-graphql.mixin.d.ts +9 -9
  610. package/infra/hasura-graphql/mixins/with-crud-hasura-graphql.mixin.d.ts +11 -11
  611. package/infra/hasura-graphql/mixins/with-delete-hasura-graphql.mixin.d.ts +7 -7
  612. package/infra/hasura-graphql/mixins/with-find-hasura-graphql.mixin.d.ts +33 -33
  613. package/infra/hasura-graphql/mixins/with-get-hasura-graphql.mixin.d.ts +25 -25
  614. package/infra/hasura-graphql/mixins/with-hasura-graphql.mixin.d.ts +11 -11
  615. package/infra/hasura-graphql/mixins/with-update-hasura-graphql.mixin.d.ts +14 -14
  616. package/infra/hasura-graphql/models/category-hasura-graphql.d.ts +6 -6
  617. package/infra/hasura-graphql/models/index.d.ts +4 -4
  618. package/infra/hasura-graphql/models/kit-product-hasura-graphql.d.ts +6 -6
  619. package/infra/hasura-graphql/models/product-hasura-graphql.d.ts +18 -18
  620. package/infra/hasura-graphql/models/variant-hasura-graphql.d.ts +10 -10
  621. package/infra/hasura-graphql/repositories/catalog/category-collection-children-hasura-graphql.repository.d.ts +10 -10
  622. package/infra/hasura-graphql/repositories/catalog/category-filter-hasura-graphql.repository.d.ts +11 -11
  623. package/infra/hasura-graphql/repositories/catalog/category-hasura-graphql.repository.d.ts +34 -34
  624. package/infra/hasura-graphql/repositories/catalog/filter-hasura-graphql.repository.d.ts +18 -18
  625. package/infra/hasura-graphql/repositories/catalog/filter-option-hasura-graphql.repository.d.ts +10 -10
  626. package/infra/hasura-graphql/repositories/catalog/index.d.ts +7 -7
  627. package/infra/hasura-graphql/repositories/catalog/product-hasura-graphql.repository.d.ts +30 -30
  628. package/infra/hasura-graphql/repositories/catalog/variant-hasura-graphql.repository.d.ts +14 -14
  629. package/infra/hasura-graphql/repositories/index.d.ts +1 -1
  630. package/infra/hasura-graphql/types/fields.type.d.ts +2 -2
  631. package/infra/hasura-graphql/types/graphql.repository.type.d.ts +23 -23
  632. package/infra/hasura-graphql/types/hasura-graphql-auth-options.type.d.ts +8 -8
  633. package/infra/hasura-graphql/types/hasura-graphql-fields.type.d.ts +44 -44
  634. package/infra/hasura-graphql/types/hasura-graphql-headers.type.d.ts +7 -7
  635. package/infra/hasura-graphql/types/index.d.ts +8 -8
  636. package/infra/hasura-graphql/types/nested-field.type.d.ts +7 -7
  637. package/infra/hasura-graphql/types/query-builder-options.type.d.ts +7 -7
  638. package/infra/hasura-graphql/types/variable-options.type.d.ts +9 -9
  639. package/infra/index.d.ts +3 -3
  640. package/infrab4a-connect.d.ts +5 -5
  641. package/package.json +1 -1
  642. package/utils/decorators/debug.class.decorator.d.ts +2 -2
  643. package/utils/decorators/index.d.ts +2 -2
  644. package/utils/decorators/trace.method.decorator.d.ts +14 -14
  645. package/utils/helpers/class-name.helper.d.ts +3 -3
  646. package/utils/helpers/debug-decorator.helper.d.ts +9 -9
  647. package/utils/helpers/debug.helper.d.ts +60 -60
  648. package/utils/helpers/index.d.ts +4 -4
  649. package/utils/helpers/reflect.helper.d.ts +50 -50
  650. package/utils/index.d.ts +10 -10
  651. package/utils/is-uuid.d.ts +1 -1
  652. package/utils/log.utils.d.ts +7 -7
  653. package/utils/mixins/base.mixin.d.ts +3 -3
  654. package/utils/mixins/index.d.ts +3 -3
  655. package/utils/mixins/merge-constructor-params.type.d.ts +3 -3
  656. package/utils/mixins/mixin-ctor.type.d.ts +1 -1
  657. package/utils/parse-datetime.d.ts +1 -1
  658. package/utils/types/array-element.type.d.ts +1 -1
  659. package/utils/types/index.d.ts +2 -2
  660. package/utils/types/prop.type.d.ts +1 -1
@@ -1,10 +1,10 @@
1
- export declare enum FaceSkinProblems {
2
- NO_PROBLEMS = "Sem problemas",
3
- DARK_CIRCLES = "Olheiras",
4
- WRINKLES = "Rugas",
5
- BLACKHEADS_PIMPLES = "Cravos e Espinhas",
6
- STAINS = "Manchas",
7
- FRECKLES = "Sardas",
8
- SENSITIVE = "Sens\u00EDvel",
9
- PHOTOSENSITIVE = "Fotossens\u00EDvel"
10
- }
1
+ export declare enum FaceSkinProblems {
2
+ NO_PROBLEMS = "Sem problemas",
3
+ DARK_CIRCLES = "Olheiras",
4
+ WRINKLES = "Rugas",
5
+ BLACKHEADS_PIMPLES = "Cravos e Espinhas",
6
+ STAINS = "Manchas",
7
+ FRECKLES = "Sardas",
8
+ SENSITIVE = "Sens\u00EDvel",
9
+ PHOTOSENSITIVE = "Fotossens\u00EDvel"
10
+ }
@@ -1,8 +1,8 @@
1
- export declare enum FaceSkinTones {
2
- VERY_CLEAR = "Muito Clara",
3
- CLEAR = "Clara",
4
- MEDIUM_LIGHT = "Clara M\u00E9dia",
5
- MEDIUM_DARK = "Escura M\u00E9dia",
6
- DARK = "Escura",
7
- VERY_DARK = "Muito Escura"
8
- }
1
+ export declare enum FaceSkinTones {
2
+ VERY_CLEAR = "Muito Clara",
3
+ CLEAR = "Clara",
4
+ MEDIUM_LIGHT = "Clara M\u00E9dia",
5
+ MEDIUM_DARK = "Escura M\u00E9dia",
6
+ DARK = "Escura",
7
+ VERY_DARK = "Muito Escura"
8
+ }
@@ -1,8 +1,8 @@
1
- export declare enum FamilyIncomes {
2
- UNTIL_3000 = "At\u00E9 R$3.000",
3
- SINCE_3001_TO_7000 = "De R$3.001 a R$7.000",
4
- SINCE_7001_TO_10000 = "De R$7.001 a R$10.000",
5
- SINCE_10001_TO_15000 = "De R$10.001 a R$15.000",
6
- GRAN_THAN_15000 = "Mais de R$15.000",
7
- NOW_ANSWER = "Prefiro nao responder"
8
- }
1
+ export declare enum FamilyIncomes {
2
+ UNTIL_3000 = "At\u00E9 R$3.000",
3
+ SINCE_3001_TO_7000 = "De R$3.001 a R$7.000",
4
+ SINCE_7001_TO_10000 = "De R$7.001 a R$10.000",
5
+ SINCE_10001_TO_15000 = "De R$10.001 a R$15.000",
6
+ GRAN_THAN_15000 = "Mais de R$15.000",
7
+ NOW_ANSWER = "Prefiro nao responder"
8
+ }
@@ -1,5 +1,5 @@
1
- export declare enum FragranceImportances {
2
- NOT_INTERESTED = "N\u00E3o tenho interesse",
3
- LIKE_ALWAYS_USE_SAME = "Gosto de perfumes, mas uso sempre os mesmos",
4
- LIKE_INNOVATE = "Gosto de inovar e conhecer novas fragr\u00E2ncias"
5
- }
1
+ export declare enum FragranceImportances {
2
+ NOT_INTERESTED = "N\u00E3o tenho interesse",
3
+ LIKE_ALWAYS_USE_SAME = "Gosto de perfumes, mas uso sempre os mesmos",
4
+ LIKE_INNOVATE = "Gosto de inovar e conhecer novas fragr\u00E2ncias"
5
+ }
@@ -1,10 +1,10 @@
1
- export declare enum HairColors {
2
- BLACK = "Preto",
3
- DARK_BROWN = "Castanho Escuro",
4
- LIGHT_BROWN = "Castanho Claro",
5
- DARK_BLONDE = "Loiro Escuro",
6
- LIGHT_BLONDE = "Loiro Claro",
7
- WHITE_GRAY = "Branco/Grisalho",
8
- REDHEAD = "Ruivo",
9
- OTHER = "RuiOutroo"
10
- }
1
+ export declare enum HairColors {
2
+ BLACK = "Preto",
3
+ DARK_BROWN = "Castanho Escuro",
4
+ LIGHT_BROWN = "Castanho Claro",
5
+ DARK_BLONDE = "Loiro Escuro",
6
+ LIGHT_BLONDE = "Loiro Claro",
7
+ WHITE_GRAY = "Branco/Grisalho",
8
+ REDHEAD = "Ruivo",
9
+ OTHER = "RuiOutroo"
10
+ }
@@ -1,10 +1,10 @@
1
- export declare enum HairProblems {
2
- NO_PROBLEMS = "Sem problemas",
3
- DANCRUFF = "Caspa",
4
- LOSS = "Queda",
5
- OILY = "Oleosidade",
6
- DRYNESS = "Ressecamento",
7
- CHEMICAL = "Quimica",
8
- WHITE_HAIR = "Cabelos Brancos",
9
- REBEL_WIRES = "Fios Rebeldes"
10
- }
1
+ export declare enum HairProblems {
2
+ NO_PROBLEMS = "Sem problemas",
3
+ DANCRUFF = "Caspa",
4
+ LOSS = "Queda",
5
+ OILY = "Oleosidade",
6
+ DRYNESS = "Ressecamento",
7
+ CHEMICAL = "Quimica",
8
+ WHITE_HAIR = "Cabelos Brancos",
9
+ REBEL_WIRES = "Fios Rebeldes"
10
+ }
@@ -1,8 +1,8 @@
1
- export declare enum HairStrands {
2
- NORMAL = "Fio Normal",
3
- DRY = "Fio Seco",
4
- OILY = "Fio Oleoso",
5
- MIXED = "Fio Misto",
6
- FINE = "Fio Fino",
7
- THICK = "Fio Grosso"
8
- }
1
+ export declare enum HairStrands {
2
+ NORMAL = "Fio Normal",
3
+ DRY = "Fio Seco",
4
+ OILY = "Fio Oleoso",
5
+ MIXED = "Fio Misto",
6
+ FINE = "Fio Fino",
7
+ THICK = "Fio Grosso"
8
+ }
@@ -1,7 +1,7 @@
1
- export declare enum HairTypes {
2
- Smooth = "Liso",
3
- WAVY = "Ondulado",
4
- CURLY = "Cacheado",
5
- FRIZZY = "Crespo",
6
- BALD = "Sou careca"
7
- }
1
+ export declare enum HairTypes {
2
+ Smooth = "Liso",
3
+ WAVY = "Ondulado",
4
+ CURLY = "Cacheado",
5
+ FRIZZY = "Crespo",
6
+ BALD = "Sou careca"
7
+ }
@@ -1,20 +1,20 @@
1
- export * from './accessory-importances.enum';
2
- export * from './area.enum';
3
- export * from './beard-problems.enum';
4
- export * from './beard-sizes.enum';
5
- export * from './beauty-product-importances.enum';
6
- export * from './body-problems.enum';
7
- export * from './body-shapes.enum';
8
- export * from './body-tattoos.enum';
9
- export * from './face-skin-oilinesses.enum';
10
- export * from './face-skin-problems.enum';
11
- export * from './face-skin-tones.enum';
12
- export * from './family-incomes.enum';
13
- export * from './fragrance-importances.enum';
14
- export * from './hair-colors.enum';
15
- export * from './hair-problems.enum';
16
- export * from './hair-strands.enum';
17
- export * from './hair-types.enum';
18
- export * from './office-position.enum';
19
- export * from './product-spents.enum';
20
- export * from './user-type.enum';
1
+ export * from './accessory-importances.enum';
2
+ export * from './area.enum';
3
+ export * from './beard-problems.enum';
4
+ export * from './beard-sizes.enum';
5
+ export * from './beauty-product-importances.enum';
6
+ export * from './body-problems.enum';
7
+ export * from './body-shapes.enum';
8
+ export * from './body-tattoos.enum';
9
+ export * from './face-skin-oilinesses.enum';
10
+ export * from './face-skin-problems.enum';
11
+ export * from './face-skin-tones.enum';
12
+ export * from './family-incomes.enum';
13
+ export * from './fragrance-importances.enum';
14
+ export * from './hair-colors.enum';
15
+ export * from './hair-problems.enum';
16
+ export * from './hair-strands.enum';
17
+ export * from './hair-types.enum';
18
+ export * from './office-position.enum';
19
+ export * from './product-spents.enum';
20
+ export * from './user-type.enum';
@@ -1,6 +1,6 @@
1
- export declare enum OfficePosition {
2
- Intern = "Estagi\u00E1rio",
3
- Analyst = "Analista",
4
- Manager = "Gerente",
5
- Director = "Diretor"
6
- }
1
+ export declare enum OfficePosition {
2
+ Intern = "Estagi\u00E1rio",
3
+ Analyst = "Analista",
4
+ Manager = "Gerente",
5
+ Director = "Diretor"
6
+ }
@@ -1,8 +1,8 @@
1
- export declare enum ProductSpents {
2
- UNTIL_50 = "At\u00E9 R$50",
3
- SINCE_51_TO_100 = "De R$51 a R$100",
4
- SINCE_101_TO_200 = "De R$101 a R$200",
5
- SINCE_201_TO_300 = "De R$201 a R$300",
6
- GRAN_THAN_300 = "Mais de R$300",
7
- NOW_ANSWER = "Prefiro nao responder"
8
- }
1
+ export declare enum ProductSpents {
2
+ UNTIL_50 = "At\u00E9 R$50",
3
+ SINCE_51_TO_100 = "De R$51 a R$100",
4
+ SINCE_101_TO_200 = "De R$101 a R$200",
5
+ SINCE_201_TO_300 = "De R$201 a R$300",
6
+ GRAN_THAN_300 = "Mais de R$300",
7
+ NOW_ANSWER = "Prefiro nao responder"
8
+ }
@@ -1,8 +1,8 @@
1
- export declare enum UserType {
2
- B2C = "Cliente Transacional",
3
- GlamGirl = "Glamgirl",
4
- MensBoy = "Mensboy",
5
- B2B = "Company",
6
- Collaborator = "Funcion\u00E1rio",
7
- Influencer = "Influencer"
8
- }
1
+ export declare enum UserType {
2
+ B2C = "Cliente Transacional",
3
+ GlamGirl = "Glamgirl",
4
+ MensBoy = "Mensboy",
5
+ B2B = "Company",
6
+ Collaborator = "Funcion\u00E1rio",
7
+ Influencer = "Influencer"
8
+ }
@@ -1,7 +1,7 @@
1
- export * from './enums';
2
- export * from './subscription';
3
- export * from './user';
4
- export * from './beauty-profile';
5
- export * from './user-address';
6
- export * from './user-payment-method';
7
- export * from './lead';
1
+ export * from './enums';
2
+ export * from './subscription';
3
+ export * from './user';
4
+ export * from './beauty-profile';
5
+ export * from './user-address';
6
+ export * from './user-payment-method';
7
+ export * from './lead';
@@ -1,8 +1,8 @@
1
- import { BaseModel, GenericIdentifier } from '../../generic/model/base.model';
2
- export declare class Lead extends BaseModel<Lead> {
3
- id: string;
4
- acceptsNewsletter: boolean;
5
- email: string;
6
- source: string;
7
- static get identifiersFields(): GenericIdentifier[];
8
- }
1
+ import { BaseModel, GenericIdentifier } from '../../generic/model/base.model';
2
+ export declare class Lead extends BaseModel<Lead> {
3
+ id: string;
4
+ acceptsNewsletter: boolean;
5
+ email: string;
6
+ source: string;
7
+ static get identifiersFields(): GenericIdentifier[];
8
+ }
@@ -1,16 +1,16 @@
1
- import { BaseModel } from '../../../generic/model/base.model';
2
- import { EditionStatus, BillingStatus } from './enums';
3
- export declare type EditionIdentifiers = 'id' | 'subscriptionId';
4
- export declare class Edition extends BaseModel<Edition, EditionIdentifiers> {
5
- id: string;
6
- subscriptionId: string;
7
- billingStatus: BillingStatus;
8
- editionId: number;
9
- editionStatus: EditionStatus;
10
- installment: number;
11
- paymentId: string;
12
- draftId?: string;
13
- createdAt: Date;
14
- updatedAt: Date;
15
- static get identifiersFields(): EditionIdentifiers[];
16
- }
1
+ import { BaseModel } from '../../../generic/model/base.model';
2
+ import { EditionStatus, BillingStatus } from './enums';
3
+ export declare type EditionIdentifiers = 'id' | 'subscriptionId';
4
+ export declare class Edition extends BaseModel<Edition, EditionIdentifiers> {
5
+ id: string;
6
+ subscriptionId: string;
7
+ billingStatus: BillingStatus;
8
+ editionId: number;
9
+ editionStatus: EditionStatus;
10
+ installment: number;
11
+ paymentId: string;
12
+ draftId?: string;
13
+ createdAt: Date;
14
+ updatedAt: Date;
15
+ static get identifiersFields(): EditionIdentifiers[];
16
+ }
@@ -1,3 +1,3 @@
1
- export declare enum BillingStatus {
2
- PAYED = "PAGO"
3
- }
1
+ export declare enum BillingStatus {
2
+ PAYED = "PAGO"
3
+ }
@@ -1,4 +1,4 @@
1
- export declare enum EditionStatus {
2
- ALLOCATION_WAITING = "Aguardando aloca\u00E7\u00E3o",
3
- SHIPPED = "Enviado"
4
- }
1
+ export declare enum EditionStatus {
2
+ ALLOCATION_WAITING = "Aguardando aloca\u00E7\u00E3o",
3
+ SHIPPED = "Enviado"
4
+ }
@@ -1,4 +1,4 @@
1
- export * from './billing-status.enum';
2
- export * from './edition-status.enum';
3
- export * from './payment-type.enum';
4
- export * from './status.enum';
1
+ export * from './billing-status.enum';
2
+ export * from './edition-status.enum';
3
+ export * from './payment-type.enum';
4
+ export * from './status.enum';
@@ -1,5 +1,5 @@
1
- export declare enum PaymentType {
2
- AQUISITION = "Aquisi\u00E7\u00E3o",
3
- RENEWAL = "Renova\u00E7\u00E3o",
4
- FREIGHT = "mudan\u00E7a de endere\u00E7o, Frete"
5
- }
1
+ export declare enum PaymentType {
2
+ AQUISITION = "Aquisi\u00E7\u00E3o",
3
+ RENEWAL = "Renova\u00E7\u00E3o",
4
+ FREIGHT = "mudan\u00E7a de endere\u00E7o, Frete"
5
+ }
@@ -1,4 +1,4 @@
1
- export declare enum Status {
2
- ACTIVE = "active",
3
- CANCELLED = "Cancelado"
4
- }
1
+ export declare enum Status {
2
+ ACTIVE = "active",
3
+ CANCELLED = "Cancelado"
4
+ }
@@ -1,4 +1,4 @@
1
- export * from './enums';
2
- export * from './edition';
3
- export * from './payment';
4
- export * from './subscription';
1
+ export * from './enums';
2
+ export * from './edition';
3
+ export * from './payment';
4
+ export * from './subscription';
@@ -1,13 +1,13 @@
1
- import { BaseModel } from '../../../generic/model/base.model';
2
- import { Payment } from '../../../shopping/models/payment';
3
- import { PaymentType } from './enums/payment-type.enum';
4
- export declare type SubscriptionPaymentIdentifiers = 'id' | 'subscriptionId';
5
- export declare class SubscriptionPayment extends BaseModel<SubscriptionPayment, SubscriptionPaymentIdentifiers> {
6
- id: string;
7
- subscriptionId: string;
8
- paymentType: PaymentType;
9
- createdAt: Date;
10
- attempts?: number;
11
- payment: Payment;
12
- static get identifiersFields(): SubscriptionPaymentIdentifiers[];
13
- }
1
+ import { BaseModel } from '../../../generic/model/base.model';
2
+ import { Payment } from '../../../shopping/models/payment';
3
+ import { PaymentType } from './enums/payment-type.enum';
4
+ export declare type SubscriptionPaymentIdentifiers = 'id' | 'subscriptionId';
5
+ export declare class SubscriptionPayment extends BaseModel<SubscriptionPayment, SubscriptionPaymentIdentifiers> {
6
+ id: string;
7
+ subscriptionId: string;
8
+ paymentType: PaymentType;
9
+ createdAt: Date;
10
+ attempts?: number;
11
+ payment: Payment;
12
+ static get identifiersFields(): SubscriptionPaymentIdentifiers[];
13
+ }
@@ -1,28 +1,28 @@
1
- import { BaseModel, GenericIdentifier } from '../../../generic/model/base.model';
2
- import { Coupon } from '../../../shopping/models/coupons/coupon';
3
- import { SubscriptionPlan } from '../../../shopping/models/subscription/plan';
4
- import { User } from '../user';
5
- import { UserAddress } from '../user-address';
6
- import { Edition } from './edition';
7
- import { Status } from './enums/status.enum';
8
- import { SubscriptionPayment } from './payment';
9
- export declare class Subscription extends BaseModel<Subscription> {
10
- id: string;
11
- nextPayment: Date;
12
- recurrence: boolean;
13
- status: Status;
14
- cardToken: string;
15
- subtotalPrice?: number;
16
- discount?: number;
17
- totalPrice?: number;
18
- createdAt: Date;
19
- updatedAt: Date;
20
- user: User;
21
- subscriptionPlan: SubscriptionPlan;
22
- shippingAddress: UserAddress;
23
- billingAddress?: UserAddress;
24
- coupon?: Coupon;
25
- editions: Edition[];
26
- payment?: SubscriptionPayment[];
27
- static get identifiersFields(): GenericIdentifier[];
28
- }
1
+ import { BaseModel, GenericIdentifier } from '../../../generic/model/base.model';
2
+ import { Coupon } from '../../../shopping/models/coupons/coupon';
3
+ import { SubscriptionPlan } from '../../../shopping/models/subscription/plan';
4
+ import { User } from '../user';
5
+ import { UserAddress } from '../user-address';
6
+ import { Edition } from './edition';
7
+ import { Status } from './enums/status.enum';
8
+ import { SubscriptionPayment } from './payment';
9
+ export declare class Subscription extends BaseModel<Subscription> {
10
+ id: string;
11
+ nextPayment: Date;
12
+ recurrence: boolean;
13
+ status: Status;
14
+ cardToken: string;
15
+ subtotalPrice?: number;
16
+ discount?: number;
17
+ totalPrice?: number;
18
+ createdAt: Date;
19
+ updatedAt: Date;
20
+ user: User;
21
+ subscriptionPlan: SubscriptionPlan;
22
+ shippingAddress: UserAddress;
23
+ billingAddress?: UserAddress;
24
+ coupon?: Coupon;
25
+ editions: Edition[];
26
+ payment?: SubscriptionPayment[];
27
+ static get identifiersFields(): GenericIdentifier[];
28
+ }
@@ -1,7 +1,7 @@
1
- import { Address } from '../../location/models/address';
2
- export declare type UserAddressIdentifiers = 'id' | 'userId';
3
- export declare class UserAddress extends Address<UserAddress, UserAddressIdentifiers> {
4
- id: string;
5
- userId: string;
6
- static get identifiersFields(): UserAddressIdentifiers[];
7
- }
1
+ import { Address } from '../../location/models/address';
2
+ export declare type UserAddressIdentifiers = 'id' | 'userId';
3
+ export declare class UserAddress extends Address<UserAddress, UserAddressIdentifiers> {
4
+ id: string;
5
+ userId: string;
6
+ static get identifiersFields(): UserAddressIdentifiers[];
7
+ }
@@ -1,14 +1,14 @@
1
- import { BaseModel } from '../../generic/model/base.model';
2
- export declare type UserPaymentIdentifiers = 'id' | 'userId';
3
- export declare class UserPaymentMethod extends BaseModel<UserPaymentMethod, UserPaymentIdentifiers> {
4
- brand: string;
5
- cpf: string;
6
- holderName: string;
7
- last4: string;
8
- pagarmeToken: string;
9
- validUntil: string;
10
- userId: string;
11
- id: string;
12
- fingerprint: string;
13
- static get identifiersFields(): UserPaymentIdentifiers[];
14
- }
1
+ import { BaseModel } from '../../generic/model/base.model';
2
+ export declare type UserPaymentIdentifiers = 'id' | 'userId';
3
+ export declare class UserPaymentMethod extends BaseModel<UserPaymentMethod, UserPaymentIdentifiers> {
4
+ brand: string;
5
+ cpf: string;
6
+ holderName: string;
7
+ last4: string;
8
+ pagarmeToken: string;
9
+ validUntil: string;
10
+ userId: string;
11
+ id: string;
12
+ fingerprint: string;
13
+ static get identifiersFields(): UserPaymentIdentifiers[];
14
+ }
@@ -1,27 +1,27 @@
1
- import { BaseModel, GenericIdentifier, NonFunctionAndIdentifierProperties } from '../../generic';
2
- import { BeautyProfile } from './beauty-profile';
3
- import { Area, OfficePosition, UserType } from './enums';
4
- export declare class User extends BaseModel<User> {
5
- id: string;
6
- cpf?: string;
7
- email: string;
8
- firstName?: string;
9
- lastName?: string;
10
- displayName?: string;
11
- phone?: string;
12
- birthday?: Date;
13
- acceptsNewsletter?: boolean;
14
- type?: UserType;
15
- area?: Area;
16
- officePosition?: OfficePosition;
17
- isSubscriber?: boolean;
18
- subscriptionPlan?: string;
19
- badgeId?: number;
20
- badgeMultiplier?: number;
21
- dateCreated?: Date;
22
- dateModified?: Date;
23
- beautyProfile?: BeautyProfile;
24
- static toInstance<T>(this: new () => T, data?: Partial<NonFunctionAndIdentifierProperties<User>>): T;
25
- toPlain(): any;
26
- static get identifiersFields(): GenericIdentifier[];
27
- }
1
+ import { BaseModel, GenericIdentifier, NonFunctionAndIdentifierProperties } from '../../generic';
2
+ import { BeautyProfile } from './beauty-profile';
3
+ import { Area, OfficePosition, UserType } from './enums';
4
+ export declare class User extends BaseModel<User> {
5
+ id: string;
6
+ cpf?: string;
7
+ email: string;
8
+ firstName?: string;
9
+ lastName?: string;
10
+ displayName?: string;
11
+ phone?: string;
12
+ birthday?: Date;
13
+ acceptsNewsletter?: boolean;
14
+ type?: UserType;
15
+ area?: Area;
16
+ officePosition?: OfficePosition;
17
+ isSubscriber?: boolean;
18
+ subscriptionPlan?: string;
19
+ badgeId?: number;
20
+ badgeMultiplier?: number;
21
+ dateCreated?: Date;
22
+ dateModified?: Date;
23
+ beautyProfile?: BeautyProfile;
24
+ static toInstance<T>(this: new () => T, data?: Partial<NonFunctionAndIdentifierProperties<User>>): T;
25
+ toPlain(): any;
26
+ static get identifiersFields(): GenericIdentifier[];
27
+ }
@@ -1,4 +1,4 @@
1
- import { CrudRepository } from '../../generic/repository/crud.repository';
2
- import { BeautyProfile } from '../models/beauty-profile';
3
- export interface BeautyProfileRepository extends CrudRepository<BeautyProfile> {
4
- }
1
+ import { CrudRepository } from '../../generic/repository/crud.repository';
2
+ import { BeautyProfile } from '../models/beauty-profile';
3
+ export interface BeautyProfileRepository extends CrudRepository<BeautyProfile> {
4
+ }
@@ -1,4 +1,4 @@
1
- import { CrudRepository } from '../../generic/repository/crud.repository';
2
- import { Edition } from '../models/subscription/edition';
3
- export interface EditionRepository extends CrudRepository<Edition> {
4
- }
1
+ import { CrudRepository } from '../../generic/repository/crud.repository';
2
+ import { Edition } from '../models/subscription/edition';
3
+ export interface EditionRepository extends CrudRepository<Edition> {
4
+ }
@@ -1,8 +1,8 @@
1
- export * from './user.repository';
2
- export * from './subscription.repository';
3
- export * from './edition.repository';
4
- export * from './beauty-profile.repository';
5
- export * from './user-address.repository';
6
- export * from './user-payment-method.repository';
7
- export * from './subscription-payment.repository';
8
- export * from './lead.repository';
1
+ export * from './user.repository';
2
+ export * from './subscription.repository';
3
+ export * from './edition.repository';
4
+ export * from './beauty-profile.repository';
5
+ export * from './user-address.repository';
6
+ export * from './user-payment-method.repository';
7
+ export * from './subscription-payment.repository';
8
+ export * from './lead.repository';
@@ -1,4 +1,4 @@
1
- import { CrudRepository } from '../../generic/repository/crud.repository';
2
- import { Lead } from '../models/lead';
3
- export interface LeadRepository extends CrudRepository<Lead> {
4
- }
1
+ import { CrudRepository } from '../../generic/repository/crud.repository';
2
+ import { Lead } from '../models/lead';
3
+ export interface LeadRepository extends CrudRepository<Lead> {
4
+ }
@@ -1,4 +1,4 @@
1
- import { CrudRepository } from '../../generic/repository/crud.repository';
2
- import { SubscriptionPayment } from '../models/subscription/payment';
3
- export interface SubscriptionPaymentRepository extends CrudRepository<SubscriptionPayment> {
4
- }
1
+ import { CrudRepository } from '../../generic/repository/crud.repository';
2
+ import { SubscriptionPayment } from '../models/subscription/payment';
3
+ export interface SubscriptionPaymentRepository extends CrudRepository<SubscriptionPayment> {
4
+ }
@@ -1,4 +1,4 @@
1
- import { CrudRepository } from '../../generic/repository/crud.repository';
2
- import { Subscription } from '../models/subscription/subscription';
3
- export interface SubscriptionRepository extends CrudRepository<Subscription> {
4
- }
1
+ import { CrudRepository } from '../../generic/repository/crud.repository';
2
+ import { Subscription } from '../models/subscription/subscription';
3
+ export interface SubscriptionRepository extends CrudRepository<Subscription> {
4
+ }
@@ -1,4 +1,4 @@
1
- import { CrudRepository } from '../../generic/repository/crud.repository';
2
- import { UserAddress } from '../models/user-address';
3
- export interface UserAddressRepository extends CrudRepository<UserAddress> {
4
- }
1
+ import { CrudRepository } from '../../generic/repository/crud.repository';
2
+ import { UserAddress } from '../models/user-address';
3
+ export interface UserAddressRepository extends CrudRepository<UserAddress> {
4
+ }