@infrab4a/connect 4.29.0 → 4.29.1-alpha.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (110) hide show
  1. package/index.cjs.js +3817 -2863
  2. package/index.esm.js +3815 -2862
  3. package/package.json +2 -2
  4. package/src/domain/catalog/repositories/category.repository.d.ts +22 -9
  5. package/src/domain/catalog/repositories/filter-option.repository.d.ts +1 -1
  6. package/src/domain/catalog/repositories/filter.repository.d.ts +1 -1
  7. package/src/domain/catalog/repositories/product-stock-notification.repository.d.ts +8 -1
  8. package/src/domain/catalog/repositories/wishlist.repository.d.ts +1 -1
  9. package/src/domain/shopping/models/campaign-dashboard.d.ts +1 -1
  10. package/src/domain/shopping/models/campaign-hashtag.d.ts +1 -1
  11. package/src/domain/shopping/repositories/order-blocked.repository.d.ts +9 -1
  12. package/src/domain/shopping/services/antifraud-card.service.d.ts +17 -0
  13. package/src/domain/shopping/services/antifraud-glampoints.service.d.ts +1 -1
  14. package/src/domain/shopping/services/antifraud-pix.service.d.ts +1 -1
  15. package/src/infra/adyen/adapters/adyen-card-payment-axios.adapter.d.ts +6 -4
  16. package/src/infra/adyen/helpers/adyen-blocked-order.helper.d.ts +13 -0
  17. package/src/infra/adyen/helpers/adyen-payment-factory.helper.d.ts +6 -0
  18. package/src/infra/adyen/helpers/adyen-payment-operations.helper.d.ts +31 -0
  19. package/src/infra/adyen/helpers/index.d.ts +3 -0
  20. package/src/infra/elasticsearch/helpers/elasticsearch-fields.helper.d.ts +8 -0
  21. package/src/infra/elasticsearch/helpers/elasticsearch-query-builder.helper.d.ts +16 -0
  22. package/src/infra/elasticsearch/helpers/elasticsearch-result-processor.helper.d.ts +8 -0
  23. package/src/infra/elasticsearch/helpers/elasticsearch-search-operations.helper.d.ts +11 -0
  24. package/src/infra/elasticsearch/helpers/index.d.ts +4 -0
  25. package/src/infra/elasticsearch/indexes/products-index.d.ts +1 -39
  26. package/src/infra/firebase/firestore/mixins/helpers/firestore-cache.helper.d.ts +41 -0
  27. package/src/infra/firebase/firestore/mixins/helpers/firestore-data-converter.helper.d.ts +7 -0
  28. package/src/infra/firebase/firestore/mixins/helpers/firestore-model-converter.helper.d.ts +14 -0
  29. package/src/infra/firebase/firestore/mixins/helpers/firestore-operations.helper.d.ts +24 -0
  30. package/src/infra/firebase/firestore/mixins/helpers/firestore-query-builder.helper.d.ts +37 -0
  31. package/src/infra/firebase/firestore/mixins/helpers/index.d.ts +3 -0
  32. package/src/infra/firebase/firestore/mixins/with-sub-collection.mixin.d.ts +1 -1
  33. package/src/infra/firebase/firestore/repositories/catalog/category-firestore.repository.d.ts +21 -9
  34. package/src/infra/firebase/firestore/repositories/catalog/product-firestore.repository.d.ts +1 -1
  35. package/src/infra/firebase/firestore/repositories/shopping/order-blocked-firestore.repository.d.ts +8 -1
  36. package/src/infra/hasura-graphql/mixins/factories/create-hasura-class.factory.d.ts +30 -0
  37. package/src/infra/hasura-graphql/mixins/factories/delete-hasura-class.factory.d.ts +26 -0
  38. package/src/infra/hasura-graphql/mixins/factories/find-hasura-class.factory.d.ts +31 -0
  39. package/src/infra/hasura-graphql/mixins/factories/get-hasura-class.factory.d.ts +29 -0
  40. package/src/infra/hasura-graphql/mixins/factories/hasura-graphql-class.factory.d.ts +40 -0
  41. package/src/infra/hasura-graphql/mixins/factories/index.d.ts +6 -0
  42. package/src/infra/hasura-graphql/mixins/factories/update-hasura-class.factory.d.ts +36 -0
  43. package/src/infra/hasura-graphql/mixins/helpers/create/hasura-column.helper.d.ts +7 -0
  44. package/src/infra/hasura-graphql/mixins/helpers/create/hasura-create-operations.helper.d.ts +16 -0
  45. package/src/infra/hasura-graphql/mixins/helpers/create/index.d.ts +2 -0
  46. package/src/infra/hasura-graphql/mixins/helpers/delete/hasura-cache-operations.helper.d.ts +9 -0
  47. package/src/infra/hasura-graphql/mixins/helpers/delete/hasura-delete-operations.helper.d.ts +15 -0
  48. package/src/infra/hasura-graphql/mixins/helpers/delete/hasura-delete-variables.helper.d.ts +10 -0
  49. package/src/infra/hasura-graphql/mixins/helpers/delete/index.d.ts +3 -0
  50. package/src/infra/hasura-graphql/mixins/helpers/find/hasura-find-binding.helper.d.ts +18 -0
  51. package/src/infra/hasura-graphql/mixins/helpers/find/hasura-find-cache.helper.d.ts +25 -0
  52. package/src/infra/hasura-graphql/mixins/helpers/find/hasura-find-operations.helper.d.ts +20 -0
  53. package/src/infra/hasura-graphql/mixins/helpers/find/hasura-find-query-builder.helper.d.ts +14 -0
  54. package/src/infra/hasura-graphql/mixins/helpers/find/hasura-find-result.helper.d.ts +26 -0
  55. package/src/infra/hasura-graphql/mixins/helpers/find/hasura-find-variables.helper.d.ts +21 -0
  56. package/src/infra/hasura-graphql/mixins/helpers/find/index.d.ts +6 -0
  57. package/src/infra/hasura-graphql/mixins/helpers/get/hasura-get-cache.helper.d.ts +21 -0
  58. package/src/infra/hasura-graphql/mixins/helpers/get/hasura-get-operations.helper.d.ts +18 -0
  59. package/src/infra/hasura-graphql/mixins/helpers/get/hasura-get-variables.helper.d.ts +9 -0
  60. package/src/infra/hasura-graphql/mixins/helpers/get/index.d.ts +3 -0
  61. package/src/infra/hasura-graphql/mixins/helpers/hasura-auth.helper.d.ts +4 -0
  62. package/src/infra/hasura-graphql/mixins/helpers/hasura-data-converter.helper.d.ts +8 -0
  63. package/src/infra/hasura-graphql/mixins/helpers/hasura-graphql-operations.helper.d.ts +32 -0
  64. package/src/infra/hasura-graphql/mixins/helpers/hasura-query-builder.helper.d.ts +23 -0
  65. package/src/infra/hasura-graphql/mixins/helpers/hasura-request.helper.d.ts +11 -0
  66. package/src/infra/hasura-graphql/mixins/helpers/index.d.ts +11 -1
  67. package/src/infra/hasura-graphql/mixins/helpers/update/hasura-update-data.helper.d.ts +6 -0
  68. package/src/infra/hasura-graphql/mixins/helpers/update/hasura-update-operations.helper.d.ts +18 -0
  69. package/src/infra/hasura-graphql/mixins/helpers/update/hasura-update-variables.helper.d.ts +25 -0
  70. package/src/infra/hasura-graphql/mixins/helpers/update/index.d.ts +3 -0
  71. package/src/infra/hasura-graphql/mixins/with-create-hasura-graphql.mixin.d.ts +3 -7
  72. package/src/infra/hasura-graphql/mixins/with-crud-hasura-graphql.mixin.d.ts +2 -6
  73. package/src/infra/hasura-graphql/mixins/with-delete-hasura-graphql.mixin.d.ts +3 -5
  74. package/src/infra/hasura-graphql/mixins/with-find-hasura-graphql.mixin.d.ts +4 -54
  75. package/src/infra/hasura-graphql/mixins/with-get-hasura-graphql.mixin.d.ts +4 -28
  76. package/src/infra/hasura-graphql/mixins/with-hasura-graphql.mixin.d.ts +4 -22
  77. package/src/infra/hasura-graphql/mixins/with-update-hasura-graphql.mixin.d.ts +4 -12
  78. package/src/infra/hasura-graphql/repositories/catalog/category-collection-children-hasura-graphql.repository.d.ts +1 -3
  79. package/src/infra/hasura-graphql/repositories/catalog/category-filter-hasura-graphql.repository.d.ts +1 -3
  80. package/src/infra/hasura-graphql/repositories/catalog/category-hasura-graphql.repository.d.ts +4 -15
  81. package/src/infra/hasura-graphql/repositories/catalog/category-product-hasura-graphql.repository.d.ts +1 -3
  82. package/src/infra/hasura-graphql/repositories/catalog/filter-hasura-graphql.repository.d.ts +2 -4
  83. package/src/infra/hasura-graphql/repositories/catalog/filter-option-hasura-graphql.repository.d.ts +1 -3
  84. package/src/infra/hasura-graphql/repositories/catalog/helpers/category-cache-operations.helper.d.ts +31 -0
  85. package/src/infra/hasura-graphql/repositories/catalog/helpers/category-filter-operations.helper.d.ts +17 -0
  86. package/src/infra/hasura-graphql/repositories/catalog/helpers/category-home-operations.helper.d.ts +32 -0
  87. package/src/infra/hasura-graphql/repositories/catalog/helpers/category-mount-operations.helper.d.ts +19 -0
  88. package/src/infra/hasura-graphql/repositories/catalog/helpers/category-product-operations.helper.d.ts +62 -0
  89. package/src/infra/hasura-graphql/repositories/catalog/helpers/index.d.ts +10 -0
  90. package/src/infra/hasura-graphql/repositories/catalog/helpers/product-fetch-reviews.helper.d.ts +17 -0
  91. package/src/infra/hasura-graphql/repositories/catalog/helpers/product-review-cache.helper.d.ts +28 -0
  92. package/src/infra/hasura-graphql/repositories/catalog/helpers/product-review-operations.helper.d.ts +20 -0
  93. package/src/infra/hasura-graphql/repositories/catalog/helpers/product-review-update.helper.d.ts +20 -0
  94. package/src/infra/hasura-graphql/repositories/catalog/helpers/product-variant-report.helper.d.ts +9 -0
  95. package/src/infra/hasura-graphql/repositories/catalog/product-errors-hasura-graphql.repository.d.ts +1 -3
  96. package/src/infra/hasura-graphql/repositories/catalog/product-hasura-graphql.repository.d.ts +1 -3
  97. package/src/infra/hasura-graphql/repositories/catalog/product-review-hasura-graphql.repository.d.ts +1 -3
  98. package/src/infra/hasura-graphql/repositories/catalog/product-stock-notification-hasura-graphql.repository.d.ts +8 -4
  99. package/src/infra/hasura-graphql/repositories/catalog/variant-hasura-graphql.repository.d.ts +1 -3
  100. package/src/infra/hasura-graphql/repositories/catalog/wishlist-hasura-graphql.repository.d.ts +8 -10
  101. package/src/infra/pagarme/adapters/helpers/index.d.ts +3 -0
  102. package/src/infra/pagarme/adapters/helpers/pagarme-blocked-order.helper.d.ts +14 -0
  103. package/src/infra/pagarme/adapters/helpers/pagarme-payment-factory.helper.d.ts +11 -0
  104. package/src/infra/pagarme/adapters/helpers/pagarme-payment-operations.helper.d.ts +12 -0
  105. package/src/infra/vertex-ai/adapters/vertex-axios.adapter.d.ts +1 -1
  106. package/src/utils/circular-dependencies.d.ts +0 -4
  107. package/src/utils/helpers/debug.helper.d.ts +8 -8
  108. package/src/utils/helpers/reflect.helper.d.ts +1 -1
  109. package/src/utils/index.d.ts +1 -0
  110. package/src/utils/obs-emitter.d.ts +15 -0

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.