@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.
- package/index.cjs.js +3817 -2863
- package/index.esm.js +3815 -2862
- package/package.json +2 -2
- package/src/domain/catalog/repositories/category.repository.d.ts +22 -9
- package/src/domain/catalog/repositories/filter-option.repository.d.ts +1 -1
- package/src/domain/catalog/repositories/filter.repository.d.ts +1 -1
- package/src/domain/catalog/repositories/product-stock-notification.repository.d.ts +8 -1
- package/src/domain/catalog/repositories/wishlist.repository.d.ts +1 -1
- package/src/domain/shopping/models/campaign-dashboard.d.ts +1 -1
- package/src/domain/shopping/models/campaign-hashtag.d.ts +1 -1
- package/src/domain/shopping/repositories/order-blocked.repository.d.ts +9 -1
- package/src/domain/shopping/services/antifraud-card.service.d.ts +17 -0
- package/src/domain/shopping/services/antifraud-glampoints.service.d.ts +1 -1
- package/src/domain/shopping/services/antifraud-pix.service.d.ts +1 -1
- package/src/infra/adyen/adapters/adyen-card-payment-axios.adapter.d.ts +6 -4
- package/src/infra/adyen/helpers/adyen-blocked-order.helper.d.ts +13 -0
- package/src/infra/adyen/helpers/adyen-payment-factory.helper.d.ts +6 -0
- package/src/infra/adyen/helpers/adyen-payment-operations.helper.d.ts +31 -0
- package/src/infra/adyen/helpers/index.d.ts +3 -0
- package/src/infra/elasticsearch/helpers/elasticsearch-fields.helper.d.ts +8 -0
- package/src/infra/elasticsearch/helpers/elasticsearch-query-builder.helper.d.ts +16 -0
- package/src/infra/elasticsearch/helpers/elasticsearch-result-processor.helper.d.ts +8 -0
- package/src/infra/elasticsearch/helpers/elasticsearch-search-operations.helper.d.ts +11 -0
- package/src/infra/elasticsearch/helpers/index.d.ts +4 -0
- package/src/infra/elasticsearch/indexes/products-index.d.ts +1 -39
- package/src/infra/firebase/firestore/mixins/helpers/firestore-cache.helper.d.ts +41 -0
- package/src/infra/firebase/firestore/mixins/helpers/firestore-data-converter.helper.d.ts +7 -0
- package/src/infra/firebase/firestore/mixins/helpers/firestore-model-converter.helper.d.ts +14 -0
- package/src/infra/firebase/firestore/mixins/helpers/firestore-operations.helper.d.ts +24 -0
- package/src/infra/firebase/firestore/mixins/helpers/firestore-query-builder.helper.d.ts +37 -0
- package/src/infra/firebase/firestore/mixins/helpers/index.d.ts +3 -0
- package/src/infra/firebase/firestore/mixins/with-sub-collection.mixin.d.ts +1 -1
- package/src/infra/firebase/firestore/repositories/catalog/category-firestore.repository.d.ts +21 -9
- package/src/infra/firebase/firestore/repositories/catalog/product-firestore.repository.d.ts +1 -1
- package/src/infra/firebase/firestore/repositories/shopping/order-blocked-firestore.repository.d.ts +8 -1
- package/src/infra/hasura-graphql/mixins/factories/create-hasura-class.factory.d.ts +30 -0
- package/src/infra/hasura-graphql/mixins/factories/delete-hasura-class.factory.d.ts +26 -0
- package/src/infra/hasura-graphql/mixins/factories/find-hasura-class.factory.d.ts +31 -0
- package/src/infra/hasura-graphql/mixins/factories/get-hasura-class.factory.d.ts +29 -0
- package/src/infra/hasura-graphql/mixins/factories/hasura-graphql-class.factory.d.ts +40 -0
- package/src/infra/hasura-graphql/mixins/factories/index.d.ts +6 -0
- package/src/infra/hasura-graphql/mixins/factories/update-hasura-class.factory.d.ts +36 -0
- package/src/infra/hasura-graphql/mixins/helpers/create/hasura-column.helper.d.ts +7 -0
- package/src/infra/hasura-graphql/mixins/helpers/create/hasura-create-operations.helper.d.ts +16 -0
- package/src/infra/hasura-graphql/mixins/helpers/create/index.d.ts +2 -0
- package/src/infra/hasura-graphql/mixins/helpers/delete/hasura-cache-operations.helper.d.ts +9 -0
- package/src/infra/hasura-graphql/mixins/helpers/delete/hasura-delete-operations.helper.d.ts +15 -0
- package/src/infra/hasura-graphql/mixins/helpers/delete/hasura-delete-variables.helper.d.ts +10 -0
- package/src/infra/hasura-graphql/mixins/helpers/delete/index.d.ts +3 -0
- package/src/infra/hasura-graphql/mixins/helpers/find/hasura-find-binding.helper.d.ts +18 -0
- package/src/infra/hasura-graphql/mixins/helpers/find/hasura-find-cache.helper.d.ts +25 -0
- package/src/infra/hasura-graphql/mixins/helpers/find/hasura-find-operations.helper.d.ts +20 -0
- package/src/infra/hasura-graphql/mixins/helpers/find/hasura-find-query-builder.helper.d.ts +14 -0
- package/src/infra/hasura-graphql/mixins/helpers/find/hasura-find-result.helper.d.ts +26 -0
- package/src/infra/hasura-graphql/mixins/helpers/find/hasura-find-variables.helper.d.ts +21 -0
- package/src/infra/hasura-graphql/mixins/helpers/find/index.d.ts +6 -0
- package/src/infra/hasura-graphql/mixins/helpers/get/hasura-get-cache.helper.d.ts +21 -0
- package/src/infra/hasura-graphql/mixins/helpers/get/hasura-get-operations.helper.d.ts +18 -0
- package/src/infra/hasura-graphql/mixins/helpers/get/hasura-get-variables.helper.d.ts +9 -0
- package/src/infra/hasura-graphql/mixins/helpers/get/index.d.ts +3 -0
- package/src/infra/hasura-graphql/mixins/helpers/hasura-auth.helper.d.ts +4 -0
- package/src/infra/hasura-graphql/mixins/helpers/hasura-data-converter.helper.d.ts +8 -0
- package/src/infra/hasura-graphql/mixins/helpers/hasura-graphql-operations.helper.d.ts +32 -0
- package/src/infra/hasura-graphql/mixins/helpers/hasura-query-builder.helper.d.ts +23 -0
- package/src/infra/hasura-graphql/mixins/helpers/hasura-request.helper.d.ts +11 -0
- package/src/infra/hasura-graphql/mixins/helpers/index.d.ts +11 -1
- package/src/infra/hasura-graphql/mixins/helpers/update/hasura-update-data.helper.d.ts +6 -0
- package/src/infra/hasura-graphql/mixins/helpers/update/hasura-update-operations.helper.d.ts +18 -0
- package/src/infra/hasura-graphql/mixins/helpers/update/hasura-update-variables.helper.d.ts +25 -0
- package/src/infra/hasura-graphql/mixins/helpers/update/index.d.ts +3 -0
- package/src/infra/hasura-graphql/mixins/with-create-hasura-graphql.mixin.d.ts +3 -7
- package/src/infra/hasura-graphql/mixins/with-crud-hasura-graphql.mixin.d.ts +2 -6
- package/src/infra/hasura-graphql/mixins/with-delete-hasura-graphql.mixin.d.ts +3 -5
- package/src/infra/hasura-graphql/mixins/with-find-hasura-graphql.mixin.d.ts +4 -54
- package/src/infra/hasura-graphql/mixins/with-get-hasura-graphql.mixin.d.ts +4 -28
- package/src/infra/hasura-graphql/mixins/with-hasura-graphql.mixin.d.ts +4 -22
- package/src/infra/hasura-graphql/mixins/with-update-hasura-graphql.mixin.d.ts +4 -12
- package/src/infra/hasura-graphql/repositories/catalog/category-collection-children-hasura-graphql.repository.d.ts +1 -3
- package/src/infra/hasura-graphql/repositories/catalog/category-filter-hasura-graphql.repository.d.ts +1 -3
- package/src/infra/hasura-graphql/repositories/catalog/category-hasura-graphql.repository.d.ts +4 -15
- package/src/infra/hasura-graphql/repositories/catalog/category-product-hasura-graphql.repository.d.ts +1 -3
- package/src/infra/hasura-graphql/repositories/catalog/filter-hasura-graphql.repository.d.ts +2 -4
- package/src/infra/hasura-graphql/repositories/catalog/filter-option-hasura-graphql.repository.d.ts +1 -3
- package/src/infra/hasura-graphql/repositories/catalog/helpers/category-cache-operations.helper.d.ts +31 -0
- package/src/infra/hasura-graphql/repositories/catalog/helpers/category-filter-operations.helper.d.ts +17 -0
- package/src/infra/hasura-graphql/repositories/catalog/helpers/category-home-operations.helper.d.ts +32 -0
- package/src/infra/hasura-graphql/repositories/catalog/helpers/category-mount-operations.helper.d.ts +19 -0
- package/src/infra/hasura-graphql/repositories/catalog/helpers/category-product-operations.helper.d.ts +62 -0
- package/src/infra/hasura-graphql/repositories/catalog/helpers/index.d.ts +10 -0
- package/src/infra/hasura-graphql/repositories/catalog/helpers/product-fetch-reviews.helper.d.ts +17 -0
- package/src/infra/hasura-graphql/repositories/catalog/helpers/product-review-cache.helper.d.ts +28 -0
- package/src/infra/hasura-graphql/repositories/catalog/helpers/product-review-operations.helper.d.ts +20 -0
- package/src/infra/hasura-graphql/repositories/catalog/helpers/product-review-update.helper.d.ts +20 -0
- package/src/infra/hasura-graphql/repositories/catalog/helpers/product-variant-report.helper.d.ts +9 -0
- package/src/infra/hasura-graphql/repositories/catalog/product-errors-hasura-graphql.repository.d.ts +1 -3
- package/src/infra/hasura-graphql/repositories/catalog/product-hasura-graphql.repository.d.ts +1 -3
- package/src/infra/hasura-graphql/repositories/catalog/product-review-hasura-graphql.repository.d.ts +1 -3
- package/src/infra/hasura-graphql/repositories/catalog/product-stock-notification-hasura-graphql.repository.d.ts +8 -4
- package/src/infra/hasura-graphql/repositories/catalog/variant-hasura-graphql.repository.d.ts +1 -3
- package/src/infra/hasura-graphql/repositories/catalog/wishlist-hasura-graphql.repository.d.ts +8 -10
- package/src/infra/pagarme/adapters/helpers/index.d.ts +3 -0
- package/src/infra/pagarme/adapters/helpers/pagarme-blocked-order.helper.d.ts +14 -0
- package/src/infra/pagarme/adapters/helpers/pagarme-payment-factory.helper.d.ts +11 -0
- package/src/infra/pagarme/adapters/helpers/pagarme-payment-operations.helper.d.ts +12 -0
- package/src/infra/vertex-ai/adapters/vertex-axios.adapter.d.ts +1 -1
- package/src/utils/circular-dependencies.d.ts +0 -4
- package/src/utils/helpers/debug.helper.d.ts +8 -8
- package/src/utils/helpers/reflect.helper.d.ts +1 -1
- package/src/utils/index.d.ts +1 -0
- 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.