@infrab4a/connect 4.0.3-beta.0 → 4.1.0-beta.0

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 (763) hide show
  1. package/README.md +24 -24
  2. package/domain/catalog/helpers/index.d.ts +1 -1
  3. package/domain/catalog/helpers/round-product-price.helper.d.ts +4 -4
  4. package/domain/catalog/index.d.ts +3 -3
  5. package/domain/catalog/models/category-base.d.ts +30 -30
  6. package/domain/catalog/models/category-collection-children.d.ts +13 -13
  7. package/domain/catalog/models/category-filter.d.ts +13 -13
  8. package/domain/catalog/models/category-for-product.d.ts +5 -5
  9. package/domain/catalog/models/category.d.ts +7 -7
  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 +11 -11
  16. package/domain/catalog/models/kit-product.d.ts +12 -12
  17. package/domain/catalog/models/product-base.d.ts +40 -40
  18. package/domain/catalog/models/product-for-category.d.ts +7 -7
  19. package/domain/catalog/models/product-for-kit.d.ts +7 -7
  20. package/domain/catalog/models/product.d.ts +9 -9
  21. package/domain/catalog/models/types/category-condition.type.d.ts +4 -4
  22. package/domain/catalog/models/types/category-metadata.type.d.ts +4 -4
  23. package/domain/catalog/models/types/category-product.d.ts +4 -4
  24. package/domain/catalog/models/types/index.d.ts +11 -11
  25. package/domain/catalog/models/types/product-evaluation.type.d.ts +6 -6
  26. package/domain/catalog/models/types/product-gender.type.d.ts +1 -1
  27. package/domain/catalog/models/types/product-metadata.type.d.ts +4 -4
  28. package/domain/catalog/models/types/product-review.type.d.ts +17 -17
  29. package/domain/catalog/models/types/shop-description.type.d.ts +8 -8
  30. package/domain/catalog/models/types/shop-price.type.d.ts +6 -6
  31. package/domain/catalog/models/types/stock.type.d.ts +3 -3
  32. package/domain/catalog/models/types/variant-grade.type.d.ts +4 -4
  33. package/domain/catalog/models/variant.d.ts +17 -17
  34. package/domain/catalog/models/wishlist.d.ts +6 -8
  35. package/domain/catalog/repositories/category-collection-children.repository.d.ts +4 -4
  36. package/domain/catalog/repositories/category-filter.repository.d.ts +6 -6
  37. package/domain/catalog/repositories/category.repository.d.ts +18 -18
  38. package/domain/catalog/repositories/filter-option.repository.d.ts +4 -4
  39. package/domain/catalog/repositories/filter.repository.d.ts +4 -4
  40. package/domain/catalog/repositories/index.d.ts +9 -9
  41. package/domain/catalog/repositories/product.repository.d.ts +15 -15
  42. package/domain/catalog/repositories/subscription-product.repository.d.ts +4 -4
  43. package/domain/catalog/repositories/variant.repository.d.ts +4 -4
  44. package/domain/catalog/repositories/wishlist.repository.d.ts +6 -6
  45. package/domain/generic/index.d.ts +2 -2
  46. package/domain/generic/model/base.model.d.ts +14 -14
  47. package/domain/generic/model/identifier-fields.d.ts +4 -4
  48. package/domain/generic/model/index.d.ts +3 -3
  49. package/domain/generic/model/types/base-model-builder.type.d.ts +17 -17
  50. package/domain/generic/model/types/identifier-model.type.d.ts +8 -8
  51. package/domain/generic/model/types/index.d.ts +5 -5
  52. package/domain/generic/model/types/model-base-structure.type.d.ts +12 -12
  53. package/domain/generic/model/types/non-function-properties.type.d.ts +12 -12
  54. package/domain/generic/model/types/non-function-property-name.type.d.ts +13 -13
  55. package/domain/generic/repository/create.repository.d.ts +8 -8
  56. package/domain/generic/repository/crud.repository.d.ts +19 -19
  57. package/domain/generic/repository/delete.repository.d.ts +7 -7
  58. package/domain/generic/repository/enums/index.d.ts +2 -2
  59. package/domain/generic/repository/enums/update-option-actions.enum.d.ts +7 -7
  60. package/domain/generic/repository/enums/where.enum.d.ts +14 -14
  61. package/domain/generic/repository/find.repository.d.ts +17 -17
  62. package/domain/generic/repository/get.repository.d.ts +5 -5
  63. package/domain/generic/repository/index.d.ts +9 -9
  64. package/domain/generic/repository/read.repository.d.ts +14 -14
  65. package/domain/generic/repository/types/index.d.ts +6 -6
  66. package/domain/generic/repository/types/repository-find-filters.type.d.ts +13 -13
  67. package/domain/generic/repository/types/repository-find-result.type.d.ts +14 -14
  68. package/domain/generic/repository/types/repository-limit-options.type.d.ts +4 -4
  69. package/domain/generic/repository/types/repository-order-by-list.type.d.ts +5 -5
  70. package/domain/generic/repository/types/repository-update-params.type.d.ts +11 -11
  71. package/domain/generic/repository/types/where-options.type.d.ts +2 -2
  72. package/domain/generic/repository/update.repository.d.ts +6 -6
  73. package/domain/index.d.ts +6 -6
  74. package/domain/location/index.d.ts +1 -1
  75. package/domain/location/models/address.d.ts +24 -24
  76. package/domain/location/models/index.d.ts +2 -2
  77. package/domain/location/models/types/index.d.ts +3 -3
  78. package/domain/location/models/types/location-bound.type.d.ts +6 -6
  79. package/domain/location/models/types/location-geometry.type.d.ts +7 -7
  80. package/domain/location/models/types/location-lat-lng.type.d.ts +4 -4
  81. package/domain/shop-settings/enums/filter-type.enum.d.ts +19 -19
  82. package/domain/shop-settings/enums/index.d.ts +3 -2
  83. package/domain/shop-settings/enums/questions-filters.enum.d.ts +19 -19
  84. package/domain/shop-settings/enums/shop-page-name.enum.d.ts +19 -0
  85. package/domain/shop-settings/helpers/beauty-questions.helper.d.ts +9 -9
  86. package/domain/shop-settings/helpers/index.d.ts +1 -1
  87. package/domain/shop-settings/index.d.ts +4 -4
  88. package/domain/shop-settings/models/campaign-banner.d.ts +11 -0
  89. package/domain/shop-settings/models/campaign.d.ts +10 -0
  90. package/domain/shop-settings/models/home.d.ts +18 -18
  91. package/domain/shop-settings/models/index.d.ts +6 -4
  92. package/domain/shop-settings/models/shop-menu.d.ts +7 -7
  93. package/domain/shop-settings/models/shop-settings.d.ts +10 -9
  94. package/domain/shop-settings/models/types/banner.type.d.ts +6 -6
  95. package/domain/shop-settings/models/types/benefit.type.d.ts +5 -5
  96. package/domain/shop-settings/models/types/campaign-page.d.ts +17 -0
  97. package/domain/shop-settings/models/types/home-data.type.d.ts +15 -15
  98. package/domain/shop-settings/models/types/index.d.ts +14 -10
  99. package/domain/shop-settings/models/types/menu-nav.type.d.ts +8 -8
  100. package/domain/shop-settings/models/types/sections.type.d.ts +17 -0
  101. package/domain/shop-settings/models/types/shop-banner.type.d.ts +12 -12
  102. package/domain/shop-settings/models/types/shop-brands.type.d.ts +10 -10
  103. package/domain/shop-settings/models/types/shop-carousel.type.d.ts +5 -5
  104. package/domain/shop-settings/models/types/shop-collection.type.d.ts +9 -9
  105. package/domain/shop-settings/models/types/shop-gift.type.d.ts +8 -0
  106. package/domain/shop-settings/models/types/shop-post.type.d.ts +7 -0
  107. package/domain/shop-settings/models/types/shop-section.type.d.ts +12 -9
  108. package/domain/shop-settings/models/types/sub-menu.type.d.ts +8 -8
  109. package/domain/shop-settings/repositories/campaign-banner.repository.d.ts +4 -0
  110. package/domain/shop-settings/repositories/campaign.repository.d.ts +4 -0
  111. package/domain/shop-settings/repositories/home.repository.d.ts +4 -4
  112. package/domain/shop-settings/repositories/index.d.ts +5 -3
  113. package/domain/shop-settings/repositories/shop-menu.repository.d.ts +4 -4
  114. package/domain/shop-settings/repositories/shop-settings.repository.d.ts +4 -4
  115. package/domain/shopping/index.d.ts +2 -2
  116. package/domain/shopping/models/buy-2-win.d.ts +18 -18
  117. package/domain/shopping/models/campaign-dashboard.d.ts +15 -15
  118. package/domain/shopping/models/campaign-hashtag.d.ts +18 -18
  119. package/domain/shopping/models/checkout.d.ts +26 -26
  120. package/domain/shopping/models/coupons/coupon.d.ts +60 -60
  121. package/domain/shopping/models/coupons/enums/coupon-club-mens.enum.d.ts +5 -5
  122. package/domain/shopping/models/coupons/enums/coupon-subtypes.enum.d.ts +4 -4
  123. package/domain/shopping/models/coupons/enums/coupon-types.enum.d.ts +4 -4
  124. package/domain/shopping/models/coupons/enums/exclusivities.enum.d.ts +8 -8
  125. package/domain/shopping/models/coupons/enums/index.d.ts +3 -3
  126. package/domain/shopping/models/coupons/index.d.ts +2 -2
  127. package/domain/shopping/models/enums/checkout-types.enum.d.ts +5 -5
  128. package/domain/shopping/models/enums/index.d.ts +2 -2
  129. package/domain/shopping/models/enums/order-status.enum.d.ts +10 -10
  130. package/domain/shopping/models/index.d.ts +12 -12
  131. package/domain/shopping/models/line-item.d.ts +8 -8
  132. package/domain/shopping/models/order.d.ts +10 -10
  133. package/domain/shopping/models/payment.d.ts +67 -67
  134. package/domain/shopping/models/shipping-method.d.ts +17 -17
  135. package/domain/shopping/models/subscription/checkout.d.ts +20 -20
  136. package/domain/shopping/models/subscription/index.d.ts +2 -2
  137. package/domain/shopping/models/subscription/plan.d.ts +10 -10
  138. package/domain/shopping/models/types/index.d.ts +7 -7
  139. package/domain/shopping/models/types/payment-address.type.d.ts +12 -12
  140. package/domain/shopping/models/types/payment-billing.type.d.ts +7 -7
  141. package/domain/shopping/models/types/payment-card.type.d.ts +14 -14
  142. package/domain/shopping/models/types/payment-customer.type.d.ts +18 -18
  143. package/domain/shopping/models/types/payment-document.type.d.ts +6 -6
  144. package/domain/shopping/models/types/payment-item.type.d.ts +11 -11
  145. package/domain/shopping/models/types/payment-shipping.type.d.ts +10 -10
  146. package/domain/shopping/repositories/buy-2-win.repository.d.ts +4 -4
  147. package/domain/shopping/repositories/campaign-dashboard.repository.d.ts +4 -4
  148. package/domain/shopping/repositories/campaign-hashtag.repository.d.ts +4 -4
  149. package/domain/shopping/repositories/checkout.repository.d.ts +4 -4
  150. package/domain/shopping/repositories/coupon.repository.d.ts +4 -4
  151. package/domain/shopping/repositories/index.d.ts +9 -9
  152. package/domain/shopping/repositories/legacy-order.repository.d.ts +3 -3
  153. package/domain/shopping/repositories/order.repository.d.ts +4 -4
  154. package/domain/shopping/repositories/payment.repository.d.ts +4 -4
  155. package/domain/shopping/repositories/subscription/checkout.repository.d.ts +4 -4
  156. package/domain/shopping/repositories/subscription/index.d.ts +2 -2
  157. package/domain/shopping/repositories/subscription/plan.repository.d.ts +4 -4
  158. package/domain/users/errors/index.d.ts +3 -3
  159. package/domain/users/errors/unauthorized.error.d.ts +4 -4
  160. package/domain/users/errors/user-already-registered.error.d.ts +4 -4
  161. package/domain/users/errors/weak-password.error.d.ts +4 -4
  162. package/domain/users/index.d.ts +5 -5
  163. package/domain/users/models/beauty-profile.d.ts +11 -11
  164. package/domain/users/models/enums/accessory-importances.enum.d.ts +5 -5
  165. package/domain/users/models/enums/area.enum.d.ts +11 -11
  166. package/domain/users/models/enums/beard-problems.enum.d.ts +9 -9
  167. package/domain/users/models/enums/beard-sizes.enum.d.ts +7 -7
  168. package/domain/users/models/enums/beauty-product-importances.enum.d.ts +6 -6
  169. package/domain/users/models/enums/body-problems.enum.d.ts +11 -11
  170. package/domain/users/models/enums/body-shapes.enum.d.ts +7 -7
  171. package/domain/users/models/enums/body-tattoos.enum.d.ts +5 -5
  172. package/domain/users/models/enums/face-skin-oilinesses.enum.d.ts +7 -7
  173. package/domain/users/models/enums/face-skin-problems.enum.d.ts +10 -10
  174. package/domain/users/models/enums/face-skin-tones.enum.d.ts +8 -8
  175. package/domain/users/models/enums/family-incomes.enum.d.ts +8 -8
  176. package/domain/users/models/enums/fragrance-importances.enum.d.ts +5 -5
  177. package/domain/users/models/enums/hair-colors.enum.d.ts +10 -10
  178. package/domain/users/models/enums/hair-problems.enum.d.ts +10 -10
  179. package/domain/users/models/enums/hair-strands.enum.d.ts +8 -8
  180. package/domain/users/models/enums/hair-types.enum.d.ts +7 -7
  181. package/domain/users/models/enums/index.d.ts +20 -20
  182. package/domain/users/models/enums/office-position.enum.d.ts +6 -6
  183. package/domain/users/models/enums/product-spents.enum.d.ts +8 -8
  184. package/domain/users/models/enums/user-type.enum.d.ts +8 -8
  185. package/domain/users/models/index.d.ts +7 -7
  186. package/domain/users/models/lead.d.ts +8 -8
  187. package/domain/users/models/subscription/edition.d.ts +16 -16
  188. package/domain/users/models/subscription/enums/billing-status.enum.d.ts +3 -3
  189. package/domain/users/models/subscription/enums/edition-status.enum.d.ts +4 -4
  190. package/domain/users/models/subscription/enums/index.d.ts +4 -4
  191. package/domain/users/models/subscription/enums/payment-type.enum.d.ts +5 -5
  192. package/domain/users/models/subscription/enums/status.enum.d.ts +4 -4
  193. package/domain/users/models/subscription/index.d.ts +4 -4
  194. package/domain/users/models/subscription/payment.d.ts +13 -13
  195. package/domain/users/models/subscription/subscription.d.ts +28 -28
  196. package/domain/users/models/user-address.d.ts +6 -6
  197. package/domain/users/models/user-payment-method.d.ts +14 -14
  198. package/domain/users/models/user.d.ts +27 -27
  199. package/domain/users/repositories/beauty-profile.repository.d.ts +4 -4
  200. package/domain/users/repositories/edition.repository.d.ts +4 -4
  201. package/domain/users/repositories/index.d.ts +8 -8
  202. package/domain/users/repositories/lead.repository.d.ts +4 -4
  203. package/domain/users/repositories/subscription-payment.repository.d.ts +4 -4
  204. package/domain/users/repositories/subscription.repository.d.ts +4 -4
  205. package/domain/users/repositories/user-address.repository.d.ts +4 -4
  206. package/domain/users/repositories/user-payment-method.repository.d.ts +4 -4
  207. package/domain/users/repositories/user.repository.d.ts +6 -6
  208. package/domain/users/services/authentication.service.d.ts +12 -12
  209. package/domain/users/services/index.d.ts +3 -3
  210. package/domain/users/services/register.service.d.ts +7 -7
  211. package/domain/users/services/types/basic-user-data.type.d.ts +4 -4
  212. package/domain/users/services/types/index.d.ts +1 -1
  213. package/domain/users/use-cases/authentication.d.ts +21 -21
  214. package/domain/users/use-cases/index.d.ts +4 -4
  215. package/domain/users/use-cases/recovery-password.d.ts +6 -6
  216. package/domain/users/use-cases/register.d.ts +13 -13
  217. package/domain/users/use-cases/signout.d.ts +6 -6
  218. package/errors/duplicated-results.error.d.ts +4 -4
  219. package/errors/index.d.ts +4 -4
  220. package/errors/invalid-argument.error.d.ts +4 -4
  221. package/errors/not-found.error.d.ts +4 -4
  222. package/errors/required-argument.error.d.ts +6 -6
  223. package/{esm2020 → esm2022}/domain/catalog/helpers/index.mjs +2 -2
  224. package/{esm2020 → esm2022}/domain/catalog/helpers/round-product-price.helper.mjs +15 -15
  225. package/{esm2020 → esm2022}/domain/catalog/index.mjs +4 -4
  226. package/esm2022/domain/catalog/models/category-base.mjs +18 -0
  227. package/{esm2020 → esm2022}/domain/catalog/models/category-collection-children.mjs +13 -13
  228. package/{esm2020 → esm2022}/domain/catalog/models/category-filter.mjs +19 -19
  229. package/{esm2020 → esm2022}/domain/catalog/models/category-for-product.mjs +7 -7
  230. package/{esm2020 → esm2022}/domain/catalog/models/category.mjs +14 -14
  231. package/{esm2020 → esm2022}/domain/catalog/models/enums/index.mjs +3 -3
  232. package/{esm2020 → esm2022}/domain/catalog/models/enums/product-genders.enum.mjs +7 -7
  233. package/{esm2020 → esm2022}/domain/catalog/models/enums/shops.enum.mjs +8 -8
  234. package/{esm2020 → esm2022}/domain/catalog/models/filter-option.mjs +7 -7
  235. package/{esm2020 → esm2022}/domain/catalog/models/filter.mjs +7 -7
  236. package/{esm2020 → esm2022}/domain/catalog/models/index.mjs +12 -12
  237. package/{esm2020 → esm2022}/domain/catalog/models/kit-product.mjs +18 -18
  238. package/esm2022/domain/catalog/models/product-base.mjs +25 -0
  239. package/{esm2020 → esm2022}/domain/catalog/models/product-for-category.mjs +14 -14
  240. package/{esm2020 → esm2022}/domain/catalog/models/product-for-kit.mjs +14 -14
  241. package/{esm2020 → esm2022}/domain/catalog/models/product.mjs +19 -19
  242. package/{esm2020 → esm2022}/domain/catalog/models/types/category-condition.type.mjs +2 -2
  243. package/{esm2020 → esm2022}/domain/catalog/models/types/category-metadata.type.mjs +2 -2
  244. package/{esm2020 → esm2022}/domain/catalog/models/types/category-product.mjs +2 -2
  245. package/{esm2020 → esm2022}/domain/catalog/models/types/index.mjs +12 -12
  246. package/{esm2020 → esm2022}/domain/catalog/models/types/product-evaluation.type.mjs +2 -2
  247. package/{esm2020 → esm2022}/domain/catalog/models/types/product-gender.type.mjs +2 -2
  248. package/{esm2020 → esm2022}/domain/catalog/models/types/product-metadata.type.mjs +2 -2
  249. package/esm2022/domain/catalog/models/types/product-review.type.mjs +2 -0
  250. package/{esm2020 → esm2022}/domain/catalog/models/types/shop-description.type.mjs +2 -2
  251. package/{esm2020 → esm2022}/domain/catalog/models/types/shop-price.type.mjs +2 -2
  252. package/{esm2020 → esm2022}/domain/catalog/models/types/stock.type.mjs +2 -2
  253. package/{esm2020 → esm2022}/domain/catalog/models/types/variant-grade.type.mjs +2 -2
  254. package/esm2022/domain/catalog/models/variant.mjs +7 -0
  255. package/{esm2020 → esm2022}/domain/catalog/models/wishlist.mjs +7 -7
  256. package/{esm2020 → esm2022}/domain/catalog/repositories/category-collection-children.repository.mjs +2 -2
  257. package/esm2022/domain/catalog/repositories/category-filter.repository.mjs +2 -0
  258. package/esm2022/domain/catalog/repositories/category.repository.mjs +2 -0
  259. package/{esm2020 → esm2022}/domain/catalog/repositories/filter-option.repository.mjs +2 -2
  260. package/{esm2020 → esm2022}/domain/catalog/repositories/filter.repository.mjs +2 -2
  261. package/{esm2020 → esm2022}/domain/catalog/repositories/index.mjs +10 -10
  262. package/esm2022/domain/catalog/repositories/product.repository.mjs +2 -0
  263. package/{esm2020 → esm2022}/domain/catalog/repositories/subscription-product.repository.mjs +2 -2
  264. package/{esm2020 → esm2022}/domain/catalog/repositories/variant.repository.mjs +2 -2
  265. package/esm2022/domain/catalog/repositories/wishlist.repository.mjs +2 -0
  266. package/{esm2020 → esm2022}/domain/generic/index.mjs +3 -3
  267. package/{esm2020 → esm2022}/domain/generic/model/base.model.mjs +24 -24
  268. package/{esm2020 → esm2022}/domain/generic/model/identifier-fields.mjs +2 -2
  269. package/{esm2020 → esm2022}/domain/generic/model/index.mjs +4 -4
  270. package/esm2022/domain/generic/model/types/base-model-builder.type.mjs +2 -0
  271. package/esm2022/domain/generic/model/types/identifier-model.type.mjs +2 -0
  272. package/{esm2020 → esm2022}/domain/generic/model/types/index.mjs +6 -6
  273. package/esm2022/domain/generic/model/types/model-base-structure.type.mjs +2 -0
  274. package/esm2022/domain/generic/model/types/non-function-properties.type.mjs +2 -0
  275. package/esm2022/domain/generic/model/types/non-function-property-name.type.mjs +2 -0
  276. package/esm2022/domain/generic/repository/create.repository.mjs +2 -0
  277. package/esm2022/domain/generic/repository/crud.repository.mjs +2 -0
  278. package/esm2022/domain/generic/repository/delete.repository.mjs +2 -0
  279. package/{esm2020 → esm2022}/domain/generic/repository/enums/index.mjs +3 -3
  280. package/{esm2020 → esm2022}/domain/generic/repository/enums/update-option-actions.enum.mjs +9 -9
  281. package/{esm2020 → esm2022}/domain/generic/repository/enums/where.enum.mjs +16 -16
  282. package/esm2022/domain/generic/repository/find.repository.mjs +2 -0
  283. package/{esm2020 → esm2022}/domain/generic/repository/get.repository.mjs +2 -2
  284. package/{esm2020 → esm2022}/domain/generic/repository/index.mjs +10 -10
  285. package/esm2022/domain/generic/repository/read.repository.mjs +2 -0
  286. package/{esm2020 → esm2022}/domain/generic/repository/types/index.mjs +7 -7
  287. package/esm2022/domain/generic/repository/types/repository-find-filters.type.mjs +2 -0
  288. package/esm2022/domain/generic/repository/types/repository-find-result.type.mjs +2 -0
  289. package/{esm2020 → esm2022}/domain/generic/repository/types/repository-limit-options.type.mjs +2 -2
  290. package/{esm2020 → esm2022}/domain/generic/repository/types/repository-order-by-list.type.mjs +2 -2
  291. package/esm2022/domain/generic/repository/types/repository-update-params.type.mjs +2 -0
  292. package/{esm2020 → esm2022}/domain/generic/repository/types/where-options.type.mjs +2 -2
  293. package/esm2022/domain/generic/repository/update.repository.mjs +2 -0
  294. package/{esm2020 → esm2022}/domain/index.mjs +7 -7
  295. package/{esm2020 → esm2022}/domain/location/index.mjs +2 -2
  296. package/esm2022/domain/location/models/address.mjs +7 -0
  297. package/{esm2020 → esm2022}/domain/location/models/index.mjs +3 -3
  298. package/{esm2020 → esm2022}/domain/location/models/types/index.mjs +4 -4
  299. package/{esm2020 → esm2022}/domain/location/models/types/location-bound.type.mjs +2 -2
  300. package/{esm2020 → esm2022}/domain/location/models/types/location-geometry.type.mjs +2 -2
  301. package/{esm2020 → esm2022}/domain/location/models/types/location-lat-lng.type.mjs +2 -2
  302. package/{esm2020 → esm2022}/domain/shop-settings/enums/filter-type.enum.mjs +21 -21
  303. package/{esm2020 → esm2022}/domain/shop-settings/enums/index.mjs +4 -3
  304. package/{esm2020 → esm2022}/domain/shop-settings/enums/questions-filters.enum.mjs +21 -21
  305. package/esm2022/domain/shop-settings/enums/shop-page-name.enum.mjs +21 -0
  306. package/{esm2020 → esm2022}/domain/shop-settings/helpers/beauty-questions.helper.mjs +47 -47
  307. package/{esm2020 → esm2022}/domain/shop-settings/helpers/index.mjs +2 -2
  308. package/{esm2020 → esm2022}/domain/shop-settings/index.mjs +5 -5
  309. package/esm2022/domain/shop-settings/models/campaign-banner.mjs +7 -0
  310. package/esm2022/domain/shop-settings/models/campaign.mjs +7 -0
  311. package/esm2022/domain/shop-settings/models/home.mjs +7 -0
  312. package/esm2022/domain/shop-settings/models/index.mjs +7 -0
  313. package/{esm2020 → esm2022}/domain/shop-settings/models/shop-menu.mjs +7 -7
  314. package/{esm2020 → esm2022}/domain/shop-settings/models/shop-settings.mjs +7 -7
  315. package/{esm2020 → esm2022}/domain/shop-settings/models/types/banner.type.mjs +2 -2
  316. package/{esm2020 → esm2022}/domain/shop-settings/models/types/benefit.type.mjs +2 -2
  317. package/esm2022/domain/shop-settings/models/types/campaign-page.mjs +2 -0
  318. package/esm2022/domain/shop-settings/models/types/home-data.type.mjs +2 -0
  319. package/esm2022/domain/shop-settings/models/types/index.mjs +15 -0
  320. package/{esm2020 → esm2022}/domain/shop-settings/models/types/menu-nav.type.mjs +2 -2
  321. package/esm2022/domain/shop-settings/models/types/sections.type.mjs +2 -0
  322. package/{esm2020 → esm2022}/domain/shop-settings/models/types/shop-banner.type.mjs +2 -2
  323. package/{esm2020 → esm2022}/domain/shop-settings/models/types/shop-brands.type.mjs +2 -2
  324. package/{esm2020 → esm2022}/domain/shop-settings/models/types/shop-carousel.type.mjs +2 -2
  325. package/{esm2020 → esm2022}/domain/shop-settings/models/types/shop-collection.type.mjs +2 -2
  326. package/esm2022/domain/shop-settings/models/types/shop-gift.type.mjs +2 -0
  327. package/esm2022/domain/shop-settings/models/types/shop-post.type.mjs +2 -0
  328. package/{esm2020 → esm2022}/domain/shop-settings/models/types/shop-section.type.mjs +2 -2
  329. package/{esm2020 → esm2022}/domain/shop-settings/models/types/sub-menu.type.mjs +2 -2
  330. package/esm2022/domain/shop-settings/repositories/campaign-banner.repository.mjs +2 -0
  331. package/esm2022/domain/shop-settings/repositories/campaign.repository.mjs +2 -0
  332. package/{esm2020 → esm2022}/domain/shop-settings/repositories/home.repository.mjs +2 -2
  333. package/esm2022/domain/shop-settings/repositories/index.mjs +6 -0
  334. package/{esm2020 → esm2022}/domain/shop-settings/repositories/shop-menu.repository.mjs +2 -2
  335. package/{esm2020 → esm2022}/domain/shop-settings/repositories/shop-settings.repository.mjs +2 -2
  336. package/{esm2020 → esm2022}/domain/shopping/index.mjs +3 -3
  337. package/{esm2020 → esm2022}/domain/shopping/models/buy-2-win.mjs +14 -14
  338. package/{esm2020 → esm2022}/domain/shopping/models/campaign-dashboard.mjs +7 -7
  339. package/esm2022/domain/shopping/models/campaign-hashtag.mjs +7 -0
  340. package/{esm2020 → esm2022}/domain/shopping/models/checkout.mjs +37 -37
  341. package/esm2022/domain/shopping/models/coupons/coupon.mjs +38 -0
  342. package/{esm2020 → esm2022}/domain/shopping/models/coupons/enums/coupon-club-mens.enum.mjs +7 -7
  343. package/{esm2020 → esm2022}/domain/shopping/models/coupons/enums/coupon-subtypes.enum.mjs +6 -6
  344. package/{esm2020 → esm2022}/domain/shopping/models/coupons/enums/coupon-types.enum.mjs +10 -10
  345. package/{esm2020 → esm2022}/domain/shopping/models/coupons/enums/exclusivities.enum.mjs +10 -10
  346. package/{esm2020 → esm2022}/domain/shopping/models/coupons/enums/index.mjs +4 -4
  347. package/{esm2020 → esm2022}/domain/shopping/models/coupons/index.mjs +3 -3
  348. package/{esm2020 → esm2022}/domain/shopping/models/enums/checkout-types.enum.mjs +7 -7
  349. package/{esm2020 → esm2022}/domain/shopping/models/enums/index.mjs +3 -3
  350. package/{esm2020 → esm2022}/domain/shopping/models/enums/order-status.enum.mjs +12 -12
  351. package/{esm2020 → esm2022}/domain/shopping/models/index.mjs +13 -13
  352. package/{esm2020 → esm2022}/domain/shopping/models/line-item.mjs +4 -4
  353. package/{esm2020 → esm2022}/domain/shopping/models/order.mjs +11 -11
  354. package/{esm2020 → esm2022}/domain/shopping/models/payment.mjs +169 -169
  355. package/{esm2020 → esm2022}/domain/shopping/models/shipping-method.mjs +7 -7
  356. package/{esm2020 → esm2022}/domain/shopping/models/subscription/checkout.mjs +28 -28
  357. package/{esm2020 → esm2022}/domain/shopping/models/subscription/index.mjs +3 -3
  358. package/{esm2020 → esm2022}/domain/shopping/models/subscription/plan.mjs +7 -7
  359. package/{esm2020 → esm2022}/domain/shopping/models/types/index.mjs +8 -8
  360. package/esm2022/domain/shopping/models/types/payment-address.type.mjs +2 -0
  361. package/{esm2020 → esm2022}/domain/shopping/models/types/payment-billing.type.mjs +2 -2
  362. package/esm2022/domain/shopping/models/types/payment-card.type.mjs +2 -0
  363. package/esm2022/domain/shopping/models/types/payment-customer.type.mjs +2 -0
  364. package/{esm2020 → esm2022}/domain/shopping/models/types/payment-document.type.mjs +2 -2
  365. package/{esm2020 → esm2022}/domain/shopping/models/types/payment-item.type.mjs +2 -2
  366. package/{esm2020 → esm2022}/domain/shopping/models/types/payment-shipping.type.mjs +2 -2
  367. package/{esm2020 → esm2022}/domain/shopping/repositories/buy-2-win.repository.mjs +2 -2
  368. package/{esm2020 → esm2022}/domain/shopping/repositories/campaign-dashboard.repository.mjs +2 -2
  369. package/{esm2020 → esm2022}/domain/shopping/repositories/campaign-hashtag.repository.mjs +2 -2
  370. package/{esm2020 → esm2022}/domain/shopping/repositories/checkout.repository.mjs +2 -2
  371. package/{esm2020 → esm2022}/domain/shopping/repositories/coupon.repository.mjs +2 -2
  372. package/{esm2020 → esm2022}/domain/shopping/repositories/index.mjs +10 -10
  373. package/{esm2020 → esm2022}/domain/shopping/repositories/legacy-order.repository.mjs +2 -2
  374. package/{esm2020 → esm2022}/domain/shopping/repositories/order.repository.mjs +2 -2
  375. package/{esm2020 → esm2022}/domain/shopping/repositories/payment.repository.mjs +2 -2
  376. package/{esm2020 → esm2022}/domain/shopping/repositories/subscription/checkout.repository.mjs +2 -2
  377. package/{esm2020 → esm2022}/domain/shopping/repositories/subscription/index.mjs +3 -3
  378. package/{esm2020 → esm2022}/domain/shopping/repositories/subscription/plan.repository.mjs +2 -2
  379. package/{esm2020 → esm2022}/domain/users/errors/index.mjs +4 -4
  380. package/{esm2020 → esm2022}/domain/users/errors/unauthorized.error.mjs +7 -7
  381. package/{esm2020 → esm2022}/domain/users/errors/user-already-registered.error.mjs +7 -7
  382. package/{esm2020 → esm2022}/domain/users/errors/weak-password.error.mjs +7 -7
  383. package/{esm2020 → esm2022}/domain/users/index.mjs +6 -6
  384. package/{esm2020 → esm2022}/domain/users/models/beauty-profile.mjs +12 -12
  385. package/{esm2020 → esm2022}/domain/users/models/enums/accessory-importances.enum.mjs +7 -7
  386. package/{esm2020 → esm2022}/domain/users/models/enums/area.enum.mjs +13 -13
  387. package/{esm2020 → esm2022}/domain/users/models/enums/beard-problems.enum.mjs +11 -11
  388. package/{esm2020 → esm2022}/domain/users/models/enums/beard-sizes.enum.mjs +9 -9
  389. package/{esm2020 → esm2022}/domain/users/models/enums/beauty-product-importances.enum.mjs +8 -8
  390. package/{esm2020 → esm2022}/domain/users/models/enums/body-problems.enum.mjs +13 -13
  391. package/{esm2020 → esm2022}/domain/users/models/enums/body-shapes.enum.mjs +9 -9
  392. package/{esm2020 → esm2022}/domain/users/models/enums/body-tattoos.enum.mjs +7 -7
  393. package/{esm2020 → esm2022}/domain/users/models/enums/face-skin-oilinesses.enum.mjs +9 -9
  394. package/{esm2020 → esm2022}/domain/users/models/enums/face-skin-problems.enum.mjs +12 -12
  395. package/{esm2020 → esm2022}/domain/users/models/enums/face-skin-tones.enum.mjs +10 -10
  396. package/{esm2020 → esm2022}/domain/users/models/enums/family-incomes.enum.mjs +10 -10
  397. package/{esm2020 → esm2022}/domain/users/models/enums/fragrance-importances.enum.mjs +7 -7
  398. package/{esm2020 → esm2022}/domain/users/models/enums/hair-colors.enum.mjs +12 -12
  399. package/{esm2020 → esm2022}/domain/users/models/enums/hair-problems.enum.mjs +12 -12
  400. package/{esm2020 → esm2022}/domain/users/models/enums/hair-strands.enum.mjs +10 -10
  401. package/{esm2020 → esm2022}/domain/users/models/enums/hair-types.enum.mjs +9 -9
  402. package/{esm2020 → esm2022}/domain/users/models/enums/index.mjs +21 -21
  403. package/{esm2020 → esm2022}/domain/users/models/enums/office-position.enum.mjs +8 -8
  404. package/{esm2020 → esm2022}/domain/users/models/enums/product-spents.enum.mjs +10 -10
  405. package/{esm2020 → esm2022}/domain/users/models/enums/user-type.enum.mjs +10 -10
  406. package/{esm2020 → esm2022}/domain/users/models/index.mjs +8 -8
  407. package/{esm2020 → esm2022}/domain/users/models/lead.mjs +7 -7
  408. package/esm2022/domain/users/models/subscription/edition.mjs +7 -0
  409. package/{esm2020 → esm2022}/domain/users/models/subscription/enums/billing-status.enum.mjs +5 -5
  410. package/{esm2020 → esm2022}/domain/users/models/subscription/enums/edition-status.enum.mjs +6 -6
  411. package/{esm2020 → esm2022}/domain/users/models/subscription/enums/index.mjs +5 -5
  412. package/{esm2020 → esm2022}/domain/users/models/subscription/enums/payment-type.enum.mjs +7 -7
  413. package/{esm2020 → esm2022}/domain/users/models/subscription/enums/status.enum.mjs +6 -6
  414. package/{esm2020 → esm2022}/domain/users/models/subscription/index.mjs +5 -5
  415. package/{esm2020 → esm2022}/domain/users/models/subscription/payment.mjs +14 -14
  416. package/{esm2020 → esm2022}/domain/users/models/subscription/subscription.mjs +43 -43
  417. package/{esm2020 → esm2022}/domain/users/models/user-address.mjs +7 -7
  418. package/{esm2020 → esm2022}/domain/users/models/user-payment-method.mjs +7 -7
  419. package/{esm2020 → esm2022}/domain/users/models/user.mjs +26 -26
  420. package/{esm2020 → esm2022}/domain/users/repositories/beauty-profile.repository.mjs +2 -2
  421. package/{esm2020 → esm2022}/domain/users/repositories/edition.repository.mjs +2 -2
  422. package/{esm2020 → esm2022}/domain/users/repositories/index.mjs +9 -9
  423. package/{esm2020 → esm2022}/domain/users/repositories/lead.repository.mjs +2 -2
  424. package/{esm2020 → esm2022}/domain/users/repositories/subscription-payment.repository.mjs +2 -2
  425. package/{esm2020 → esm2022}/domain/users/repositories/subscription.repository.mjs +2 -2
  426. package/{esm2020 → esm2022}/domain/users/repositories/user-address.repository.mjs +2 -2
  427. package/{esm2020 → esm2022}/domain/users/repositories/user-payment-method.repository.mjs +2 -2
  428. package/esm2022/domain/users/repositories/user.repository.mjs +2 -0
  429. package/esm2022/domain/users/services/authentication.service.mjs +2 -0
  430. package/{esm2020 → esm2022}/domain/users/services/index.mjs +4 -4
  431. package/{esm2020 → esm2022}/domain/users/services/register.service.mjs +2 -2
  432. package/{esm2020 → esm2022}/domain/users/services/types/basic-user-data.type.mjs +2 -2
  433. package/{esm2020 → esm2022}/domain/users/services/types/index.mjs +2 -2
  434. package/{esm2020 → esm2022}/domain/users/use-cases/authentication.mjs +43 -43
  435. package/{esm2020 → esm2022}/domain/users/use-cases/index.mjs +5 -5
  436. package/{esm2020 → esm2022}/domain/users/use-cases/recovery-password.mjs +9 -9
  437. package/{esm2020 → esm2022}/domain/users/use-cases/register.mjs +38 -38
  438. package/{esm2020 → esm2022}/domain/users/use-cases/signout.mjs +9 -9
  439. package/{esm2020 → esm2022}/errors/duplicated-results.error.mjs +7 -7
  440. package/{esm2020 → esm2022}/errors/index.mjs +5 -5
  441. package/{esm2020 → esm2022}/errors/invalid-argument.error.mjs +7 -7
  442. package/{esm2020 → esm2022}/errors/not-found.error.mjs +7 -7
  443. package/{esm2020 → esm2022}/errors/required-argument.error.mjs +9 -9
  444. package/{esm2020 → esm2022}/index.mjs +6 -6
  445. package/{esm2020 → esm2022}/infra/elasticsearch/adapters/axios.adapter.mjs +67 -67
  446. package/esm2022/infra/elasticsearch/adapters/elastic-search.adapter.mjs +2 -0
  447. package/{esm2020 → esm2022}/infra/elasticsearch/adapters/index.mjs +3 -3
  448. package/{esm2020 → esm2022}/infra/elasticsearch/index.mjs +4 -4
  449. package/{esm2020 → esm2022}/infra/elasticsearch/indexes/index.mjs +2 -2
  450. package/esm2022/infra/elasticsearch/indexes/products-index.mjs +104 -0
  451. package/{esm2020 → esm2022}/infra/elasticsearch/types/elastic-search-result.mjs +2 -2
  452. package/{esm2020 → esm2022}/infra/elasticsearch/types/index.mjs +2 -2
  453. package/{esm2020 → esm2022}/infra/firebase/auth/authentication-firebase-auth.service.mjs +41 -41
  454. package/{esm2020 → esm2022}/infra/firebase/auth/index.mjs +3 -3
  455. package/{esm2020 → esm2022}/infra/firebase/auth/register-firebase-auth.service.mjs +33 -33
  456. package/{esm2020 → esm2022}/infra/firebase/auth/types/firebase-user-with-id.type.mjs +2 -2
  457. package/{esm2020 → esm2022}/infra/firebase/firestore/enums/firestore-field-type.enum.mjs +10 -10
  458. package/{esm2020 → esm2022}/infra/firebase/firestore/enums/index.mjs +2 -2
  459. package/{esm2020 → esm2022}/infra/firebase/firestore/index.mjs +4 -4
  460. package/{esm2020 → esm2022}/infra/firebase/firestore/mixins/index.mjs +10 -10
  461. package/{esm2020 → esm2022}/infra/firebase/firestore/mixins/with-create-firestore.mixin.mjs +31 -31
  462. package/esm2022/infra/firebase/firestore/mixins/with-crud-firestore.mixin.mjs +10 -0
  463. package/{esm2020 → esm2022}/infra/firebase/firestore/mixins/with-delete-firestore.mixin.mjs +18 -18
  464. package/{esm2020 → esm2022}/infra/firebase/firestore/mixins/with-find-firestore.mixin.mjs +110 -110
  465. package/{esm2020 → esm2022}/infra/firebase/firestore/mixins/with-firestore.mixin.mjs +80 -80
  466. package/{esm2020 → esm2022}/infra/firebase/firestore/mixins/with-get-firestore.mixin.mjs +23 -23
  467. package/{esm2020 → esm2022}/infra/firebase/firestore/mixins/with-helpers.mixin.mjs +17 -17
  468. package/esm2022/infra/firebase/firestore/mixins/with-sub-collection.mixin.mjs +13 -0
  469. package/{esm2020 → esm2022}/infra/firebase/firestore/mixins/with-update-firestore.mixin.mjs +51 -51
  470. package/{esm2020 → esm2022}/infra/firebase/firestore/repositories/catalog/category-firestore.repository.mjs +67 -67
  471. package/{esm2020 → esm2022}/infra/firebase/firestore/repositories/catalog/index.mjs +5 -5
  472. package/{esm2020 → esm2022}/infra/firebase/firestore/repositories/catalog/product-firestore.repository.mjs +54 -54
  473. package/{esm2020 → esm2022}/infra/firebase/firestore/repositories/catalog/product-variant-firestore.repository.mjs +16 -16
  474. package/{esm2020 → esm2022}/infra/firebase/firestore/repositories/catalog/subscription-product-firestore.repository.mjs +14 -14
  475. package/{esm2020 → esm2022}/infra/firebase/firestore/repositories/index.mjs +5 -5
  476. package/esm2022/infra/firebase/firestore/repositories/shop-settings/campaign-banner-firestore.repository.mjs +14 -0
  477. package/esm2022/infra/firebase/firestore/repositories/shop-settings/campaign-firestore.repository.mjs +14 -0
  478. package/{esm2020 → esm2022}/infra/firebase/firestore/repositories/shop-settings/home-firestore.repository.mjs +60 -60
  479. package/esm2022/infra/firebase/firestore/repositories/shop-settings/index.mjs +6 -0
  480. package/{esm2020 → esm2022}/infra/firebase/firestore/repositories/shop-settings/shop-menu-firestore.repository.mjs +14 -14
  481. package/{esm2020 → esm2022}/infra/firebase/firestore/repositories/shop-settings/shop-settings-firestore.repository.mjs +14 -14
  482. package/{esm2020 → esm2022}/infra/firebase/firestore/repositories/shopping/buy-2-win-firestore.repository.mjs +14 -14
  483. package/{esm2020 → esm2022}/infra/firebase/firestore/repositories/shopping/campaign-dashboard-firestore.repository.mjs +14 -14
  484. package/{esm2020 → esm2022}/infra/firebase/firestore/repositories/shopping/campaign-hashtag-firestore.repository.mjs +14 -14
  485. package/{esm2020 → esm2022}/infra/firebase/firestore/repositories/shopping/checkout-firestore.repository.mjs +14 -14
  486. package/{esm2020 → esm2022}/infra/firebase/firestore/repositories/shopping/checkout-subscription-firestore.repository.mjs +14 -14
  487. package/{esm2020 → esm2022}/infra/firebase/firestore/repositories/shopping/coupon-firestore.repository.mjs +31 -31
  488. package/{esm2020 → esm2022}/infra/firebase/firestore/repositories/shopping/index.mjs +11 -11
  489. package/{esm2020 → esm2022}/infra/firebase/firestore/repositories/shopping/legacy-order-firestore.repository.mjs +11 -11
  490. package/{esm2020 → esm2022}/infra/firebase/firestore/repositories/shopping/order-firestore.repository.mjs +40 -40
  491. package/{esm2020 → esm2022}/infra/firebase/firestore/repositories/shopping/payment-firestore.repository.mjs +14 -14
  492. package/{esm2020 → esm2022}/infra/firebase/firestore/repositories/shopping/subscription-plan-firestore.repository.mjs +14 -14
  493. package/{esm2020 → esm2022}/infra/firebase/firestore/repositories/users/index.mjs +9 -9
  494. package/{esm2020 → esm2022}/infra/firebase/firestore/repositories/users/lead-firestore.repository.mjs +14 -14
  495. package/{esm2020 → esm2022}/infra/firebase/firestore/repositories/users/subscription-edition-firestore.repository.mjs +16 -16
  496. package/{esm2020 → esm2022}/infra/firebase/firestore/repositories/users/subscription-firestore.repository.mjs +14 -14
  497. package/{esm2020 → esm2022}/infra/firebase/firestore/repositories/users/subscription-payment-firestore.repository.mjs +16 -16
  498. package/{esm2020 → esm2022}/infra/firebase/firestore/repositories/users/user-address-firestore.repository.mjs +16 -16
  499. package/{esm2020 → esm2022}/infra/firebase/firestore/repositories/users/user-beauty-profile-firestore.repository.mjs +16 -16
  500. package/{esm2020 → esm2022}/infra/firebase/firestore/repositories/users/user-firestore.repository.mjs +50 -50
  501. package/{esm2020 → esm2022}/infra/firebase/firestore/repositories/users/user-payment-method-firestore.repository.mjs +16 -16
  502. package/esm2022/infra/firebase/firestore/types/firestore-interceptors.type.mjs +2 -0
  503. package/esm2022/infra/firebase/firestore/types/firestore-sub.repository.type.mjs +2 -0
  504. package/esm2022/infra/firebase/firestore/types/firestore.helpers.type.mjs +2 -0
  505. package/esm2022/infra/firebase/firestore/types/firestore.repository.type.mjs +2 -0
  506. package/{esm2020 → esm2022}/infra/firebase/firestore/types/index.mjs +5 -5
  507. package/{esm2020 → esm2022}/infra/firebase/index.mjs +3 -3
  508. package/{esm2020 → esm2022}/infra/hasura-graphql/enums/hasura-graphql-column-type.enum.mjs +13 -13
  509. package/{esm2020 → esm2022}/infra/hasura-graphql/enums/hasura-graphql-where.enum.mjs +17 -17
  510. package/{esm2020 → esm2022}/infra/hasura-graphql/enums/index.mjs +3 -3
  511. package/{esm2020 → esm2022}/infra/hasura-graphql/index.mjs +5 -5
  512. package/esm2022/infra/hasura-graphql/mixins/helpers/attribute-option.helper.mjs +35 -0
  513. package/esm2022/infra/hasura-graphql/mixins/helpers/bind-filter-query.helper.mjs +71 -0
  514. package/esm2022/infra/hasura-graphql/mixins/helpers/filter-option.helper.mjs +22 -0
  515. package/esm2022/infra/hasura-graphql/mixins/helpers/graphql-field.helper.mjs +125 -0
  516. package/{esm2020 → esm2022}/infra/hasura-graphql/mixins/helpers/index.mjs +5 -5
  517. package/{esm2020 → esm2022}/infra/hasura-graphql/mixins/index.mjs +8 -8
  518. package/{esm2020 → esm2022}/infra/hasura-graphql/mixins/with-create-hasura-graphql.mixin.mjs +39 -39
  519. package/esm2022/infra/hasura-graphql/mixins/with-crud-hasura-graphql.mixin.mjs +10 -0
  520. package/{esm2020 → esm2022}/infra/hasura-graphql/mixins/with-delete-hasura-graphql.mixin.mjs +31 -31
  521. package/{esm2020 → esm2022}/infra/hasura-graphql/mixins/with-find-hasura-graphql.mixin.mjs +152 -152
  522. package/{esm2020 → esm2022}/infra/hasura-graphql/mixins/with-get-hasura-graphql.mixin.mjs +37 -37
  523. package/esm2022/infra/hasura-graphql/mixins/with-hasura-graphql.mixin.mjs +108 -0
  524. package/{esm2020 → esm2022}/infra/hasura-graphql/mixins/with-update-hasura-graphql.mixin.mjs +62 -62
  525. package/{esm2020 → esm2022}/infra/hasura-graphql/models/category-hasura-graphql.mjs +4 -4
  526. package/{esm2020 → esm2022}/infra/hasura-graphql/models/index.mjs +5 -5
  527. package/{esm2020 → esm2022}/infra/hasura-graphql/models/kit-product-hasura-graphql.mjs +15 -15
  528. package/{esm2020 → esm2022}/infra/hasura-graphql/models/product-hasura-graphql.mjs +11 -11
  529. package/{esm2020 → esm2022}/infra/hasura-graphql/models/variant-hasura-graphql.mjs +9 -9
  530. package/{esm2020 → esm2022}/infra/hasura-graphql/repositories/catalog/category-collection-children-hasura-graphql.repository.mjs +39 -39
  531. package/{esm2020 → esm2022}/infra/hasura-graphql/repositories/catalog/category-filter-hasura-graphql.repository.mjs +107 -107
  532. package/esm2022/infra/hasura-graphql/repositories/catalog/category-hasura-graphql.repository.mjs +339 -0
  533. package/{esm2020 → esm2022}/infra/hasura-graphql/repositories/catalog/filter-hasura-graphql.repository.mjs +105 -105
  534. package/{esm2020 → esm2022}/infra/hasura-graphql/repositories/catalog/filter-option-hasura-graphql.repository.mjs +22 -22
  535. package/{esm2020 → esm2022}/infra/hasura-graphql/repositories/catalog/index.mjs +9 -9
  536. package/esm2022/infra/hasura-graphql/repositories/catalog/product-hasura-graphql.repository.mjs +516 -0
  537. package/{esm2020 → esm2022}/infra/hasura-graphql/repositories/catalog/variant-hasura-graphql.repository.mjs +114 -114
  538. package/esm2022/infra/hasura-graphql/repositories/catalog/wishlist-hasura-graphql.repository.mjs +236 -0
  539. package/{esm2020 → esm2022}/infra/hasura-graphql/repositories/index.mjs +2 -2
  540. package/{esm2020 → esm2022}/infra/hasura-graphql/types/fields.type.mjs +2 -2
  541. package/esm2022/infra/hasura-graphql/types/graphql.repository.type.mjs +2 -0
  542. package/{esm2020 → esm2022}/infra/hasura-graphql/types/hasura-graphql-auth-options.type.mjs +2 -2
  543. package/esm2022/infra/hasura-graphql/types/hasura-graphql-fields.type.mjs +2 -0
  544. package/{esm2020 → esm2022}/infra/hasura-graphql/types/hasura-graphql-headers.type.mjs +2 -2
  545. package/{esm2020 → esm2022}/infra/hasura-graphql/types/index.mjs +9 -9
  546. package/{esm2020 → esm2022}/infra/hasura-graphql/types/nested-field.type.mjs +2 -2
  547. package/{esm2020 → esm2022}/infra/hasura-graphql/types/query-builder-options.type.mjs +2 -2
  548. package/{esm2020 → esm2022}/infra/hasura-graphql/types/variable-options.type.mjs +2 -2
  549. package/{esm2020 → esm2022}/infra/index.mjs +4 -4
  550. package/{esm2020 → esm2022}/infrab4a-connect.mjs +4 -4
  551. package/{esm2020 → esm2022}/utils/decorators/debug.class.decorator.mjs +7 -7
  552. package/{esm2020 → esm2022}/utils/decorators/index.mjs +3 -3
  553. package/{esm2020 → esm2022}/utils/decorators/trace.method.decorator.mjs +81 -81
  554. package/{esm2020 → esm2022}/utils/get.mjs +3 -3
  555. package/{esm2020 → esm2022}/utils/helpers/class-name.helper.mjs +15 -15
  556. package/esm2022/utils/helpers/debug-decorator.helper.mjs +18 -0
  557. package/esm2022/utils/helpers/debug.helper.mjs +150 -0
  558. package/{esm2020 → esm2022}/utils/helpers/index.mjs +5 -5
  559. package/{esm2020 → esm2022}/utils/helpers/reflect.helper.mjs +165 -165
  560. package/{esm2020 → esm2022}/utils/index.mjs +13 -13
  561. package/{esm2020 → esm2022}/utils/is-uuid.mjs +3 -3
  562. package/{esm2020 → esm2022}/utils/is.mjs +4 -4
  563. package/{esm2020 → esm2022}/utils/log.utils.mjs +9 -9
  564. package/{esm2020 → esm2022}/utils/mixins/base.mixin.mjs +6 -6
  565. package/{esm2020 → esm2022}/utils/mixins/index.mjs +4 -4
  566. package/esm2022/utils/mixins/merge-constructor-params.type.mjs +2 -0
  567. package/{esm2020 → esm2022}/utils/mixins/mixin-ctor.type.mjs +2 -2
  568. package/{esm2020 → esm2022}/utils/parse-datetime.mjs +14 -14
  569. package/{esm2020 → esm2022}/utils/types/array-element.type.mjs +2 -2
  570. package/{esm2020 → esm2022}/utils/types/index.mjs +3 -3
  571. package/{esm2020 → esm2022}/utils/types/prop.type.mjs +2 -2
  572. package/{fesm2020 → fesm2022}/infrab4a-connect.mjs +4580 -4515
  573. package/fesm2022/infrab4a-connect.mjs.map +1 -0
  574. package/index.d.ts +5 -5
  575. package/infra/elasticsearch/adapters/axios.adapter.d.ts +16 -16
  576. package/infra/elasticsearch/adapters/elastic-search.adapter.d.ts +8 -8
  577. package/infra/elasticsearch/adapters/index.d.ts +2 -2
  578. package/infra/elasticsearch/index.d.ts +3 -3
  579. package/infra/elasticsearch/indexes/index.d.ts +1 -1
  580. package/infra/elasticsearch/indexes/products-index.d.ts +13 -13
  581. package/infra/elasticsearch/types/elastic-search-result.d.ts +9 -9
  582. package/infra/elasticsearch/types/index.d.ts +1 -1
  583. package/infra/firebase/auth/authentication-firebase-auth.service.d.ts +12 -12
  584. package/infra/firebase/auth/index.d.ts +2 -2
  585. package/infra/firebase/auth/register-firebase-auth.service.d.ts +8 -8
  586. package/infra/firebase/auth/types/firebase-user-with-id.type.d.ts +5 -5
  587. package/infra/firebase/firestore/enums/firestore-field-type.enum.d.ts +8 -8
  588. package/infra/firebase/firestore/enums/index.d.ts +1 -1
  589. package/infra/firebase/firestore/index.d.ts +3 -3
  590. package/infra/firebase/firestore/mixins/index.d.ts +9 -9
  591. package/infra/firebase/firestore/mixins/with-create-firestore.mixin.d.ts +4 -4
  592. package/infra/firebase/firestore/mixins/with-crud-firestore.mixin.d.ts +5 -5
  593. package/infra/firebase/firestore/mixins/with-delete-firestore.mixin.d.ts +4 -4
  594. package/infra/firebase/firestore/mixins/with-find-firestore.mixin.d.ts +4 -4
  595. package/infra/firebase/firestore/mixins/with-firestore.mixin.d.ts +13 -13
  596. package/infra/firebase/firestore/mixins/with-get-firestore.mixin.d.ts +4 -4
  597. package/infra/firebase/firestore/mixins/with-helpers.mixin.d.ts +11 -11
  598. package/infra/firebase/firestore/mixins/with-sub-collection.mixin.d.ts +11 -11
  599. package/infra/firebase/firestore/mixins/with-update-firestore.mixin.d.ts +7 -7
  600. package/infra/firebase/firestore/repositories/catalog/category-firestore.repository.d.ts +20 -20
  601. package/infra/firebase/firestore/repositories/catalog/index.d.ts +4 -4
  602. package/infra/firebase/firestore/repositories/catalog/product-firestore.repository.d.ts +12 -12
  603. package/infra/firebase/firestore/repositories/catalog/product-variant-firestore.repository.d.ts +12 -12
  604. package/infra/firebase/firestore/repositories/catalog/subscription-product-firestore.repository.d.ts +7 -7
  605. package/infra/firebase/firestore/repositories/index.d.ts +4 -4
  606. package/infra/firebase/firestore/repositories/shop-settings/campaign-banner-firestore.repository.d.ts +7 -0
  607. package/infra/firebase/firestore/repositories/shop-settings/campaign-firestore.repository.d.ts +7 -0
  608. package/infra/firebase/firestore/repositories/shop-settings/home-firestore.repository.d.ts +16 -16
  609. package/infra/firebase/firestore/repositories/shop-settings/index.d.ts +5 -3
  610. package/infra/firebase/firestore/repositories/shop-settings/shop-menu-firestore.repository.d.ts +7 -7
  611. package/infra/firebase/firestore/repositories/shop-settings/shop-settings-firestore.repository.d.ts +7 -7
  612. package/infra/firebase/firestore/repositories/shopping/buy-2-win-firestore.repository.d.ts +7 -7
  613. package/infra/firebase/firestore/repositories/shopping/campaign-dashboard-firestore.repository.d.ts +8 -8
  614. package/infra/firebase/firestore/repositories/shopping/campaign-hashtag-firestore.repository.d.ts +8 -8
  615. package/infra/firebase/firestore/repositories/shopping/checkout-firestore.repository.d.ts +7 -7
  616. package/infra/firebase/firestore/repositories/shopping/checkout-subscription-firestore.repository.d.ts +7 -7
  617. package/infra/firebase/firestore/repositories/shopping/coupon-firestore.repository.d.ts +12 -12
  618. package/infra/firebase/firestore/repositories/shopping/index.d.ts +10 -10
  619. package/infra/firebase/firestore/repositories/shopping/legacy-order-firestore.repository.d.ts +6 -6
  620. package/infra/firebase/firestore/repositories/shopping/order-firestore.repository.d.ts +13 -13
  621. package/infra/firebase/firestore/repositories/shopping/payment-firestore.repository.d.ts +7 -7
  622. package/infra/firebase/firestore/repositories/shopping/subscription-plan-firestore.repository.d.ts +7 -7
  623. package/infra/firebase/firestore/repositories/users/index.d.ts +8 -8
  624. package/infra/firebase/firestore/repositories/users/lead-firestore.repository.d.ts +7 -7
  625. package/infra/firebase/firestore/repositories/users/subscription-edition-firestore.repository.d.ts +12 -12
  626. package/infra/firebase/firestore/repositories/users/subscription-firestore.repository.d.ts +7 -7
  627. package/infra/firebase/firestore/repositories/users/subscription-payment-firestore.repository.d.ts +12 -12
  628. package/infra/firebase/firestore/repositories/users/user-address-firestore.repository.d.ts +12 -12
  629. package/infra/firebase/firestore/repositories/users/user-beauty-profile-firestore.repository.d.ts +12 -12
  630. package/infra/firebase/firestore/repositories/users/user-firestore.repository.d.ts +17 -17
  631. package/infra/firebase/firestore/repositories/users/user-payment-method-firestore.repository.d.ts +12 -12
  632. package/infra/firebase/firestore/types/firestore-interceptors.type.d.ts +14 -14
  633. package/infra/firebase/firestore/types/firestore-sub.repository.type.d.ts +6 -6
  634. package/infra/firebase/firestore/types/firestore.helpers.type.d.ts +8 -8
  635. package/infra/firebase/firestore/types/firestore.repository.type.d.ts +16 -16
  636. package/infra/firebase/firestore/types/index.d.ts +4 -4
  637. package/infra/firebase/index.d.ts +2 -2
  638. package/infra/hasura-graphql/enums/hasura-graphql-column-type.enum.d.ts +11 -11
  639. package/infra/hasura-graphql/enums/hasura-graphql-where.enum.d.ts +15 -15
  640. package/infra/hasura-graphql/enums/index.d.ts +2 -2
  641. package/infra/hasura-graphql/index.d.ts +4 -4
  642. package/infra/hasura-graphql/mixins/helpers/attribute-option.helper.d.ts +19 -19
  643. package/infra/hasura-graphql/mixins/helpers/bind-filter-query.helper.d.ts +10 -10
  644. package/infra/hasura-graphql/mixins/helpers/filter-option.helper.d.ts +8 -8
  645. package/infra/hasura-graphql/mixins/helpers/graphql-field.helper.d.ts +12 -12
  646. package/infra/hasura-graphql/mixins/helpers/index.d.ts +4 -4
  647. package/infra/hasura-graphql/mixins/index.d.ts +7 -7
  648. package/infra/hasura-graphql/mixins/with-create-hasura-graphql.mixin.d.ts +9 -9
  649. package/infra/hasura-graphql/mixins/with-crud-hasura-graphql.mixin.d.ts +11 -11
  650. package/infra/hasura-graphql/mixins/with-delete-hasura-graphql.mixin.d.ts +7 -7
  651. package/infra/hasura-graphql/mixins/with-find-hasura-graphql.mixin.d.ts +34 -34
  652. package/infra/hasura-graphql/mixins/with-get-hasura-graphql.mixin.d.ts +25 -25
  653. package/infra/hasura-graphql/mixins/with-hasura-graphql.mixin.d.ts +23 -23
  654. package/infra/hasura-graphql/mixins/with-update-hasura-graphql.mixin.d.ts +14 -14
  655. package/infra/hasura-graphql/models/category-hasura-graphql.d.ts +6 -6
  656. package/infra/hasura-graphql/models/index.d.ts +4 -4
  657. package/infra/hasura-graphql/models/kit-product-hasura-graphql.d.ts +6 -6
  658. package/infra/hasura-graphql/models/product-hasura-graphql.d.ts +18 -18
  659. package/infra/hasura-graphql/models/variant-hasura-graphql.d.ts +10 -10
  660. package/infra/hasura-graphql/repositories/catalog/category-collection-children-hasura-graphql.repository.d.ts +10 -10
  661. package/infra/hasura-graphql/repositories/catalog/category-filter-hasura-graphql.repository.d.ts +12 -12
  662. package/infra/hasura-graphql/repositories/catalog/category-hasura-graphql.repository.d.ts +34 -34
  663. package/infra/hasura-graphql/repositories/catalog/filter-hasura-graphql.repository.d.ts +18 -18
  664. package/infra/hasura-graphql/repositories/catalog/filter-option-hasura-graphql.repository.d.ts +10 -10
  665. package/infra/hasura-graphql/repositories/catalog/index.d.ts +8 -8
  666. package/infra/hasura-graphql/repositories/catalog/product-hasura-graphql.repository.d.ts +30 -30
  667. package/infra/hasura-graphql/repositories/catalog/variant-hasura-graphql.repository.d.ts +14 -14
  668. package/infra/hasura-graphql/repositories/catalog/wishlist-hasura-graphql.repository.d.ts +27 -27
  669. package/infra/hasura-graphql/repositories/index.d.ts +1 -1
  670. package/infra/hasura-graphql/types/fields.type.d.ts +2 -2
  671. package/infra/hasura-graphql/types/graphql.repository.type.d.ts +24 -24
  672. package/infra/hasura-graphql/types/hasura-graphql-auth-options.type.d.ts +8 -8
  673. package/infra/hasura-graphql/types/hasura-graphql-fields.type.d.ts +44 -44
  674. package/infra/hasura-graphql/types/hasura-graphql-headers.type.d.ts +7 -7
  675. package/infra/hasura-graphql/types/index.d.ts +8 -8
  676. package/infra/hasura-graphql/types/nested-field.type.d.ts +7 -7
  677. package/infra/hasura-graphql/types/query-builder-options.type.d.ts +7 -7
  678. package/infra/hasura-graphql/types/variable-options.type.d.ts +9 -9
  679. package/infra/index.d.ts +3 -3
  680. package/package.json +5 -11
  681. package/utils/decorators/debug.class.decorator.d.ts +2 -2
  682. package/utils/decorators/index.d.ts +2 -2
  683. package/utils/decorators/trace.method.decorator.d.ts +14 -14
  684. package/utils/get.d.ts +1 -1
  685. package/utils/helpers/class-name.helper.d.ts +3 -3
  686. package/utils/helpers/debug-decorator.helper.d.ts +9 -9
  687. package/utils/helpers/debug.helper.d.ts +60 -60
  688. package/utils/helpers/index.d.ts +4 -4
  689. package/utils/helpers/reflect.helper.d.ts +50 -50
  690. package/utils/index.d.ts +13 -13
  691. package/utils/is-uuid.d.ts +1 -1
  692. package/utils/is.d.ts +1 -1
  693. package/utils/log.utils.d.ts +7 -7
  694. package/utils/mixins/base.mixin.d.ts +3 -3
  695. package/utils/mixins/index.d.ts +3 -3
  696. package/utils/mixins/merge-constructor-params.type.d.ts +3 -3
  697. package/utils/mixins/mixin-ctor.type.d.ts +1 -1
  698. package/utils/parse-datetime.d.ts +1 -1
  699. package/utils/types/array-element.type.d.ts +1 -1
  700. package/utils/types/index.d.ts +2 -2
  701. package/utils/types/prop.type.d.ts +1 -1
  702. package/esm2020/domain/catalog/models/category-base.mjs +0 -18
  703. package/esm2020/domain/catalog/models/product-base.mjs +0 -25
  704. package/esm2020/domain/catalog/models/types/product-review.type.mjs +0 -2
  705. package/esm2020/domain/catalog/models/variant.mjs +0 -7
  706. package/esm2020/domain/catalog/repositories/category-filter.repository.mjs +0 -2
  707. package/esm2020/domain/catalog/repositories/category.repository.mjs +0 -2
  708. package/esm2020/domain/catalog/repositories/product.repository.mjs +0 -2
  709. package/esm2020/domain/catalog/repositories/wishlist.repository.mjs +0 -2
  710. package/esm2020/domain/generic/model/types/base-model-builder.type.mjs +0 -2
  711. package/esm2020/domain/generic/model/types/identifier-model.type.mjs +0 -2
  712. package/esm2020/domain/generic/model/types/model-base-structure.type.mjs +0 -2
  713. package/esm2020/domain/generic/model/types/non-function-properties.type.mjs +0 -2
  714. package/esm2020/domain/generic/model/types/non-function-property-name.type.mjs +0 -2
  715. package/esm2020/domain/generic/repository/create.repository.mjs +0 -2
  716. package/esm2020/domain/generic/repository/crud.repository.mjs +0 -2
  717. package/esm2020/domain/generic/repository/delete.repository.mjs +0 -2
  718. package/esm2020/domain/generic/repository/find.repository.mjs +0 -2
  719. package/esm2020/domain/generic/repository/read.repository.mjs +0 -2
  720. package/esm2020/domain/generic/repository/types/repository-find-filters.type.mjs +0 -2
  721. package/esm2020/domain/generic/repository/types/repository-find-result.type.mjs +0 -2
  722. package/esm2020/domain/generic/repository/types/repository-update-params.type.mjs +0 -2
  723. package/esm2020/domain/generic/repository/update.repository.mjs +0 -2
  724. package/esm2020/domain/location/models/address.mjs +0 -7
  725. package/esm2020/domain/shop-settings/models/home.mjs +0 -7
  726. package/esm2020/domain/shop-settings/models/index.mjs +0 -5
  727. package/esm2020/domain/shop-settings/models/types/home-data.type.mjs +0 -2
  728. package/esm2020/domain/shop-settings/models/types/index.mjs +0 -11
  729. package/esm2020/domain/shop-settings/repositories/index.mjs +0 -4
  730. package/esm2020/domain/shopping/models/campaign-hashtag.mjs +0 -7
  731. package/esm2020/domain/shopping/models/coupons/coupon.mjs +0 -38
  732. package/esm2020/domain/shopping/models/types/payment-address.type.mjs +0 -2
  733. package/esm2020/domain/shopping/models/types/payment-card.type.mjs +0 -2
  734. package/esm2020/domain/shopping/models/types/payment-customer.type.mjs +0 -2
  735. package/esm2020/domain/users/models/subscription/edition.mjs +0 -7
  736. package/esm2020/domain/users/repositories/user.repository.mjs +0 -2
  737. package/esm2020/domain/users/services/authentication.service.mjs +0 -2
  738. package/esm2020/infra/elasticsearch/adapters/elastic-search.adapter.mjs +0 -2
  739. package/esm2020/infra/elasticsearch/indexes/products-index.mjs +0 -93
  740. package/esm2020/infra/firebase/firestore/mixins/with-crud-firestore.mixin.mjs +0 -10
  741. package/esm2020/infra/firebase/firestore/mixins/with-sub-collection.mixin.mjs +0 -13
  742. package/esm2020/infra/firebase/firestore/repositories/shop-settings/index.mjs +0 -4
  743. package/esm2020/infra/firebase/firestore/types/firestore-interceptors.type.mjs +0 -2
  744. package/esm2020/infra/firebase/firestore/types/firestore-sub.repository.type.mjs +0 -2
  745. package/esm2020/infra/firebase/firestore/types/firestore.helpers.type.mjs +0 -2
  746. package/esm2020/infra/firebase/firestore/types/firestore.repository.type.mjs +0 -2
  747. package/esm2020/infra/hasura-graphql/mixins/helpers/attribute-option.helper.mjs +0 -35
  748. package/esm2020/infra/hasura-graphql/mixins/helpers/bind-filter-query.helper.mjs +0 -71
  749. package/esm2020/infra/hasura-graphql/mixins/helpers/filter-option.helper.mjs +0 -22
  750. package/esm2020/infra/hasura-graphql/mixins/helpers/graphql-field.helper.mjs +0 -125
  751. package/esm2020/infra/hasura-graphql/mixins/with-crud-hasura-graphql.mixin.mjs +0 -10
  752. package/esm2020/infra/hasura-graphql/mixins/with-hasura-graphql.mixin.mjs +0 -108
  753. package/esm2020/infra/hasura-graphql/repositories/catalog/category-hasura-graphql.repository.mjs +0 -338
  754. package/esm2020/infra/hasura-graphql/repositories/catalog/product-hasura-graphql.repository.mjs +0 -516
  755. package/esm2020/infra/hasura-graphql/repositories/catalog/wishlist-hasura-graphql.repository.mjs +0 -238
  756. package/esm2020/infra/hasura-graphql/types/graphql.repository.type.mjs +0 -2
  757. package/esm2020/infra/hasura-graphql/types/hasura-graphql-fields.type.mjs +0 -2
  758. package/esm2020/utils/helpers/debug-decorator.helper.mjs +0 -18
  759. package/esm2020/utils/helpers/debug.helper.mjs +0 -150
  760. package/esm2020/utils/mixins/merge-constructor-params.type.mjs +0 -2
  761. package/fesm2015/infrab4a-connect.mjs +0 -4932
  762. package/fesm2015/infrab4a-connect.mjs.map +0 -1
  763. package/fesm2020/infrab4a-connect.mjs.map +0 -1
@@ -1,7 +1,7 @@
1
- import { Fields } from './fields.type';
2
- import { QueryBuilderOptions } from './query-builder-options.type';
3
- export declare type NestedField = {
4
- operation: string;
5
- variables: QueryBuilderOptions[];
6
- fields: Fields;
7
- };
1
+ import { Fields } from './fields.type';
2
+ import { QueryBuilderOptions } from './query-builder-options.type';
3
+ export type NestedField = {
4
+ operation: string;
5
+ variables: QueryBuilderOptions[];
6
+ fields: Fields;
7
+ };
@@ -1,7 +1,7 @@
1
- import { Fields } from './fields.type';
2
- import { VariableOptions } from './variable-options.type';
3
- export interface QueryBuilderOptions {
4
- operation: string;
5
- fields?: Fields;
6
- variables?: VariableOptions;
7
- }
1
+ import { Fields } from './fields.type';
2
+ import { VariableOptions } from './variable-options.type';
3
+ export interface QueryBuilderOptions {
4
+ operation: string;
5
+ fields?: Fields;
6
+ variables?: VariableOptions;
7
+ }
@@ -1,9 +1,9 @@
1
- export declare type VariableOptions = {
2
- type?: string;
3
- name?: string;
4
- value: any;
5
- list?: boolean;
6
- required?: boolean;
7
- } | {
8
- [k: string]: any;
9
- };
1
+ export type VariableOptions = {
2
+ type?: string;
3
+ name?: string;
4
+ value: any;
5
+ list?: boolean;
6
+ required?: boolean;
7
+ } | {
8
+ [k: string]: any;
9
+ };
package/infra/index.d.ts CHANGED
@@ -1,3 +1,3 @@
1
- export * from './elasticsearch';
2
- export * from './firebase';
3
- export * from './hasura-graphql';
1
+ export * from './elasticsearch';
2
+ export * from './firebase';
3
+ export * from './hasura-graphql';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@infrab4a/connect",
3
- "version": "4.0.3-beta.0",
3
+ "version": "4.1.0-beta.0",
4
4
  "publishConfig": {
5
5
  "registry": "https://registry.npmjs.org"
6
6
  },
@@ -21,11 +21,7 @@
21
21
  "ts-md5": "^1.2.9",
22
22
  "tslib": "^2.4.0"
23
23
  },
24
- "module": "fesm2015/infrab4a-connect.mjs",
25
- "es2020": "fesm2020/infrab4a-connect.mjs",
26
- "esm2020": "esm2020/infrab4a-connect.mjs",
27
- "fesm2020": "fesm2020/infrab4a-connect.mjs",
28
- "fesm2015": "fesm2015/infrab4a-connect.mjs",
24
+ "module": "fesm2022/infrab4a-connect.mjs",
29
25
  "typings": "index.d.ts",
30
26
  "exports": {
31
27
  "./package.json": {
@@ -33,11 +29,9 @@
33
29
  },
34
30
  ".": {
35
31
  "types": "./index.d.ts",
36
- "esm2020": "./esm2020/infrab4a-connect.mjs",
37
- "es2020": "./fesm2020/infrab4a-connect.mjs",
38
- "es2015": "./fesm2015/infrab4a-connect.mjs",
39
- "node": "./fesm2015/infrab4a-connect.mjs",
40
- "default": "./fesm2020/infrab4a-connect.mjs"
32
+ "esm2022": "./esm2022/infrab4a-connect.mjs",
33
+ "esm": "./esm2022/infrab4a-connect.mjs",
34
+ "default": "./fesm2022/infrab4a-connect.mjs"
41
35
  }
42
36
  },
43
37
  "sideEffects": false
@@ -1,2 +1,2 @@
1
- import { DebugOptions } from '../helpers';
2
- export declare function Debug(opts?: DebugOptions): ClassDecorator;
1
+ import { DebugOptions } from '../helpers';
2
+ export declare function Debug(opts?: DebugOptions): ClassDecorator;
@@ -1,2 +1,2 @@
1
- export * from './debug.class.decorator';
2
- export * from './trace.method.decorator';
1
+ export * from './debug.class.decorator';
2
+ export * from './trace.method.decorator';
@@ -1,14 +1,14 @@
1
- export declare type CallbackFnArgs<T, Result> = {
2
- target: T;
3
- result: Result;
4
- args: Array<any>;
5
- namespace?: Array<string>;
6
- };
7
- declare type CallbackFn<T, Result> = (opts: CallbackFnArgs<T, Result>) => void;
8
- declare type TraceOptions<T, Result> = {
9
- callbackFn?: CallbackFn<T, Result>;
10
- level?: 'trace' | 'log';
11
- };
12
- export declare function Log<T, Result>(options?: TraceOptions<T, Result>): (target: any, propertyKey: string, propertyDescriptor: PropertyDescriptor) => PropertyDescriptor;
13
- export declare function Trace<T, Result>(options?: TraceOptions<T, Result>): (target: any, propertyKey: string, propertyDescriptor: PropertyDescriptor) => PropertyDescriptor;
14
- export {};
1
+ export type CallbackFnArgs<T, Result> = {
2
+ target: T;
3
+ result: Result;
4
+ args: Array<any>;
5
+ namespace?: Array<string>;
6
+ };
7
+ type CallbackFn<T, Result> = (opts: CallbackFnArgs<T, Result>) => void;
8
+ type TraceOptions<T, Result> = {
9
+ callbackFn?: CallbackFn<T, Result>;
10
+ level?: 'trace' | 'log';
11
+ };
12
+ export declare function Log<T, Result>(options?: TraceOptions<T, Result>): (target: any, propertyKey: string, propertyDescriptor: PropertyDescriptor) => PropertyDescriptor;
13
+ export declare function Trace<T, Result>(options?: TraceOptions<T, Result>): (target: any, propertyKey: string, propertyDescriptor: PropertyDescriptor) => PropertyDescriptor;
14
+ export {};
package/utils/get.d.ts CHANGED
@@ -1 +1 @@
1
- export declare const get: (object: any, path: string, defaultValue?: any) => any;
1
+ export declare const get: (object: any, path: string, defaultValue?: any) => any;
@@ -1,3 +1,3 @@
1
- export declare class ClassNameHelper {
2
- static get(clazz: any): string;
3
- }
1
+ export declare class ClassNameHelper {
2
+ static get(clazz: any): string;
3
+ }
@@ -1,9 +1,9 @@
1
- export declare type DebugOptions = {
2
- name?: string;
3
- namespaces?: Array<string>;
4
- };
5
- export declare class DebugDecoratorHelper {
6
- static DebugNamingMetadataKey: string;
7
- static set(target: object, options: DebugOptions): void;
8
- static get(target: object): DebugOptions;
9
- }
1
+ export type DebugOptions = {
2
+ name?: string;
3
+ namespaces?: Array<string>;
4
+ };
5
+ export declare class DebugDecoratorHelper {
6
+ static DebugNamingMetadataKey: string;
7
+ static set(target: object, options: DebugOptions): void;
8
+ static get(target: object): DebugOptions;
9
+ }
@@ -1,60 +1,60 @@
1
- import { Debugger } from 'debug';
2
- import { Subject } from 'rxjs';
3
- export declare type Debuggable = {
4
- debug: DebugHelper;
5
- };
6
- declare type DebugLog = {
7
- namespace: string;
8
- message: string;
9
- args: Array<any>;
10
- };
11
- declare type DebugError = {
12
- namespace: string;
13
- error: any;
14
- args: Array<any>;
15
- };
16
- export declare const isDebuggable: (object: any) => object is Debuggable;
17
- export declare class DebugHelper {
18
- static logs$: Subject<DebugLog>;
19
- static traces$: Subject<DebugLog>;
20
- static errors$: Subject<DebugError>;
21
- static isDebuggable: (object: any) => object is Debuggable;
22
- static namespacesFor(target: object): Array<string>;
23
- static as(...namespaces: Array<string>): DebugHelper;
24
- static for(target: object, ...namespaces: Array<string>): DebugHelper;
25
- static from(target: object, ...namespaces: Array<string>): DebugHelper;
26
- static clonedFrom(target: object, ...namespaces: Array<string>): DebugHelper;
27
- static clone(target: object, ...namespaces: Array<string>): {
28
- original: DebugHelper;
29
- debug: DebugHelper;
30
- };
31
- static replace(target: any, attrs: {
32
- with: DebugHelper;
33
- }): void;
34
- static mock(target: object, ...namespaces: Array<string>): {
35
- original: DebugHelper;
36
- debug: DebugHelper;
37
- };
38
- logger: Debugger;
39
- tracer: Debugger;
40
- err: Debugger;
41
- namespaces: Set<string>;
42
- constructor(...namespace: Array<string>);
43
- get entries(): Array<string>;
44
- get namespace(): string;
45
- log(message?: any, ...args: Array<any>): DebugHelper;
46
- trace(message?: any, ...args: Array<any>): DebugHelper;
47
- error(error: any, ...args: Array<any>): DebugHelper;
48
- build(): DebugHelper;
49
- with(...namespace: Array<string>): DebugHelper;
50
- push(...namespace: Array<string>): DebugHelper;
51
- unshift(...namespace: Array<string>): DebugHelper;
52
- reset(...namespace: Array<string>): DebugHelper;
53
- startWith(...namespace: Array<string>): DebugHelper;
54
- shift(): DebugHelper;
55
- pop(): DebugHelper;
56
- clear(): DebugHelper;
57
- remove(...namespace: Array<string>): DebugHelper;
58
- puts(...args: Array<string>): string;
59
- }
60
- export {};
1
+ import { Debugger } from 'debug';
2
+ import { Subject } from 'rxjs';
3
+ export type Debuggable = {
4
+ debug: DebugHelper;
5
+ };
6
+ type DebugLog = {
7
+ namespace: string;
8
+ message: string;
9
+ args: Array<any>;
10
+ };
11
+ type DebugError = {
12
+ namespace: string;
13
+ error: any;
14
+ args: Array<any>;
15
+ };
16
+ export declare const isDebuggable: (object: any) => object is Debuggable;
17
+ export declare class DebugHelper {
18
+ static logs$: Subject<DebugLog>;
19
+ static traces$: Subject<DebugLog>;
20
+ static errors$: Subject<DebugError>;
21
+ static isDebuggable: (object: any) => object is Debuggable;
22
+ static namespacesFor(target: object): Array<string>;
23
+ static as(...namespaces: Array<string>): DebugHelper;
24
+ static for(target: object, ...namespaces: Array<string>): DebugHelper;
25
+ static from(target: object, ...namespaces: Array<string>): DebugHelper;
26
+ static clonedFrom(target: object, ...namespaces: Array<string>): DebugHelper;
27
+ static clone(target: object, ...namespaces: Array<string>): {
28
+ original: DebugHelper;
29
+ debug: DebugHelper;
30
+ };
31
+ static replace(target: any, attrs: {
32
+ with: DebugHelper;
33
+ }): void;
34
+ static mock(target: object, ...namespaces: Array<string>): {
35
+ original: DebugHelper;
36
+ debug: DebugHelper;
37
+ };
38
+ logger: Debugger;
39
+ tracer: Debugger;
40
+ err: Debugger;
41
+ namespaces: Set<string>;
42
+ constructor(...namespace: Array<string>);
43
+ get entries(): Array<string>;
44
+ get namespace(): string;
45
+ log(message?: any, ...args: Array<any>): DebugHelper;
46
+ trace(message?: any, ...args: Array<any>): DebugHelper;
47
+ error(error: any, ...args: Array<any>): DebugHelper;
48
+ build(): DebugHelper;
49
+ with(...namespace: Array<string>): DebugHelper;
50
+ push(...namespace: Array<string>): DebugHelper;
51
+ unshift(...namespace: Array<string>): DebugHelper;
52
+ reset(...namespace: Array<string>): DebugHelper;
53
+ startWith(...namespace: Array<string>): DebugHelper;
54
+ shift(): DebugHelper;
55
+ pop(): DebugHelper;
56
+ clear(): DebugHelper;
57
+ remove(...namespace: Array<string>): DebugHelper;
58
+ puts(...args: Array<string>): string;
59
+ }
60
+ export {};
@@ -1,4 +1,4 @@
1
- export * from './debug.helper';
2
- export * from './reflect.helper';
3
- export * from './class-name.helper';
4
- export * from './debug-decorator.helper';
1
+ export * from './debug.helper';
2
+ export * from './reflect.helper';
3
+ export * from './class-name.helper';
4
+ export * from './debug-decorator.helper';
@@ -1,50 +1,50 @@
1
- import 'reflect-metadata';
2
- declare type Dictionary<T> = {
3
- [key: string]: T;
4
- };
5
- export declare type MetaArgs = {
6
- key: keyof MetaStorage | string;
7
- target: any;
8
- property?: string | symbol;
9
- own?: boolean;
10
- propertyDescriptor?: PropertyDescriptor;
11
- };
12
- export declare type MetaValueArgs<T = any> = MetaArgs & {
13
- value: T;
14
- };
15
- declare type MetaProperties<T = any> = Dictionary<T>;
16
- declare type MetaTargets = Dictionary<MetaProperties>;
17
- declare type MetaKeys = Dictionary<MetaTargets>;
18
- declare type MetaStorage = {
19
- value?: any;
20
- object?: any;
21
- values?: MetaKeys;
22
- } & Record<string, any>;
23
- export declare class ReflectHelper {
24
- static get items(): MetaStorage;
25
- static get keys(): Array<string>;
26
- static has(key: keyof MetaStorage, target?: any, property?: string | symbol): boolean;
27
- static get<T = any>({ key, target, property, own }: MetaArgs): Array<T>;
28
- static first<T = any>({ key, target, property, own }: MetaArgs): T;
29
- static last<T = any>({ key, target, property, own }: MetaArgs): T;
30
- static set<T = any>({ key, target, property, value, propertyDescriptor }: MetaValueArgs<T>): void;
31
- static add<T = any>({ key, target, property, value, propertyDescriptor }: MetaValueArgs<T>): void;
32
- static all<T = any>({ key }: Partial<MetaArgs>): Array<MetaValueArgs<T>>;
33
- static allFrom(key: string, target: any): any;
34
- static allValuesFrom(key: string, target: any, property: any): any;
35
- static delete({ key, target, property }: MetaArgs): boolean;
36
- static clear(key?: string): void;
37
- static getType({ target, propertyKey }: {
38
- target: string;
39
- propertyKey: string;
40
- }): any;
41
- static getReturntype({ target, propertyKey }: {
42
- target: string;
43
- propertyKey: string;
44
- }): any;
45
- static getAllMethods(target: any): string[];
46
- private static _items;
47
- private static put;
48
- private static remove;
49
- }
50
- export {};
1
+ import 'reflect-metadata';
2
+ type Dictionary<T> = {
3
+ [key: string]: T;
4
+ };
5
+ export type MetaArgs = {
6
+ key: keyof MetaStorage | string;
7
+ target: any;
8
+ property?: string | symbol;
9
+ own?: boolean;
10
+ propertyDescriptor?: PropertyDescriptor;
11
+ };
12
+ export type MetaValueArgs<T = any> = MetaArgs & {
13
+ value: T;
14
+ };
15
+ type MetaProperties<T = any> = Dictionary<T>;
16
+ type MetaTargets = Dictionary<MetaProperties>;
17
+ type MetaKeys = Dictionary<MetaTargets>;
18
+ type MetaStorage = {
19
+ value?: any;
20
+ object?: any;
21
+ values?: MetaKeys;
22
+ } & Record<string, any>;
23
+ export declare class ReflectHelper {
24
+ static get items(): MetaStorage;
25
+ static get keys(): Array<string>;
26
+ static has(key: keyof MetaStorage, target?: any, property?: string | symbol): boolean;
27
+ static get<T = any>({ key, target, property, own }: MetaArgs): Array<T>;
28
+ static first<T = any>({ key, target, property, own }: MetaArgs): T;
29
+ static last<T = any>({ key, target, property, own }: MetaArgs): T;
30
+ static set<T = any>({ key, target, property, value, propertyDescriptor }: MetaValueArgs<T>): void;
31
+ static add<T = any>({ key, target, property, value, propertyDescriptor }: MetaValueArgs<T>): void;
32
+ static all<T = any>({ key }: Partial<MetaArgs>): Array<MetaValueArgs<T>>;
33
+ static allFrom(key: string, target: any): any;
34
+ static allValuesFrom(key: string, target: any, property: any): any;
35
+ static delete({ key, target, property }: MetaArgs): boolean;
36
+ static clear(key?: string): void;
37
+ static getType({ target, propertyKey }: {
38
+ target: string;
39
+ propertyKey: string;
40
+ }): any;
41
+ static getReturntype({ target, propertyKey }: {
42
+ target: string;
43
+ propertyKey: string;
44
+ }): any;
45
+ static getAllMethods(target: any): string[];
46
+ private static _items;
47
+ private static put;
48
+ private static remove;
49
+ }
50
+ export {};
package/utils/index.d.ts CHANGED
@@ -1,13 +1,13 @@
1
- import { add, addBusinessDays, addDays, addMonths, addYears, Duration, endOfDay, format, formatISO9075, parseISO, startOfDay, sub } from 'date-fns';
2
- import { chunk, each, get, isBoolean, isDate, isEmpty, isInteger, isNaN, isNil, isNumber, isObject, isString, now, omit, pick, set, unset } from 'lodash';
3
- export declare type DateDuration = Duration;
4
- export * from './decorators';
5
- export * from './get';
6
- export * from './helpers';
7
- export * from './is';
8
- export * from './is-uuid';
9
- export * from './log.utils';
10
- export * from './mixins';
11
- export * from './parse-datetime';
12
- export * from './types';
13
- export { add, addDays, addBusinessDays, addMonths, addYears, chunk, each, endOfDay, format, formatISO9075, get, isBoolean, isDate, isEmpty, isInteger, isNil, isNaN, isNumber, isObject, isString, parseISO, now, omit, pick, set, startOfDay, sub, unset, };
1
+ import { add, addBusinessDays, addDays, addMonths, addYears, Duration, endOfDay, format, formatISO9075, parseISO, startOfDay, sub } from 'date-fns';
2
+ import { chunk, each, get, isBoolean, isDate, isEmpty, isInteger, isNaN, isNil, isNumber, isObject, isString, now, omit, pick, set, unset } from 'lodash';
3
+ export type DateDuration = Duration;
4
+ export * from './decorators';
5
+ export * from './get';
6
+ export * from './helpers';
7
+ export * from './is';
8
+ export * from './is-uuid';
9
+ export * from './log.utils';
10
+ export * from './mixins';
11
+ export * from './parse-datetime';
12
+ export * from './types';
13
+ export { add, addDays, addBusinessDays, addMonths, addYears, chunk, each, endOfDay, format, formatISO9075, get, isBoolean, isDate, isEmpty, isInteger, isNil, isNaN, isNumber, isObject, isString, parseISO, now, omit, pick, set, startOfDay, sub, unset, };
@@ -1 +1 @@
1
- export declare const isUUID: (value: string) => boolean;
1
+ export declare const isUUID: (value: string) => boolean;
package/utils/is.d.ts CHANGED
@@ -1 +1 @@
1
- export declare function is<T>(value: any): T;
1
+ export declare function is<T>(value: any): T;
@@ -1,7 +1,7 @@
1
- import { Debugger } from 'debug';
2
- export declare enum DebugNamespaces {
3
- ROOT = "connect",
4
- TRACE = "trace",
5
- ERROR = "error"
6
- }
7
- export declare const Logger: Debugger;
1
+ import { Debugger } from 'debug';
2
+ export declare enum DebugNamespaces {
3
+ ROOT = "connect",
4
+ TRACE = "trace",
5
+ ERROR = "error"
6
+ }
7
+ export declare const Logger: Debugger;
@@ -1,3 +1,3 @@
1
- export declare class Base {
2
- constructor(...args: Array<any>);
3
- }
1
+ export declare class Base {
2
+ constructor(...args: Array<any>);
3
+ }
@@ -1,3 +1,3 @@
1
- export * from './mixin-ctor.type';
2
- export * from './base.mixin';
3
- export * from './merge-constructor-params.type';
1
+ export * from './mixin-ctor.type';
2
+ export * from './base.mixin';
3
+ export * from './merge-constructor-params.type';
@@ -1,3 +1,3 @@
1
- declare type Tail<T extends any[]> = T extends [any, ...infer U] ? U : [];
2
- export declare type MergeConstructorParams<NewParams extends any[], CurrentParams extends any[]> = CurrentParams extends [] ? [...NewParams, ...any] : CurrentParams[0] extends never ? [...NewParams, ...any] : [...NewParams, ...Tail<CurrentParams>];
3
- export {};
1
+ type Tail<T extends any[]> = T extends [any, ...infer U] ? U : [];
2
+ export type MergeConstructorParams<NewParams extends any[], CurrentParams extends any[]> = CurrentParams extends [] ? [...NewParams, ...any] : CurrentParams[0] extends never ? [...NewParams, ...any] : [...NewParams, ...Tail<CurrentParams>];
3
+ export {};
@@ -1 +1 @@
1
- export declare type MixinCtor<T = any, A extends any[] = any[]> = new (...args: A) => T;
1
+ export type MixinCtor<T = any, A extends any[] = any[]> = new (...args: A) => T;
@@ -1 +1 @@
1
- export declare const parseDateTime: (value: string) => string | Date;
1
+ export declare const parseDateTime: (value: string) => string | Date;
@@ -1 +1 @@
1
- export declare type ArrayElement<ArrayType extends readonly unknown[]> = ArrayType extends readonly (infer ElementType)[] ? ElementType : never;
1
+ export type ArrayElement<ArrayType extends readonly unknown[]> = ArrayType extends readonly (infer ElementType)[] ? ElementType : never;
@@ -1,2 +1,2 @@
1
- export * from './prop.type';
2
- export * from './array-element.type';
1
+ export * from './prop.type';
2
+ export * from './array-element.type';
@@ -1 +1 @@
1
- export declare type PropType<TObj, TProp extends keyof TObj> = TObj[TProp];
1
+ export type PropType<TObj, TProp extends keyof TObj> = TObj[TProp];
@@ -1,18 +0,0 @@
1
- import { __decorate, __metadata } from "tslib";
2
- import { Type } from 'class-transformer';
3
- import { BaseModel } from '../../generic/model';
4
- import { Filter } from './filter';
5
- export class CategoryBase extends BaseModel {
6
- static get identifiersFields() {
7
- return ['id'];
8
- }
9
- }
10
- __decorate([
11
- Type(() => CategoryBase),
12
- __metadata("design:type", CategoryBase)
13
- ], CategoryBase.prototype, "parent", void 0);
14
- __decorate([
15
- Type(() => Filter),
16
- __metadata("design:type", Array)
17
- ], CategoryBase.prototype, "filters", void 0);
18
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY2F0ZWdvcnktYmFzZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2Nvbm5lY3Qvc3JjL2RvbWFpbi9jYXRhbG9nL21vZGVscy9jYXRlZ29yeS1iYXNlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7QUFBQSxPQUFPLEVBQUUsSUFBSSxFQUFFLE1BQU0sbUJBQW1CLENBQUE7QUFDeEMsT0FBTyxFQUFFLFNBQVMsRUFBeUMsTUFBTSxxQkFBcUIsQ0FBQTtBQUV0RixPQUFPLEVBQUUsTUFBTSxFQUFFLE1BQU0sVUFBVSxDQUFBO0FBR2pDLE1BQU0sT0FBTyxZQUdYLFNBQVEsU0FBcUM7SUE2QjdDLE1BQU0sS0FBSyxpQkFBaUI7UUFDMUIsT0FBTyxDQUFDLElBQUksQ0FBQyxDQUFBO0lBQ2YsQ0FBQztDQUNGO0FBVEM7SUFBQyxJQUFJLENBQUMsR0FBRyxFQUFFLENBQUMsWUFBWSxDQUFDOzhCQUNoQixZQUFZOzRDQUFBO0FBRXJCO0lBQUMsSUFBSSxDQUFDLEdBQUcsRUFBRSxDQUFDLE1BQU0sQ0FBQzs7NkNBQ0QiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBUeXBlIH0gZnJvbSAnY2xhc3MtdHJhbnNmb3JtZXInXHJcbmltcG9ydCB7IEJhc2VNb2RlbCwgR2VuZXJpY0lkZW50aWZpZXIsIE1vZGVsQmFzZVN0cnVjdHVyZSB9IGZyb20gJy4uLy4uL2dlbmVyaWMvbW9kZWwnXHJcbmltcG9ydCB7IFNob3BzIH0gZnJvbSAnLi9lbnVtcydcclxuaW1wb3J0IHsgRmlsdGVyIH0gZnJvbSAnLi9maWx0ZXInXHJcbmltcG9ydCB7IENhdGVnb3J5Q29uZGl0aW9uLCBDYXRlZ29yeU1ldGFkYXRhIH0gZnJvbSAnLi90eXBlcydcclxuXHJcbmV4cG9ydCBjbGFzcyBDYXRlZ29yeUJhc2U8XHJcbiAgQ2hpbGRDYXRlZ29yeSBleHRlbmRzIE1vZGVsQmFzZVN0cnVjdHVyZTxDaGlsZENhdGVnb3J5LCBJZGVudGlmaWVycz4gPSBNb2RlbEJhc2VTdHJ1Y3R1cmU8YW55LCBhbnk+LFxyXG4gIElkZW50aWZpZXJzID0gQ2hpbGRDYXRlZ29yeVsnaWRlbnRpZmllcnNGaWVsZHMnXSxcclxuPiBleHRlbmRzIEJhc2VNb2RlbDxDaGlsZENhdGVnb3J5LCBJZGVudGlmaWVycz4ge1xyXG4gIGlkOiBzdHJpbmdcclxuICBicmFuZENhdGVnb3J5OiBib29sZWFuXHJcbiAgYnJhbmRMb2dvPzogc3RyaW5nXHJcbiAgbmFtZTogc3RyaW5nXHJcbiAgc2x1Zzogc3RyaW5nXHJcbiAgaW1hZ2U/OiBzdHJpbmdcclxuICBicmFuZENhdGVnb3J5QmFubmVyPzogc3RyaW5nXHJcbiAgYnJhbmRDYXRlZ29yeUJhbm5lck1vYmlsZT86IHN0cmluZ1xyXG4gIGRlc2NyaXB0aW9uOiBzdHJpbmdcclxuICBjb25kaXRpb25zPzogQ2F0ZWdvcnlDb25kaXRpb25cclxuICBwcm9kdWN0cz86IHN0cmluZ1tdXHJcbiAgY3JlYXRlZEF0PzogRGF0ZVxyXG4gIHVwZGF0ZWRBdD86IERhdGVcclxuICBzaG9wPzogU2hvcHNcclxuICBzaG9wcz86IHN0cmluZ1tdXHJcbiAgcHVibGlzaGVkOiBib29sZWFuXHJcbiAgbWV0YWRhdGE6IENhdGVnb3J5TWV0YWRhdGFcclxuICBpc0NvbGxlY3Rpb24/OiBib29sZWFuXHJcbiAgaXNXaXNobGlzdD86IGJvb2xlYW5cclxuICByZWZlcmVuY2U/OiBzdHJpbmdcclxuICBwYXJlbnRJZD86IG51bWJlclxyXG5cclxuICBAVHlwZSgoKSA9PiBDYXRlZ29yeUJhc2UpXHJcbiAgcGFyZW50PzogQ2F0ZWdvcnlCYXNlXHJcblxyXG4gIEBUeXBlKCgpID0+IEZpbHRlcilcclxuICBmaWx0ZXJzPzogRmlsdGVyW11cclxuXHJcbiAgc3RhdGljIGdldCBpZGVudGlmaWVyc0ZpZWxkcygpOiBHZW5lcmljSWRlbnRpZmllcltdIHtcclxuICAgIHJldHVybiBbJ2lkJ11cclxuICB9XHJcbn1cclxuIl19
@@ -1,25 +0,0 @@
1
- import { BaseModel } from '../../generic/model';
2
- export class ProductBase extends BaseModel {
3
- get evaluation() {
4
- return {
5
- reviews: this.reviews,
6
- count: this.reviewsTotal,
7
- rating: this.rate,
8
- };
9
- }
10
- set evaluation(evaluation) {
11
- if (!evaluation) {
12
- this.reviews = null;
13
- this.reviewsTotal = null;
14
- this.rate = null;
15
- return;
16
- }
17
- this.reviews = evaluation.reviews || this.reviews;
18
- this.reviewsTotal = evaluation.count || this.reviewsTotal;
19
- this.rate = evaluation.rating || this.rate;
20
- }
21
- static get identifiersFields() {
22
- return ['id'];
23
- }
24
- }
25
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHJvZHVjdC1iYXNlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvY29ubmVjdC9zcmMvZG9tYWluL2NhdGFsb2cvbW9kZWxzL3Byb2R1Y3QtYmFzZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsU0FBUyxFQUF5QyxNQUFNLHFCQUFxQixDQUFBO0FBWXRGLE1BQU0sT0FBTyxXQUdYLFNBQVEsU0FBb0M7SUFtQzVDLElBQUksVUFBVTtRQUNaLE9BQU87WUFDTCxPQUFPLEVBQUUsSUFBSSxDQUFDLE9BQU87WUFDckIsS0FBSyxFQUFFLElBQUksQ0FBQyxZQUFZO1lBQ3hCLE1BQU0sRUFBRSxJQUFJLENBQUMsSUFBSTtTQUNsQixDQUFBO0lBQ0gsQ0FBQztJQUVELElBQUksVUFBVSxDQUFDLFVBQTZCO1FBQzFDLElBQUksQ0FBQyxVQUFVLEVBQUU7WUFDZixJQUFJLENBQUMsT0FBTyxHQUFHLElBQUksQ0FBQTtZQUNuQixJQUFJLENBQUMsWUFBWSxHQUFHLElBQUksQ0FBQTtZQUN4QixJQUFJLENBQUMsSUFBSSxHQUFHLElBQUksQ0FBQTtZQUVoQixPQUFNO1NBQ1A7UUFFRCxJQUFJLENBQUMsT0FBTyxHQUFHLFVBQVUsQ0FBQyxPQUFPLElBQUksSUFBSSxDQUFDLE9BQU8sQ0FBQTtRQUNqRCxJQUFJLENBQUMsWUFBWSxHQUFHLFVBQVUsQ0FBQyxLQUFLLElBQUksSUFBSSxDQUFDLFlBQVksQ0FBQTtRQUN6RCxJQUFJLENBQUMsSUFBSSxHQUFHLFVBQVUsQ0FBQyxNQUFNLElBQUksSUFBSSxDQUFDLElBQUksQ0FBQTtJQUM1QyxDQUFDO0lBRUQsTUFBTSxLQUFLLGlCQUFpQjtRQUMxQixPQUFPLENBQUMsSUFBSSxDQUFDLENBQUE7SUFDZixDQUFDO0NBQ0YiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBCYXNlTW9kZWwsIEdlbmVyaWNJZGVudGlmaWVyLCBNb2RlbEJhc2VTdHJ1Y3R1cmUgfSBmcm9tICcuLi8uLi9nZW5lcmljL21vZGVsJ1xyXG5pbXBvcnQge1xyXG4gIFByb2R1Y3RFdmFsdWF0aW9uLFxyXG4gIFByb2R1Y3RHZW5kZXIsXHJcbiAgUHJvZHVjdE1ldGFkYXRhLFxyXG4gIFByb2R1Y3RSZXZpZXcsXHJcbiAgU2hvcERlc2NyaXB0aW9uLFxyXG4gIFNob3BQcmljZSxcclxuICBTdG9jayxcclxufSBmcm9tICcuL3R5cGVzJ1xyXG5pbXBvcnQgeyBWYXJpYW50IH0gZnJvbSAnLi92YXJpYW50J1xyXG5cclxuZXhwb3J0IGNsYXNzIFByb2R1Y3RCYXNlPFxyXG4gIENoaWxkUHJvZHVjdCBleHRlbmRzIE1vZGVsQmFzZVN0cnVjdHVyZTxDaGlsZFByb2R1Y3QsIElkZW50aWZpZXJzPixcclxuICBJZGVudGlmaWVycyA9IENoaWxkUHJvZHVjdFsnaWRlbnRpZmllcnNGaWVsZHMnXSxcclxuPiBleHRlbmRzIEJhc2VNb2RlbDxDaGlsZFByb2R1Y3QsIElkZW50aWZpZXJzPiB7XHJcbiAgaWQ6IHN0cmluZ1xyXG4gIG5hbWU6IHN0cmluZ1xyXG4gIHNsdWc6IHN0cmluZ1xyXG4gIGRlc2NyaXB0aW9uOiBTaG9wRGVzY3JpcHRpb25cclxuICBza3U6IHN0cmluZ1xyXG4gIHByaWNlOiBTaG9wUHJpY2VcclxuICBoYXNWYXJpYW50czogYm9vbGVhblxyXG4gIE5DTTogc3RyaW5nXHJcbiAgRUFOOiBzdHJpbmdcclxuICBDRVNUOiBzdHJpbmdcclxuICB3ZWlnaHQ6IG51bWJlclxyXG4gIHN0b2NrOiBTdG9ja1xyXG4gIGNvc3RQcmljZTogbnVtYmVyXHJcbiAgaW1hZ2VzPzogc3RyaW5nW11cclxuICBtaW5pYXR1cmVzPzogc3RyaW5nW11cclxuICBwdWJsaXNoZWQ6IGJvb2xlYW5cclxuICBjcmVhdGVkQXQ/OiBEYXRlXHJcbiAgdXBkYXRlZEF0PzogRGF0ZVxyXG4gIGJyYW5kOiBzdHJpbmdcclxuICB0YWdzPzogc3RyaW5nW11cclxuICBmaWx0ZXJzPzogc3RyaW5nW11cclxuICB0eXBlPzogc3RyaW5nXHJcbiAgY2F0ZWdvcmllcz86IHN0cmluZ1tdXHJcbiAgcmV2aWV3cz86IFByb2R1Y3RSZXZpZXdbXVxyXG4gIHZhcmlhbnQ/OiBWYXJpYW50XHJcbiAgdmlkZW8/OiBzdHJpbmdcclxuICBpc0tpdD86IGJvb2xlYW5cclxuICByYXRlPzogbnVtYmVyXHJcbiAgZ2VuZGVyPzogUHJvZHVjdEdlbmRlclxyXG4gIHNob3BwaW5nQ291bnQ/OiBudW1iZXJcclxuICBtZXRhZGF0YTogUHJvZHVjdE1ldGFkYXRhXHJcblxyXG4gIHByaXZhdGUgcmV2aWV3c1RvdGFsPzogbnVtYmVyXHJcblxyXG4gIGdldCBldmFsdWF0aW9uKCk6IFByb2R1Y3RFdmFsdWF0aW9uIHtcclxuICAgIHJldHVybiB7XHJcbiAgICAgIHJldmlld3M6IHRoaXMucmV2aWV3cyxcclxuICAgICAgY291bnQ6IHRoaXMucmV2aWV3c1RvdGFsLFxyXG4gICAgICByYXRpbmc6IHRoaXMucmF0ZSxcclxuICAgIH1cclxuICB9XHJcblxyXG4gIHNldCBldmFsdWF0aW9uKGV2YWx1YXRpb246IFByb2R1Y3RFdmFsdWF0aW9uKSB7XHJcbiAgICBpZiAoIWV2YWx1YXRpb24pIHtcclxuICAgICAgdGhpcy5yZXZpZXdzID0gbnVsbFxyXG4gICAgICB0aGlzLnJldmlld3NUb3RhbCA9IG51bGxcclxuICAgICAgdGhpcy5yYXRlID0gbnVsbFxyXG5cclxuICAgICAgcmV0dXJuXHJcbiAgICB9XHJcblxyXG4gICAgdGhpcy5yZXZpZXdzID0gZXZhbHVhdGlvbi5yZXZpZXdzIHx8IHRoaXMucmV2aWV3c1xyXG4gICAgdGhpcy5yZXZpZXdzVG90YWwgPSBldmFsdWF0aW9uLmNvdW50IHx8IHRoaXMucmV2aWV3c1RvdGFsXHJcbiAgICB0aGlzLnJhdGUgPSBldmFsdWF0aW9uLnJhdGluZyB8fCB0aGlzLnJhdGVcclxuICB9XHJcblxyXG4gIHN0YXRpYyBnZXQgaWRlbnRpZmllcnNGaWVsZHMoKTogR2VuZXJpY0lkZW50aWZpZXJbXSB7XHJcbiAgICByZXR1cm4gWydpZCddXHJcbiAgfVxyXG59XHJcbiJdfQ==
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHJvZHVjdC1yZXZpZXcudHlwZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2Nvbm5lY3Qvc3JjL2RvbWFpbi9jYXRhbG9nL21vZGVscy90eXBlcy9wcm9kdWN0LXJldmlldy50eXBlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiIiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBTaG9wcyB9IGZyb20gJy4uL2VudW1zL3Nob3BzLmVudW0nXHJcblxyXG5leHBvcnQgdHlwZSBQcm9kdWN0UmV2aWV3ID0ge1xyXG4gIGlkPzogc3RyaW5nXHJcbiAgc2hvcDogU2hvcHNcclxuICByYXRlOiBudW1iZXJcclxuICBhdXRob3I/OiBzdHJpbmdcclxuICBlbWFpbD86IHN0cmluZ1xyXG4gIGxvY2F0aW9uPzogc3RyaW5nXHJcbiAgcmV2aWV3Pzogc3RyaW5nXHJcbiAgc3RhdHVzPzogYm9vbGVhblxyXG4gIHRpdGxlPzogc3RyaW5nXHJcbiAgcGVyc29uSWQ/OiBudW1iZXJcclxuICBwb2ludHM/OiBudW1iZXJcclxuICBvcmRlcklkPzogc3RyaW5nXHJcbiAgY3JlYXRlZEF0PzogRGF0ZVxyXG4gIHVwZGF0ZWRBdD86IERhdGVcclxufVxyXG4iXX0=
@@ -1,7 +0,0 @@
1
- import { BaseModel } from '../../generic/model';
2
- export class Variant extends BaseModel {
3
- static get identifiersFields() {
4
- return ['id', 'productId'];
5
- }
6
- }
7
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidmFyaWFudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2Nvbm5lY3Qvc3JjL2RvbWFpbi9jYXRhbG9nL21vZGVscy92YXJpYW50LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxTQUFTLEVBQUUsTUFBTSxxQkFBcUIsQ0FBQTtBQUsvQyxNQUFNLE9BQU8sT0FBUSxTQUFRLFNBQTZDO0lBYXhFLE1BQU0sS0FBSyxpQkFBaUI7UUFDMUIsT0FBTyxDQUFDLElBQUksRUFBRSxXQUFXLENBQUMsQ0FBQTtJQUM1QixDQUFDO0NBQ0YiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBCYXNlTW9kZWwgfSBmcm9tICcuLi8uLi9nZW5lcmljL21vZGVsJ1xyXG5pbXBvcnQgeyBTaG9wUHJpY2UsIFN0b2NrLCBWYXJpYW50R3JhZGUgfSBmcm9tICcuL3R5cGVzJ1xyXG5cclxuZXhwb3J0IHR5cGUgUHJvZHVjdFZhcmlhbnRJZGVudGlmaWVycyA9ICdpZCcgfCAncHJvZHVjdElkJ1xyXG5cclxuZXhwb3J0IGNsYXNzIFZhcmlhbnQgZXh0ZW5kcyBCYXNlTW9kZWw8VmFyaWFudCwgUHJvZHVjdFZhcmlhbnRJZGVudGlmaWVycz4ge1xyXG4gIGlkOiBzdHJpbmdcclxuICBwcm9kdWN0SWQ6IHN0cmluZ1xyXG4gIHNrdTogc3RyaW5nXHJcbiAgcHJpY2U6IFNob3BQcmljZVxyXG4gIEVBTjogc3RyaW5nXHJcbiAgc3RvY2s6IFN0b2NrXHJcbiAgZ3JhZGU/OiBWYXJpYW50R3JhZGVbXVxyXG4gIGNvc3RQcmljZTogbnVtYmVyXHJcbiAgd2VpZ2h0OiBudW1iZXJcclxuICBjcmVhdGVkQXQ/OiBEYXRlXHJcbiAgdXBkYXRlZEF0PzogRGF0ZVxyXG5cclxuICBzdGF0aWMgZ2V0IGlkZW50aWZpZXJzRmllbGRzKCk6IFByb2R1Y3RWYXJpYW50SWRlbnRpZmllcnNbXSB7XHJcbiAgICByZXR1cm4gWydpZCcsICdwcm9kdWN0SWQnXVxyXG4gIH1cclxufVxyXG4iXX0=
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY2F0ZWdvcnktZmlsdGVyLnJlcG9zaXRvcnkuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9jb25uZWN0L3NyYy9kb21haW4vY2F0YWxvZy9yZXBvc2l0b3JpZXMvY2F0ZWdvcnktZmlsdGVyLnJlcG9zaXRvcnkudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENydWRSZXBvc2l0b3J5IH0gZnJvbSAnLi4vLi4vZ2VuZXJpYy9yZXBvc2l0b3J5L2NydWQucmVwb3NpdG9yeSdcclxuaW1wb3J0IHsgQ2F0ZWdvcnlGaWx0ZXIgfSBmcm9tICcuLi9tb2RlbHMnXHJcblxyXG5leHBvcnQgaW50ZXJmYWNlIENhdGVnb3J5RmlsdGVyUmVwb3NpdG9yeSBleHRlbmRzIENydWRSZXBvc2l0b3J5PENhdGVnb3J5RmlsdGVyPiB7XHJcbiAgZGVsZXRlQnlDYXRlZ29yeUFuZEZpbHRlcihjYXRlZ29yeUlkOiBudW1iZXIsIGZpbHRlcklkOiBudW1iZXIpOiBQcm9taXNlPGFueT5cclxuICBkZWxldGVCeUNhdGVnb3J5KGNhdGVnb3J5SWQ6IG51bWJlcik6IFByb21pc2U8YW55PlxyXG59XHJcbiJdfQ==
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY2F0ZWdvcnkucmVwb3NpdG9yeS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2Nvbm5lY3Qvc3JjL2RvbWFpbi9jYXRhbG9nL3JlcG9zaXRvcmllcy9jYXRlZ29yeS5yZXBvc2l0b3J5LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiIiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDcnVkUmVwb3NpdG9yeSB9IGZyb20gJy4uLy4uL2dlbmVyaWMvcmVwb3NpdG9yeS9jcnVkLnJlcG9zaXRvcnknXHJcbmltcG9ydCB7IFByb2R1Y3QgfSBmcm9tICcuLi9tb2RlbHMnXHJcbmltcG9ydCB7IENhdGVnb3J5IH0gZnJvbSAnLi4vbW9kZWxzL2NhdGVnb3J5J1xyXG5pbXBvcnQgeyBTaG9wcyB9IGZyb20gJy4uL21vZGVscy9lbnVtcy9zaG9wcy5lbnVtJ1xyXG5cclxuZXhwb3J0IGludGVyZmFjZSBDYXRlZ29yeVJlcG9zaXRvcnkgZXh0ZW5kcyBDcnVkUmVwb3NpdG9yeTxDYXRlZ29yeT4ge1xyXG4gIGdldENhdGVnb3J5QnlTbHVnKHNsdWc6IHN0cmluZywgc2hvcDogU2hvcHMpOiBQcm9taXNlPENhdGVnb3J5PlxyXG4gIGdldENhdGVnb3J5QnlTaG9wKHNob3A6IHN0cmluZyk6IFByb21pc2U8Q2F0ZWdvcnlbXT5cclxuICBnZXRDYXRlZ29yaWVzRm9ySG9tZShcclxuICAgIGNhdGVnb3J5SWRzOiBzdHJpbmdbXSxcclxuICAgIGxpbWl0PzogbnVtYmVyLFxyXG4gICAgZ2VuZGVyPzogc3RyaW5nLFxyXG4gICk6IFByb21pc2U8eyBjYXRlZ29yeTogQ2F0ZWdvcnk7IHByb2R1Y3RzOiBQcm9kdWN0W10gfVtdPlxyXG4gIG1vdW50Q2F0ZWdvcnkoY2F0ZWdvcnk6IENhdGVnb3J5LCBvcHRpb25zPzogeyBsaW1pdD86IG51bWJlcjsgaGFzU3RvY2s/OiBib29sZWFuIH0pOiBQcm9taXNlPFByb2R1Y3RbXT5cclxuICBnZXRDaGlsZHJlbihwYXJlbnRJZDogbnVtYmVyKTogUHJvbWlzZTxDYXRlZ29yeVtdPlxyXG4gIGlzQ2hpbGQoaWQ6IG51bWJlciwgcGFyZW50SWQ6IG51bWJlcik6IFByb21pc2U8Ym9vbGVhbj5cclxufVxyXG4iXX0=
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHJvZHVjdC5yZXBvc2l0b3J5LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvY29ubmVjdC9zcmMvZG9tYWluL2NhdGFsb2cvcmVwb3NpdG9yaWVzL3Byb2R1Y3QucmVwb3NpdG9yeS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgRmluZFJlcG9zaXRvcnlQYXJhbXMsIFJlcG9zaXRvcnlGaW5kUmVzdWx0IH0gZnJvbSAnLi4vLi4vZ2VuZXJpYydcclxuaW1wb3J0IHsgQ3J1ZFJlcG9zaXRvcnkgfSBmcm9tICcuLi8uLi9nZW5lcmljL3JlcG9zaXRvcnkvY3J1ZC5yZXBvc2l0b3J5J1xyXG5pbXBvcnQgeyBQcm9kdWN0LCBQcm9kdWN0R2VuZGVyLCBQcm9kdWN0UmV2aWV3IH0gZnJvbSAnLi4vbW9kZWxzJ1xyXG5cclxuZXhwb3J0IHR5cGUgUmV2aWV3U3RhdHVzUGFyYW1zID0gJ3BlbmRpbmcnIHwgJ2FwcHJvdmVkJyB8ICdyZWplY3RlZCdcclxuZXhwb3J0IHR5cGUgUmV2aWV3V2l0aFByb2R1Y3REYXRhID0gUHJvZHVjdFJldmlldyAmIHsgcHJvZHVjdElkOiBzdHJpbmc7IHByb2R1Y3ROYW1lOiBzdHJpbmc7IHByb2R1Y3RTa3U6IHN0cmluZyB9XHJcblxyXG5leHBvcnQgaW50ZXJmYWNlIFByb2R1Y3RSZXBvc2l0b3J5IGV4dGVuZHMgQ3J1ZFJlcG9zaXRvcnk8UHJvZHVjdD4ge1xyXG4gIGdldEJ5U2x1ZyhzbHVnOiBzdHJpbmcpOiBQcm9taXNlPFByb2R1Y3Q+XHJcbiAgZmV0Y2hSZXZpZXdzKHN0YXR1czogUmV2aWV3U3RhdHVzUGFyYW1zKTogUHJvbWlzZTxSZXZpZXdXaXRoUHJvZHVjdERhdGFbXT5cclxuICBjbGVhblNob3BwaW5nQ291bnRGcm9tSWRzKGlkczogc3RyaW5nW10pOiBQcm9taXNlPGFueT5cclxuICBmaW5kQ2F0YWxvZyhcclxuICAgIHBhcmFtczogRmluZFJlcG9zaXRvcnlQYXJhbXM8UHJvZHVjdD4sXHJcbiAgICBtYWluR2VuZGVyPzogRXh0cmFjdDxQcm9kdWN0R2VuZGVyLCAnZmVtYWxlJyB8ICdtYWxlJz4sXHJcbiAgKTogUHJvbWlzZTxSZXBvc2l0b3J5RmluZFJlc3VsdDxQcm9kdWN0Pj5cclxufVxyXG4iXX0=
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoid2lzaGxpc3QucmVwb3NpdG9yeS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2Nvbm5lY3Qvc3JjL2RvbWFpbi9jYXRhbG9nL3JlcG9zaXRvcmllcy93aXNobGlzdC5yZXBvc2l0b3J5LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiIiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDYXRlZ29yeVJlcG9zaXRvcnkgfSBmcm9tICcuJ1xyXG5pbXBvcnQgeyBXaXNobGlzdCB9IGZyb20gJy4uL21vZGVscy93aXNobGlzdCdcclxuXHJcbmV4cG9ydCBpbnRlcmZhY2UgV2lzaGxpc3RSZXBvc2l0b3J5IGV4dGVuZHMgQ2F0ZWdvcnlSZXBvc2l0b3J5IHtcclxuICBnZXRXaXNobGlzdEJ5U2x1ZyhzbHVnOiBzdHJpbmcpOiBQcm9taXNlPFdpc2hsaXN0PlxyXG4gIGdldFdpc2hsaXN0QnlQZXJzb24ocGVyc29uSWQ6IHN0cmluZyk6IFByb21pc2U8V2lzaGxpc3RbXT5cclxufVxyXG4iXX0=
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYmFzZS1tb2RlbC1idWlsZGVyLnR5cGUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9jb25uZWN0L3NyYy9kb21haW4vZ2VuZXJpYy9tb2RlbC90eXBlcy9iYXNlLW1vZGVsLWJ1aWxkZXIudHlwZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgUGFydGlhbElkZW50aWZpZXJzTW9kZWwgfSBmcm9tICcuL2lkZW50aWZpZXItbW9kZWwudHlwZSdcclxuaW1wb3J0IHsgTW9kZWxCYXNlU3RydWN0dXJlIH0gZnJvbSAnLi9tb2RlbC1iYXNlLXN0cnVjdHVyZS50eXBlJ1xyXG5pbXBvcnQgeyBOb25GdW5jdGlvbkFuZElkZW50aWZpZXJQcm9wZXJ0aWVzV2l0aE5vUGFydGlhbCB9IGZyb20gJy4vbm9uLWZ1bmN0aW9uLXByb3BlcnRpZXMudHlwZSdcclxuaW1wb3J0IHsgTm9uRnVuY3Rpb25BbmRJZGVudGlmaWVyUHJvcGVydHlOYW1lcyB9IGZyb20gJy4vbm9uLWZ1bmN0aW9uLXByb3BlcnR5LW5hbWUudHlwZSdcclxuXHJcbmV4cG9ydCBpbnRlcmZhY2UgQmFzZU1vZGVsQnVpbGRlcjxcclxuICBUIGV4dGVuZHMgTW9kZWxCYXNlU3RydWN0dXJlPFQ+LFxyXG4gIElkZW50aWZpZXJzID0gTm9uRnVuY3Rpb25BbmRJZGVudGlmaWVyUHJvcGVydHlOYW1lczxUPiB8IGFueSxcclxuICBQIGV4dGVuZHMgVCAmIHsgcHJvdG90eXBlOiB1bmtub3duIH0gPSBUICYgeyBwcm90b3R5cGU6IHVua25vd24gfSxcclxuPiB7XHJcbiAgbmV3ICguLi5hcmdzOiBhbnlbXSk6IFRcclxuICBpZGVudGlmaWVyc0ZpZWxkczogSWRlbnRpZmllcnNbXVxyXG4gIHByb3RvdHlwZTogeyBba2V5IGluIGtleW9mIFBbJ3Byb3RvdHlwZSddXTogUFsncHJvdG90eXBlJ11ba2V5XSB9XHJcbiAgdG9JbnN0YW5jZTxFPihcclxuICAgIHRoaXM6IG5ldyAoKSA9PiBFLFxyXG4gICAgZGF0YT86IE5vbkZ1bmN0aW9uQW5kSWRlbnRpZmllclByb3BlcnRpZXNXaXRoTm9QYXJ0aWFsPFQ+IHwgUGFydGlhbElkZW50aWZpZXJzTW9kZWw8VD4sXHJcbiAgKTogRVxyXG4gIGlzTW9kZWwobW9kZWw6IGFueSk6IG1vZGVsIGlzIFRcclxufVxyXG4iXX0=
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaWRlbnRpZmllci1tb2RlbC50eXBlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvY29ubmVjdC9zcmMvZG9tYWluL2dlbmVyaWMvbW9kZWwvdHlwZXMvaWRlbnRpZmllci1tb2RlbC50eXBlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiIiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBQcm9wVHlwZSB9IGZyb20gJy4uLy4uLy4uLy4uL3V0aWxzJ1xyXG5pbXBvcnQgeyBNb2RlbEJhc2VTdHJ1Y3R1cmUgfSBmcm9tICcuL21vZGVsLWJhc2Utc3RydWN0dXJlLnR5cGUnXHJcbmltcG9ydCB7IE5vbkZ1bmN0aW9uQW5kSWRlbnRpZmllclByb3BlcnR5TmFtZXMgfSBmcm9tICcuL25vbi1mdW5jdGlvbi1wcm9wZXJ0eS1uYW1lLnR5cGUnXHJcblxyXG5leHBvcnQgdHlwZSBJZGVudGlmaWVyTW9kZWw8TW9kZWwgZXh0ZW5kcyBNb2RlbEJhc2VTdHJ1Y3R1cmU+ID0gRXh0cmFjdDxcclxuICBOb25GdW5jdGlvbkFuZElkZW50aWZpZXJQcm9wZXJ0eU5hbWVzPE1vZGVsPixcclxuICBQcm9wVHlwZTxNb2RlbCwgJ2lkZW50aWZpZXJzRmllbGRzJz5bbnVtYmVyXVxyXG4+XHJcbmV4cG9ydCB0eXBlIElkZW50aWZpZXJzTW9kZWw8TW9kZWwgZXh0ZW5kcyBNb2RlbEJhc2VTdHJ1Y3R1cmU+ID0ge1xyXG4gIFtLIGluIElkZW50aWZpZXJNb2RlbDxNb2RlbD5dOiBNb2RlbFtLXVxyXG59XHJcbmV4cG9ydCB0eXBlIFBhcnRpYWxJZGVudGlmaWVyc01vZGVsPE1vZGVsIGV4dGVuZHMgTW9kZWxCYXNlU3RydWN0dXJlPiA9IFBhcnRpYWw8SWRlbnRpZmllcnNNb2RlbDxNb2RlbD4+XHJcbiJdfQ==
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibW9kZWwtYmFzZS1zdHJ1Y3R1cmUudHlwZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2Nvbm5lY3Qvc3JjL2RvbWFpbi9nZW5lcmljL21vZGVsL3R5cGVzL21vZGVsLWJhc2Utc3RydWN0dXJlLnR5cGUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IE5vbkZ1bmN0aW9uQW5kSWRlbnRpZmllclByb3BlcnR5TmFtZXMgfSBmcm9tICcuLidcclxuXHJcbnR5cGUgTW9kZWxCYXNlU3RydWN0dXJlUmVjb3JkID0gUmVjb3JkPHN0cmluZywgYW55PiAmIHsgaWRlbnRpZmllcnNGaWVsZHM6IGFueVtdIH1cclxuXHJcbmV4cG9ydCB0eXBlIE1vZGVsQmFzZVN0cnVjdHVyZTxcclxuICBNIGV4dGVuZHMgTW9kZWxCYXNlU3RydWN0dXJlUmVjb3JkID0gTW9kZWxCYXNlU3RydWN0dXJlUmVjb3JkLFxyXG4gIEkgPSBNWydpZGVudGlmaWVyc0ZpZWxkcyddW251bWJlcl0sXHJcbj4gPSB7XHJcbiAgaWRlbnRpZmllcjogeyBba2V5IGluIEV4dHJhY3Q8Tm9uRnVuY3Rpb25BbmRJZGVudGlmaWVyUHJvcGVydHlOYW1lczxNPiwgST5dOiBNW2tleV0gfVxyXG4gIGlkZW50aWZpZXJzRmllbGRzOiBJW11cclxuICB0b1BsYWluOiBhbnlcclxufVxyXG4iXX0=