@lustre/sdk 2.0.0-dev.2 → 2.0.0-dev.3
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/README.md +18 -18
- package/dist/api/QueryResolver.js +2 -9
- package/dist/api/QueryResolver.js.map +1 -1
- package/dist/{schema/queries/searchList.js → api/QueryTypes.js} +1 -1
- package/dist/api/QueryTypes.js.map +1 -0
- package/dist/api/fetchEntity.js.map +1 -1
- package/dist/api/fetchQuery.js.map +1 -1
- package/dist/api/prepareEntities.js +24 -0
- package/dist/api/prepareEntities.js.map +1 -0
- package/dist/api/prepareEntity.js +24 -0
- package/dist/api/prepareEntity.js.map +1 -0
- package/dist/api/prepareQueries.js +24 -0
- package/dist/api/prepareQueries.js.map +1 -0
- package/dist/api/prepareQuery.js +24 -0
- package/dist/api/prepareQuery.js.map +1 -0
- package/dist/hooks/useEntities.js +3 -36
- package/dist/hooks/useEntities.js.map +1 -1
- package/dist/hooks/useEntity.js +3 -5
- package/dist/hooks/useEntity.js.map +1 -1
- package/dist/hooks/useQueries.js +3 -50
- package/dist/hooks/useQueries.js.map +1 -1
- package/dist/hooks/useQuery.js +3 -5
- package/dist/hooks/useQuery.js.map +1 -1
- package/dist/index.js +21 -15
- package/dist/index.js.map +1 -1
- package/dist/schema/builtins.js.map +1 -1
- package/dist/{actions.js → schema/entities/alias.js} +1 -1
- package/dist/schema/entities/alias.js.map +1 -0
- package/dist/schema/entities/{product.js → brand.js} +1 -1
- package/dist/schema/entities/brand.js.map +1 -0
- package/dist/schema/entities/category.js +3 -0
- package/dist/schema/entities/category.js.map +1 -0
- package/dist/schema/entities/{variant.js → crawl.js} +1 -1
- package/dist/schema/entities/crawl.js.map +1 -0
- package/dist/schema/entities/index.js +17 -2
- package/dist/schema/entities/index.js.map +1 -1
- package/dist/schema/entities/media.js +3 -0
- package/dist/schema/entities/media.js.map +1 -0
- package/dist/schema/entities/offer.js +3 -0
- package/dist/schema/entities/offer.js.map +1 -0
- package/dist/schema/entities/productConfiguration.js +3 -0
- package/dist/schema/entities/productConfiguration.js.map +1 -0
- package/dist/schema/entities/productFamily.js +3 -0
- package/dist/schema/entities/productFamily.js.map +1 -0
- package/dist/schema/entities/productGeneration.js +3 -0
- package/dist/schema/entities/productGeneration.js.map +1 -0
- package/dist/schema/entities/productType.js +3 -0
- package/dist/schema/entities/productType.js.map +1 -0
- package/dist/schema/entities/rating.js +3 -0
- package/dist/schema/entities/rating.js.map +1 -0
- package/dist/schema/entities/source.js +3 -0
- package/dist/schema/entities/source.js.map +1 -0
- package/dist/schema/entities/spec.js +3 -0
- package/dist/schema/entities/spec.js.map +1 -0
- package/dist/schema/entities/specType.js +3 -0
- package/dist/schema/entities/specType.js.map +1 -0
- package/dist/schema/{queries/retailPageInfo.js → entities/specTypeChoice.js} +1 -1
- package/dist/schema/entities/specTypeChoice.js.map +1 -0
- package/dist/schema/entities/storePage.js +3 -0
- package/dist/schema/entities/storePage.js.map +1 -0
- package/dist/schema/entities/storePageQueueGroup.js +3 -0
- package/dist/schema/entities/storePageQueueGroup.js.map +1 -0
- package/dist/schema/entities/user.js +3 -0
- package/dist/schema/entities/user.js.map +1 -0
- package/dist/schema/mutations/createBrand.js +3 -0
- package/dist/schema/mutations/createBrand.js.map +1 -0
- package/dist/schema/mutations/createCategory.js +3 -0
- package/dist/schema/mutations/createCategory.js.map +1 -0
- package/dist/schema/mutations/createProductConfiguration.js +3 -0
- package/dist/schema/mutations/createProductConfiguration.js.map +1 -0
- package/dist/schema/mutations/createProductFamily.js +3 -0
- package/dist/schema/mutations/createProductFamily.js.map +1 -0
- package/dist/schema/mutations/createProductGeneration.js +3 -0
- package/dist/schema/mutations/createProductGeneration.js.map +1 -0
- package/dist/schema/mutations/createProductType.js +3 -0
- package/dist/schema/mutations/createProductType.js.map +1 -0
- package/dist/schema/mutations/createUser.js +3 -0
- package/dist/schema/mutations/createUser.js.map +1 -0
- package/dist/schema/mutations/storePageQueueClaimById.js +3 -0
- package/dist/schema/mutations/storePageQueueClaimById.js.map +1 -0
- package/dist/schema/mutations/storePageQueueClaimNext.js +3 -0
- package/dist/schema/mutations/storePageQueueClaimNext.js.map +1 -0
- package/dist/schema/mutations/storePageQueueHandle.js +3 -0
- package/dist/schema/mutations/storePageQueueHandle.js.map +1 -0
- package/dist/schema/{queries/productDocumentsByRetailPageUrls.js → mutations/storePageQueueHandleStorePageIdSet.js} +1 -1
- package/dist/schema/mutations/storePageQueueHandleStorePageIdSet.js.map +1 -0
- package/dist/schema/mutations/updateAlias.js +3 -0
- package/dist/schema/mutations/updateAlias.js.map +1 -0
- package/dist/schema/mutations/updateBrand.js +3 -0
- package/dist/schema/mutations/updateBrand.js.map +1 -0
- package/dist/schema/mutations/updateCategory.js +3 -0
- package/dist/schema/mutations/updateCategory.js.map +1 -0
- package/dist/schema/mutations/updateOffer.js +3 -0
- package/dist/schema/mutations/updateOffer.js.map +1 -0
- package/dist/schema/mutations/updateProductConfiguration.js +3 -0
- package/dist/schema/mutations/updateProductConfiguration.js.map +1 -0
- package/dist/schema/mutations/updateProductConfigurationProductType.js +3 -0
- package/dist/schema/mutations/updateProductConfigurationProductType.js.map +1 -0
- package/dist/schema/mutations/updateProductFamily.js +3 -0
- package/dist/schema/mutations/updateProductFamily.js.map +1 -0
- package/dist/schema/mutations/updateProductFamilyBrand.js +3 -0
- package/dist/schema/mutations/updateProductFamilyBrand.js.map +1 -0
- package/dist/schema/mutations/updateProductGeneration.js +3 -0
- package/dist/schema/mutations/updateProductGeneration.js.map +1 -0
- package/dist/schema/mutations/updateProductGenerationProductFamily.js +3 -0
- package/dist/schema/mutations/updateProductGenerationProductFamily.js.map +1 -0
- package/dist/schema/mutations/updateProductType.js +3 -0
- package/dist/schema/mutations/updateProductType.js.map +1 -0
- package/dist/schema/mutations/updateProductTypeProductGeneration.js +3 -0
- package/dist/schema/mutations/updateProductTypeProductGeneration.js.map +1 -0
- package/dist/schema/mutations/updateSource.js +3 -0
- package/dist/schema/mutations/updateSource.js.map +1 -0
- package/dist/schema/mutations/updateStorePage.js +3 -0
- package/dist/schema/mutations/updateStorePage.js.map +1 -0
- package/dist/schema/queries/aliasIdListBySomeId.js +3 -0
- package/dist/schema/queries/aliasIdListBySomeId.js.map +1 -0
- package/dist/schema/queries/appliedCategoryIdListBySomeId.js +3 -0
- package/dist/schema/queries/appliedCategoryIdListBySomeId.js.map +1 -0
- package/dist/schema/queries/baseScore.js +3 -0
- package/dist/schema/queries/baseScore.js.map +1 -0
- package/dist/schema/queries/baseScoreRatingIdList.js +3 -0
- package/dist/schema/queries/baseScoreRatingIdList.js.map +1 -0
- package/dist/schema/queries/baseScoresByCategoryId.js +3 -0
- package/dist/schema/queries/baseScoresByCategoryId.js.map +1 -0
- package/dist/schema/queries/bestInClass.js +3 -0
- package/dist/schema/queries/bestInClass.js.map +1 -0
- package/dist/schema/queries/brandAliasResolution.js +3 -0
- package/dist/schema/queries/brandAliasResolution.js.map +1 -0
- package/dist/schema/queries/brandCategoryRankings.js +3 -0
- package/dist/schema/queries/brandCategoryRankings.js.map +1 -0
- package/dist/schema/queries/brandIdBySomeId.js +3 -0
- package/dist/schema/queries/brandIdBySomeId.js.map +1 -0
- package/dist/schema/queries/brandIdList.js +3 -0
- package/dist/schema/queries/brandIdList.js.map +1 -0
- package/dist/schema/queries/brandIdListBySearch.js +3 -0
- package/dist/schema/queries/brandIdListBySearch.js.map +1 -0
- package/dist/schema/queries/brandSocialMediaPostList.js +3 -0
- package/dist/schema/queries/brandSocialMediaPostList.js.map +1 -0
- package/dist/schema/queries/categoryAliasResolution.js +3 -0
- package/dist/schema/queries/categoryAliasResolution.js.map +1 -0
- package/dist/schema/queries/categoryDisplayMode.js +3 -0
- package/dist/schema/queries/categoryDisplayMode.js.map +1 -0
- package/dist/schema/queries/categoryIdByUrlSlug.js +3 -0
- package/dist/schema/queries/categoryIdByUrlSlug.js.map +1 -0
- package/dist/schema/queries/categoryIdList.js +3 -0
- package/dist/schema/queries/categoryIdList.js.map +1 -0
- package/dist/schema/queries/categoryIdListBySomeId.js +3 -0
- package/dist/schema/queries/categoryIdListBySomeId.js.map +1 -0
- package/dist/schema/queries/categoryIdListBySourceId.js +3 -0
- package/dist/schema/queries/categoryIdListBySourceId.js.map +1 -0
- package/dist/schema/queries/categoryModifierSearchList.js +3 -0
- package/dist/schema/queries/categoryModifierSearchList.js.map +1 -0
- package/dist/schema/queries/categoryRankings.js +3 -0
- package/dist/schema/queries/categoryRankings.js.map +1 -0
- package/dist/schema/queries/categorySearchList.js +3 -0
- package/dist/schema/queries/categorySearchList.js.map +1 -0
- package/dist/schema/queries/categoryStatusList.js +3 -0
- package/dist/schema/queries/categoryStatusList.js.map +1 -0
- package/dist/schema/queries/crawlIdList.js +3 -0
- package/dist/schema/queries/crawlIdList.js.map +1 -0
- package/dist/schema/queries/crawlIdListByUrl.js +3 -0
- package/dist/schema/queries/crawlIdListByUrl.js.map +1 -0
- package/dist/schema/queries/descriptionMarkdown.js +3 -0
- package/dist/schema/queries/descriptionMarkdown.js.map +1 -0
- package/dist/schema/queries/entityType.js +3 -0
- package/dist/schema/queries/entityType.js.map +1 -0
- package/dist/schema/queries/fallbackPriceByProductTypeId.js +3 -0
- package/dist/schema/queries/fallbackPriceByProductTypeId.js.map +1 -0
- package/dist/schema/queries/inputLayerVersion.js +3 -0
- package/dist/schema/queries/inputLayerVersion.js.map +1 -0
- package/dist/schema/queries/latestRatingIdList.js +3 -0
- package/dist/schema/queries/latestRatingIdList.js.map +1 -0
- package/dist/schema/queries/latestRatingIdListBySomeId.js +3 -0
- package/dist/schema/queries/latestRatingIdListBySomeId.js.map +1 -0
- package/dist/schema/queries/mediaIdListBySomeId.js +3 -0
- package/dist/schema/queries/mediaIdListBySomeId.js.map +1 -0
- package/dist/schema/queries/mlCategoryDisplayMode.js +3 -0
- package/dist/schema/queries/mlCategoryDisplayMode.js.map +1 -0
- package/dist/schema/queries/noteMarkdown.js +3 -0
- package/dist/schema/queries/noteMarkdown.js.map +1 -0
- package/dist/schema/queries/offerIdListByStorePageId.js +3 -0
- package/dist/schema/queries/offerIdListByStorePageId.js.map +1 -0
- package/dist/schema/queries/possibleAliasIdListBySomeId.js +3 -0
- package/dist/schema/queries/possibleAliasIdListBySomeId.js.map +1 -0
- package/dist/schema/queries/possibleStorePageIdListBySomeId.js +3 -0
- package/dist/schema/queries/possibleStorePageIdListBySomeId.js.map +1 -0
- package/dist/schema/queries/preferredCategoryIdListByProductId.js +3 -0
- package/dist/schema/queries/preferredCategoryIdListByProductId.js.map +1 -0
- package/dist/schema/queries/preferredLatestRatingIdListBySomeId.js +3 -0
- package/dist/schema/queries/preferredLatestRatingIdListBySomeId.js.map +1 -0
- package/dist/schema/queries/preferredStorePageList.js +3 -0
- package/dist/schema/queries/preferredStorePageList.js.map +1 -0
- package/dist/schema/queries/priceHistoryLookup.js +3 -0
- package/dist/schema/queries/priceHistoryLookup.js.map +1 -0
- package/dist/schema/queries/pricePointCompetitors.js +3 -0
- package/dist/schema/queries/pricePointCompetitors.js.map +1 -0
- package/dist/schema/queries/priceRangeByCategoryId.js +3 -0
- package/dist/schema/queries/priceRangeByCategoryId.js.map +1 -0
- package/dist/schema/queries/productConfigurationIdListBySomeId.js +3 -0
- package/dist/schema/queries/productConfigurationIdListBySomeId.js.map +1 -0
- package/dist/schema/queries/productDealList.js +3 -0
- package/dist/schema/queries/productDealList.js.map +1 -0
- package/dist/schema/queries/productDocumentByStoreUrl.js +3 -0
- package/dist/schema/queries/productDocumentByStoreUrl.js.map +1 -0
- package/dist/schema/queries/productFamilyIdBySomeId.js +3 -0
- package/dist/schema/queries/productFamilyIdBySomeId.js.map +1 -0
- package/dist/schema/queries/productFamilyIdListBySomeId.js +3 -0
- package/dist/schema/queries/productFamilyIdListBySomeId.js.map +1 -0
- package/dist/schema/queries/productGenerationIdBySomeId.js +3 -0
- package/dist/schema/queries/productGenerationIdBySomeId.js.map +1 -0
- package/dist/schema/queries/productGenerationIdListBySomeId.js +3 -0
- package/dist/schema/queries/productGenerationIdListBySomeId.js.map +1 -0
- package/dist/schema/queries/productListSort.js +3 -0
- package/dist/schema/queries/productListSort.js.map +1 -0
- package/dist/schema/queries/productPricePointList.js +3 -0
- package/dist/schema/queries/productPricePointList.js.map +1 -0
- package/dist/schema/queries/productSearchList.js +3 -0
- package/dist/schema/queries/productSearchList.js.map +1 -0
- package/dist/schema/queries/productTypeIdBySomeId.js +3 -0
- package/dist/schema/queries/productTypeIdBySomeId.js.map +1 -0
- package/dist/schema/queries/productTypeIdByStoreUrl.js +3 -0
- package/dist/schema/queries/productTypeIdByStoreUrl.js.map +1 -0
- package/dist/schema/queries/productTypeIdListByCategoryId.js +3 -0
- package/dist/schema/queries/productTypeIdListByCategoryId.js.map +1 -0
- package/dist/schema/queries/productTypeIdListByModifiers.js +3 -0
- package/dist/schema/queries/productTypeIdListByModifiers.js.map +1 -0
- package/dist/schema/queries/productTypeIdListBySomeId.js +3 -0
- package/dist/schema/queries/productTypeIdListBySomeId.js.map +1 -0
- package/dist/schema/queries/saleMetrics.js +3 -0
- package/dist/schema/queries/saleMetrics.js.map +1 -0
- package/dist/schema/queries/sectionDataByCrawlId.js +3 -0
- package/dist/schema/queries/sectionDataByCrawlId.js.map +1 -0
- package/dist/schema/queries/sourceIdList.js +3 -0
- package/dist/schema/queries/sourceIdList.js.map +1 -0
- package/dist/schema/queries/specIdListBySomeId.js +3 -0
- package/dist/schema/queries/specIdListBySomeId.js.map +1 -0
- package/dist/schema/queries/specTypeIdList.js +3 -0
- package/dist/schema/queries/specTypeIdList.js.map +1 -0
- package/dist/schema/queries/specTypeValidValues.js +3 -0
- package/dist/schema/queries/specTypeValidValues.js.map +1 -0
- package/dist/schema/queries/specValueRangeListByCategoryId.js +3 -0
- package/dist/schema/queries/specValueRangeListByCategoryId.js.map +1 -0
- package/dist/schema/queries/stablePriceByProductId.js +3 -0
- package/dist/schema/queries/stablePriceByProductId.js.map +1 -0
- package/dist/schema/queries/stablePriceByProductIdAndStoreName.js +3 -0
- package/dist/schema/queries/stablePriceByProductIdAndStoreName.js.map +1 -0
- package/dist/schema/queries/stablePriceByStorePageId.js +3 -0
- package/dist/schema/queries/stablePriceByStorePageId.js.map +1 -0
- package/dist/schema/queries/storePageFetchData.js +3 -0
- package/dist/schema/queries/storePageFetchData.js.map +1 -0
- package/dist/schema/queries/storePageIdByUrl.js +3 -0
- package/dist/schema/queries/storePageIdByUrl.js.map +1 -0
- package/dist/schema/queries/storePageIdListBySomeId.js +3 -0
- package/dist/schema/queries/storePageIdListBySomeId.js.map +1 -0
- package/dist/schema/queries/storePageInfo.js +3 -0
- package/dist/schema/queries/storePageInfo.js.map +1 -0
- package/dist/schema/queries/storePageInfoBySku.js +3 -0
- package/dist/schema/queries/storePageInfoBySku.js.map +1 -0
- package/dist/schema/queries/storePageScrapeData.js +3 -0
- package/dist/schema/queries/storePageScrapeData.js.map +1 -0
- package/dist/schema/queries/subCategoryIdListByCategoryId.js +3 -0
- package/dist/schema/queries/subCategoryIdListByCategoryId.js.map +1 -0
- package/dist/schema/queries/subsetModifierDataByModifiers.js +3 -0
- package/dist/schema/queries/subsetModifierDataByModifiers.js.map +1 -0
- package/dist/schema/queries/unstableMediaIdListByCategoryId.js +3 -0
- package/dist/schema/queries/unstableMediaIdListByCategoryId.js.map +1 -0
- package/dist/schema/queries/unstableSourceTrust.js +3 -0
- package/dist/schema/queries/unstableSourceTrust.js.map +1 -0
- package/dist/schema/queries/userIdList.js +3 -0
- package/dist/schema/queries/userIdList.js.map +1 -0
- package/dist/schema/queries/userPermissionsByUserId.js +3 -0
- package/dist/schema/queries/userPermissionsByUserId.js.map +1 -0
- package/dist/schema/queries/userRestictedData.js +3 -0
- package/dist/schema/queries/userRestictedData.js.map +1 -0
- package/dist/schema/queries/userReviewAnalysis.js +3 -0
- package/dist/schema/queries/userReviewAnalysis.js.map +1 -0
- package/dist/schema/queries/whoAmI.js +3 -0
- package/dist/schema/queries/whoAmI.js.map +1 -0
- package/package.json +2 -20
- package/types/api/QueryResolver.d.ts +0 -3
- package/types/api/QueryResolver.d.ts.map +1 -1
- package/types/api/QueryTypes.d.ts +16 -0
- package/types/api/QueryTypes.d.ts.map +1 -0
- package/types/api/fetchEntity.d.ts +3 -3
- package/types/api/fetchEntity.d.ts.map +1 -1
- package/types/api/fetchQuery.d.ts +4 -3
- package/types/api/fetchQuery.d.ts.map +1 -1
- package/types/api/prepareEntities.d.ts +8 -0
- package/types/api/prepareEntities.d.ts.map +1 -0
- package/types/api/prepareEntity.d.ts +8 -0
- package/types/api/prepareEntity.d.ts.map +1 -0
- package/types/api/prepareQueries.d.ts +8 -0
- package/types/api/prepareQueries.d.ts.map +1 -0
- package/types/api/prepareQuery.d.ts +8 -0
- package/types/api/prepareQuery.d.ts.map +1 -0
- package/types/hooks/useEntities.d.ts +5 -7
- package/types/hooks/useEntities.d.ts.map +1 -1
- package/types/hooks/useEntity.d.ts +5 -7
- package/types/hooks/useEntity.d.ts.map +1 -1
- package/types/hooks/useQueries.d.ts +5 -7
- package/types/hooks/useQueries.d.ts.map +1 -1
- package/types/hooks/useQuery.d.ts +5 -7
- package/types/hooks/useQuery.d.ts.map +1 -1
- package/types/index.d.ts +10 -5
- package/types/index.d.ts.map +1 -1
- package/types/schema/builtins.d.ts +69 -90
- package/types/schema/builtins.d.ts.map +1 -1
- package/types/schema/entities/alias.d.ts +6 -0
- package/types/schema/entities/alias.d.ts.map +1 -0
- package/types/schema/entities/brand.d.ts +5 -0
- package/types/schema/entities/brand.d.ts.map +1 -0
- package/types/schema/entities/category.d.ts +7 -0
- package/types/schema/entities/category.d.ts.map +1 -0
- package/types/schema/entities/crawl.d.ts +12 -0
- package/types/schema/entities/crawl.d.ts.map +1 -0
- package/types/schema/entities/index.d.ts +17 -2
- package/types/schema/entities/index.d.ts.map +1 -1
- package/types/schema/entities/media.d.ts +6 -0
- package/types/schema/entities/media.d.ts.map +1 -0
- package/types/schema/entities/offer.d.ts +11 -0
- package/types/schema/entities/offer.d.ts.map +1 -0
- package/types/schema/entities/productConfiguration.d.ts +5 -0
- package/types/schema/entities/productConfiguration.d.ts.map +1 -0
- package/types/schema/entities/productFamily.d.ts +5 -0
- package/types/schema/entities/productFamily.d.ts.map +1 -0
- package/types/schema/entities/productGeneration.d.ts +5 -0
- package/types/schema/entities/productGeneration.d.ts.map +1 -0
- package/types/schema/entities/productType.d.ts +5 -0
- package/types/schema/entities/productType.d.ts.map +1 -0
- package/types/schema/entities/rating.d.ts +53 -0
- package/types/schema/entities/rating.d.ts.map +1 -0
- package/types/schema/entities/source.d.ts +8 -0
- package/types/schema/entities/source.d.ts.map +1 -0
- package/types/schema/entities/spec.d.ts +22 -0
- package/types/schema/entities/spec.d.ts.map +1 -0
- package/types/schema/entities/specType.d.ts +6 -0
- package/types/schema/entities/specType.d.ts.map +1 -0
- package/types/schema/entities/specTypeChoice.d.ts +7 -0
- package/types/schema/entities/specTypeChoice.d.ts.map +1 -0
- package/types/schema/entities/storePage.d.ts +8 -0
- package/types/schema/entities/storePage.d.ts.map +1 -0
- package/types/schema/entities/storePageQueueGroup.d.ts +6 -0
- package/types/schema/entities/storePageQueueGroup.d.ts.map +1 -0
- package/types/schema/entities/user.d.ts +5 -0
- package/types/schema/entities/user.d.ts.map +1 -0
- package/types/schema/index.d.ts +206 -16
- package/types/schema/index.d.ts.map +1 -1
- package/types/schema/mutations/createBrand.d.ts +9 -0
- package/types/schema/mutations/createBrand.d.ts.map +1 -0
- package/types/schema/mutations/createCategory.d.ts +9 -0
- package/types/schema/mutations/createCategory.d.ts.map +1 -0
- package/types/schema/mutations/createProductConfiguration.d.ts +10 -0
- package/types/schema/mutations/createProductConfiguration.d.ts.map +1 -0
- package/types/schema/mutations/createProductFamily.d.ts +10 -0
- package/types/schema/mutations/createProductFamily.d.ts.map +1 -0
- package/types/schema/mutations/createProductGeneration.d.ts +10 -0
- package/types/schema/mutations/createProductGeneration.d.ts.map +1 -0
- package/types/schema/mutations/createProductType.d.ts +10 -0
- package/types/schema/mutations/createProductType.d.ts.map +1 -0
- package/types/schema/mutations/createUser.d.ts +10 -0
- package/types/schema/mutations/createUser.d.ts.map +1 -0
- package/types/schema/mutations/storePageQueueClaimById.d.ts +17 -0
- package/types/schema/mutations/storePageQueueClaimById.d.ts.map +1 -0
- package/types/schema/mutations/storePageQueueClaimNext.d.ts +15 -0
- package/types/schema/mutations/storePageQueueClaimNext.d.ts.map +1 -0
- package/types/schema/mutations/storePageQueueHandle.d.ts +15 -0
- package/types/schema/mutations/storePageQueueHandle.d.ts.map +1 -0
- package/types/schema/mutations/storePageQueueHandleStorePageIdSet.d.ts +15 -0
- package/types/schema/mutations/storePageQueueHandleStorePageIdSet.d.ts.map +1 -0
- package/types/schema/mutations/updateAlias.d.ts +8 -0
- package/types/schema/mutations/updateAlias.d.ts.map +1 -0
- package/types/schema/mutations/updateBrand.d.ts +8 -0
- package/types/schema/mutations/updateBrand.d.ts.map +1 -0
- package/types/schema/mutations/updateCategory.d.ts +10 -0
- package/types/schema/mutations/updateCategory.d.ts.map +1 -0
- package/types/schema/mutations/updateOffer.d.ts +8 -0
- package/types/schema/mutations/updateOffer.d.ts.map +1 -0
- package/types/schema/mutations/updateProductConfiguration.d.ts +8 -0
- package/types/schema/mutations/updateProductConfiguration.d.ts.map +1 -0
- package/types/schema/mutations/updateProductConfigurationProductType.d.ts +8 -0
- package/types/schema/mutations/updateProductConfigurationProductType.d.ts.map +1 -0
- package/types/schema/mutations/updateProductFamily.d.ts +8 -0
- package/types/schema/mutations/updateProductFamily.d.ts.map +1 -0
- package/types/schema/mutations/updateProductFamilyBrand.d.ts +8 -0
- package/types/schema/mutations/updateProductFamilyBrand.d.ts.map +1 -0
- package/types/schema/mutations/updateProductGeneration.d.ts +8 -0
- package/types/schema/mutations/updateProductGeneration.d.ts.map +1 -0
- package/types/schema/mutations/updateProductGenerationProductFamily.d.ts +8 -0
- package/types/schema/mutations/updateProductGenerationProductFamily.d.ts.map +1 -0
- package/types/schema/mutations/updateProductType.d.ts +8 -0
- package/types/schema/mutations/updateProductType.d.ts.map +1 -0
- package/types/schema/mutations/updateProductTypeProductGeneration.d.ts +8 -0
- package/types/schema/mutations/updateProductTypeProductGeneration.d.ts.map +1 -0
- package/types/schema/mutations/updateSource.d.ts +10 -0
- package/types/schema/mutations/updateSource.d.ts.map +1 -0
- package/types/schema/mutations/updateStorePage.d.ts +8 -0
- package/types/schema/mutations/updateStorePage.d.ts.map +1 -0
- package/types/schema/queries/affiliateUrl.d.ts +2 -1
- package/types/schema/queries/affiliateUrl.d.ts.map +1 -1
- package/types/schema/queries/aliasIdListBySomeId.d.ts +7 -0
- package/types/schema/queries/aliasIdListBySomeId.d.ts.map +1 -0
- package/types/schema/queries/appliedCategoryIdListBySomeId.d.ts +7 -0
- package/types/schema/queries/appliedCategoryIdListBySomeId.d.ts.map +1 -0
- package/types/schema/queries/baseScore.d.ts +9 -0
- package/types/schema/queries/baseScore.d.ts.map +1 -0
- package/types/schema/queries/baseScoreRatingIdList.d.ts +8 -0
- package/types/schema/queries/baseScoreRatingIdList.d.ts.map +1 -0
- package/types/schema/queries/baseScoresByCategoryId.d.ts +12 -0
- package/types/schema/queries/baseScoresByCategoryId.d.ts.map +1 -0
- package/types/schema/queries/bestInClass.d.ts +20 -0
- package/types/schema/queries/bestInClass.d.ts.map +1 -0
- package/types/schema/queries/brandAliasResolution.d.ts +11 -0
- package/types/schema/queries/brandAliasResolution.d.ts.map +1 -0
- package/types/schema/queries/brandCategoryRankings.d.ts +30 -0
- package/types/schema/queries/brandCategoryRankings.d.ts.map +1 -0
- package/types/schema/queries/brandIdBySomeId.d.ts +6 -0
- package/types/schema/queries/brandIdBySomeId.d.ts.map +1 -0
- package/types/schema/queries/brandIdList.d.ts +9 -0
- package/types/schema/queries/brandIdList.d.ts.map +1 -0
- package/types/schema/queries/brandIdListBySearch.d.ts +7 -0
- package/types/schema/queries/brandIdListBySearch.d.ts.map +1 -0
- package/types/schema/queries/brandSocialMediaPostList.d.ts +22 -0
- package/types/schema/queries/brandSocialMediaPostList.d.ts.map +1 -0
- package/types/schema/queries/categoryAliasResolution.d.ts +12 -0
- package/types/schema/queries/categoryAliasResolution.d.ts.map +1 -0
- package/types/schema/queries/categoryDisplayMode.d.ts +11 -0
- package/types/schema/queries/categoryDisplayMode.d.ts.map +1 -0
- package/types/schema/queries/categoryIdByUrlSlug.d.ts +6 -0
- package/types/schema/queries/categoryIdByUrlSlug.d.ts.map +1 -0
- package/types/schema/queries/categoryIdList.d.ts +9 -0
- package/types/schema/queries/categoryIdList.d.ts.map +1 -0
- package/types/schema/queries/categoryIdListBySomeId.d.ts +11 -0
- package/types/schema/queries/categoryIdListBySomeId.d.ts.map +1 -0
- package/types/schema/queries/categoryIdListBySourceId.d.ts +7 -0
- package/types/schema/queries/categoryIdListBySourceId.d.ts.map +1 -0
- package/types/schema/queries/categoryModifierSearchList.d.ts +22 -0
- package/types/schema/queries/categoryModifierSearchList.d.ts.map +1 -0
- package/types/schema/queries/categoryRankings.d.ts +14 -0
- package/types/schema/queries/categoryRankings.d.ts.map +1 -0
- package/types/schema/queries/categorySearchList.d.ts +17 -0
- package/types/schema/queries/categorySearchList.d.ts.map +1 -0
- package/types/schema/queries/categoryStatusList.d.ts +10 -0
- package/types/schema/queries/categoryStatusList.d.ts.map +1 -0
- package/types/schema/queries/crawlIdList.d.ts +12 -0
- package/types/schema/queries/crawlIdList.d.ts.map +1 -0
- package/types/schema/queries/crawlIdListByUrl.d.ts +7 -0
- package/types/schema/queries/crawlIdListByUrl.d.ts.map +1 -0
- package/types/schema/queries/descriptionMarkdown.d.ts +6 -0
- package/types/schema/queries/descriptionMarkdown.d.ts.map +1 -0
- package/types/schema/queries/entityType.d.ts +55 -0
- package/types/schema/queries/entityType.d.ts.map +1 -0
- package/types/schema/queries/fallbackPriceByProductTypeId.d.ts +7 -0
- package/types/schema/queries/fallbackPriceByProductTypeId.d.ts.map +1 -0
- package/types/schema/queries/inputLayerVersion.d.ts +6 -0
- package/types/schema/queries/inputLayerVersion.d.ts.map +1 -0
- package/types/schema/queries/latestRatingIdList.d.ts +7 -0
- package/types/schema/queries/latestRatingIdList.d.ts.map +1 -0
- package/types/schema/queries/latestRatingIdListBySomeId.d.ts +7 -0
- package/types/schema/queries/latestRatingIdListBySomeId.d.ts.map +1 -0
- package/types/schema/queries/mediaIdListBySomeId.d.ts +7 -0
- package/types/schema/queries/mediaIdListBySomeId.d.ts.map +1 -0
- package/types/schema/queries/mlCategoryDisplayMode.d.ts +9 -0
- package/types/schema/queries/mlCategoryDisplayMode.d.ts.map +1 -0
- package/types/schema/queries/noteMarkdown.d.ts +6 -0
- package/types/schema/queries/noteMarkdown.d.ts.map +1 -0
- package/types/schema/queries/offerIdListByStorePageId.d.ts +13 -0
- package/types/schema/queries/offerIdListByStorePageId.d.ts.map +1 -0
- package/types/schema/queries/possibleAliasIdListBySomeId.d.ts +7 -0
- package/types/schema/queries/possibleAliasIdListBySomeId.d.ts.map +1 -0
- package/types/schema/queries/possibleStorePageIdListBySomeId.d.ts +7 -0
- package/types/schema/queries/possibleStorePageIdListBySomeId.d.ts.map +1 -0
- package/types/schema/queries/preferredCategoryIdListByProductId.d.ts +7 -0
- package/types/schema/queries/preferredCategoryIdListByProductId.d.ts.map +1 -0
- package/types/schema/queries/preferredLatestRatingIdListBySomeId.d.ts +7 -0
- package/types/schema/queries/preferredLatestRatingIdListBySomeId.d.ts.map +1 -0
- package/types/schema/queries/preferredStorePageList.d.ts +12 -0
- package/types/schema/queries/preferredStorePageList.d.ts.map +1 -0
- package/types/schema/queries/priceHistoryLookup.d.ts +17 -0
- package/types/schema/queries/priceHistoryLookup.d.ts.map +1 -0
- package/types/schema/queries/pricePointCompetitors.d.ts +17 -0
- package/types/schema/queries/pricePointCompetitors.d.ts.map +1 -0
- package/types/schema/queries/priceRangeByCategoryId.d.ts +11 -0
- package/types/schema/queries/priceRangeByCategoryId.d.ts.map +1 -0
- package/types/schema/queries/productConfigurationIdListBySomeId.d.ts +7 -0
- package/types/schema/queries/productConfigurationIdListBySomeId.d.ts.map +1 -0
- package/types/schema/queries/productDealList.d.ts +14 -0
- package/types/schema/queries/productDealList.d.ts.map +1 -0
- package/types/schema/queries/productDocumentByStoreUrl.d.ts +8 -0
- package/types/schema/queries/productDocumentByStoreUrl.d.ts.map +1 -0
- package/types/schema/queries/productDocumentsByProductIds.d.ts +2 -2
- package/types/schema/queries/productDocumentsByProductIds.d.ts.map +1 -1
- package/types/schema/queries/productFamilyIdBySomeId.d.ts +6 -0
- package/types/schema/queries/productFamilyIdBySomeId.d.ts.map +1 -0
- package/types/schema/queries/productFamilyIdListBySomeId.d.ts +7 -0
- package/types/schema/queries/productFamilyIdListBySomeId.d.ts.map +1 -0
- package/types/schema/queries/productGenerationIdBySomeId.d.ts +6 -0
- package/types/schema/queries/productGenerationIdBySomeId.d.ts.map +1 -0
- package/types/schema/queries/productGenerationIdListBySomeId.d.ts +7 -0
- package/types/schema/queries/productGenerationIdListBySomeId.d.ts.map +1 -0
- package/types/schema/queries/productListSort.d.ts +10 -0
- package/types/schema/queries/productListSort.d.ts.map +1 -0
- package/types/schema/queries/productPricePointList.d.ts +14 -0
- package/types/schema/queries/productPricePointList.d.ts.map +1 -0
- package/types/schema/queries/productSearchList.d.ts +40 -0
- package/types/schema/queries/productSearchList.d.ts.map +1 -0
- package/types/schema/queries/productTypeIdBySomeId.d.ts +6 -0
- package/types/schema/queries/productTypeIdBySomeId.d.ts.map +1 -0
- package/types/schema/queries/productTypeIdByStoreUrl.d.ts +7 -0
- package/types/schema/queries/productTypeIdByStoreUrl.d.ts.map +1 -0
- package/types/schema/queries/productTypeIdListByCategoryId.d.ts +11 -0
- package/types/schema/queries/productTypeIdListByCategoryId.d.ts.map +1 -0
- package/types/schema/queries/productTypeIdListByModifiers.d.ts +8 -0
- package/types/schema/queries/productTypeIdListByModifiers.d.ts.map +1 -0
- package/types/schema/queries/productTypeIdListBySomeId.d.ts +7 -0
- package/types/schema/queries/productTypeIdListBySomeId.d.ts.map +1 -0
- package/types/schema/queries/saleMetrics.d.ts +9 -0
- package/types/schema/queries/saleMetrics.d.ts.map +1 -0
- package/types/schema/queries/sectionDataByCrawlId.d.ts +20 -0
- package/types/schema/queries/sectionDataByCrawlId.d.ts.map +1 -0
- package/types/schema/queries/sourceIdList.d.ts +5 -0
- package/types/schema/queries/sourceIdList.d.ts.map +1 -0
- package/types/schema/queries/specIdListBySomeId.d.ts +7 -0
- package/types/schema/queries/specIdListBySomeId.d.ts.map +1 -0
- package/types/schema/queries/specTypeIdList.d.ts +13 -0
- package/types/schema/queries/specTypeIdList.d.ts.map +1 -0
- package/types/schema/queries/specTypeValidValues.d.ts +16 -0
- package/types/schema/queries/specTypeValidValues.d.ts.map +1 -0
- package/types/schema/queries/specValueRangeListByCategoryId.d.ts +37 -0
- package/types/schema/queries/specValueRangeListByCategoryId.d.ts.map +1 -0
- package/types/schema/queries/stablePriceByProductId.d.ts +7 -0
- package/types/schema/queries/stablePriceByProductId.d.ts.map +1 -0
- package/types/schema/queries/stablePriceByProductIdAndStoreName.d.ts +8 -0
- package/types/schema/queries/stablePriceByProductIdAndStoreName.d.ts.map +1 -0
- package/types/schema/queries/stablePriceByStorePageId.d.ts +7 -0
- package/types/schema/queries/stablePriceByStorePageId.d.ts.map +1 -0
- package/types/schema/queries/storePageFetchData.d.ts +13 -0
- package/types/schema/queries/storePageFetchData.d.ts.map +1 -0
- package/types/schema/queries/storePageIdByUrl.d.ts +7 -0
- package/types/schema/queries/storePageIdByUrl.d.ts.map +1 -0
- package/types/schema/queries/storePageIdListBySomeId.d.ts +7 -0
- package/types/schema/queries/storePageIdListBySomeId.d.ts.map +1 -0
- package/types/schema/queries/storePageInfo.d.ts +12 -0
- package/types/schema/queries/storePageInfo.d.ts.map +1 -0
- package/types/schema/queries/storePageInfoBySku.d.ts +21 -0
- package/types/schema/queries/storePageInfoBySku.d.ts.map +1 -0
- package/types/schema/queries/storePageScrapeData.d.ts +10 -0
- package/types/schema/queries/storePageScrapeData.d.ts.map +1 -0
- package/types/schema/queries/subCategoryIdListByCategoryId.d.ts +7 -0
- package/types/schema/queries/subCategoryIdListByCategoryId.d.ts.map +1 -0
- package/types/schema/queries/subsetModifierDataByModifiers.d.ts +13 -0
- package/types/schema/queries/subsetModifierDataByModifiers.d.ts.map +1 -0
- package/types/schema/queries/unstableMediaIdListByCategoryId.d.ts +7 -0
- package/types/schema/queries/unstableMediaIdListByCategoryId.d.ts.map +1 -0
- package/types/schema/queries/unstableSourceTrust.d.ts +10 -0
- package/types/schema/queries/unstableSourceTrust.d.ts.map +1 -0
- package/types/schema/queries/userIdList.d.ts +5 -0
- package/types/schema/queries/userIdList.d.ts.map +1 -0
- package/types/schema/queries/userPermissionsByUserId.d.ts +8 -0
- package/types/schema/queries/userPermissionsByUserId.d.ts.map +1 -0
- package/types/schema/queries/userRestictedData.d.ts +11 -0
- package/types/schema/queries/userRestictedData.d.ts.map +1 -0
- package/types/schema/queries/userReviewAnalysis.d.ts +38 -0
- package/types/schema/queries/userReviewAnalysis.d.ts.map +1 -0
- package/types/schema/queries/whoAmI.d.ts +6 -0
- package/types/schema/queries/whoAmI.d.ts.map +1 -0
- package/types/schema/queries.d.ts +77 -5
- package/types/schema/queries.d.ts.map +1 -1
- package/types/schema/responses.d.ts +77 -5
- package/types/schema/responses.d.ts.map +1 -1
- package/dist/Context.js +0 -6
- package/dist/Context.js.map +0 -1
- package/dist/Provider.js +0 -14
- package/dist/Provider.js.map +0 -1
- package/dist/actions.js.map +0 -1
- package/dist/hooks/index.js +0 -18
- package/dist/hooks/index.js.map +0 -1
- package/dist/hooks/useApiDispatch.js +0 -10
- package/dist/hooks/useApiDispatch.js.map +0 -1
- package/dist/hooks/useApiSelector.js +0 -10
- package/dist/hooks/useApiSelector.js.map +0 -1
- package/dist/hooks/useApiStore.js +0 -10
- package/dist/hooks/useApiStore.js.map +0 -1
- package/dist/schema/entities/product.js.map +0 -1
- package/dist/schema/entities/variant.js.map +0 -1
- package/dist/schema/queries/productDocumentsByRetailPageUrls.js.map +0 -1
- package/dist/schema/queries/retailPageInfo.js.map +0 -1
- package/dist/schema/queries/retailPagePriceHistory.js +0 -3
- package/dist/schema/queries/retailPagePriceHistory.js.map +0 -1
- package/dist/schema/queries/retailPagePricing.js +0 -3
- package/dist/schema/queries/retailPagePricing.js.map +0 -1
- package/dist/schema/queries/searchList.js.map +0 -1
- package/dist/store/entities/index.js +0 -12
- package/dist/store/entities/index.js.map +0 -1
- package/dist/store/entities/makeEntityReducer.js +0 -24
- package/dist/store/entities/makeEntityReducer.js.map +0 -1
- package/dist/store/errors/index.js +0 -24
- package/dist/store/errors/index.js.map +0 -1
- package/dist/store/errors/makeErrorReducer.js +0 -24
- package/dist/store/errors/makeErrorReducer.js.map +0 -1
- package/dist/store/index.js +0 -17
- package/dist/store/index.js.map +0 -1
- package/dist/store/responses/index.js +0 -20
- package/dist/store/responses/index.js.map +0 -1
- package/dist/store/responses/makeResponseReducer.js +0 -24
- package/dist/store/responses/makeResponseReducer.js.map +0 -1
- package/types/Context.d.ts +0 -5
- package/types/Context.d.ts.map +0 -1
- package/types/Provider.d.ts +0 -4
- package/types/Provider.d.ts.map +0 -1
- package/types/actions.d.ts +0 -8
- package/types/actions.d.ts.map +0 -1
- package/types/hooks/index.d.ts +0 -8
- package/types/hooks/index.d.ts.map +0 -1
- package/types/hooks/useApiDispatch.d.ts +0 -4
- package/types/hooks/useApiDispatch.d.ts.map +0 -1
- package/types/hooks/useApiSelector.d.ts +0 -5
- package/types/hooks/useApiSelector.d.ts.map +0 -1
- package/types/hooks/useApiStore.d.ts +0 -3
- package/types/hooks/useApiStore.d.ts.map +0 -1
- package/types/schema/entities/product.d.ts +0 -5
- package/types/schema/entities/product.d.ts.map +0 -1
- package/types/schema/entities/variant.d.ts +0 -5
- package/types/schema/entities/variant.d.ts.map +0 -1
- package/types/schema/queries/productDocumentsByRetailPageUrls.d.ts +0 -6
- package/types/schema/queries/productDocumentsByRetailPageUrls.d.ts.map +0 -1
- package/types/schema/queries/retailPageInfo.d.ts +0 -18
- package/types/schema/queries/retailPageInfo.d.ts.map +0 -1
- package/types/schema/queries/retailPagePriceHistory.d.ts +0 -15
- package/types/schema/queries/retailPagePriceHistory.d.ts.map +0 -1
- package/types/schema/queries/retailPagePricing.d.ts +0 -10
- package/types/schema/queries/retailPagePricing.d.ts.map +0 -1
- package/types/schema/queries/searchList.d.ts +0 -54
- package/types/schema/queries/searchList.d.ts.map +0 -1
- package/types/store/entities/index.d.ts +0 -10
- package/types/store/entities/index.d.ts.map +0 -1
- package/types/store/entities/makeEntityReducer.d.ts +0 -6
- package/types/store/entities/makeEntityReducer.d.ts.map +0 -1
- package/types/store/errors/index.d.ts +0 -5
- package/types/store/errors/index.d.ts.map +0 -1
- package/types/store/errors/makeErrorReducer.d.ts +0 -6
- package/types/store/errors/makeErrorReducer.d.ts.map +0 -1
- package/types/store/index.d.ts +0 -32
- package/types/store/index.d.ts.map +0 -1
- package/types/store/responses/index.d.ts +0 -18
- package/types/store/responses/index.d.ts.map +0 -1
- package/types/store/responses/makeResponseReducer.d.ts +0 -6
- package/types/store/responses/makeResponseReducer.d.ts.map +0 -1
|
@@ -1,11 +1,83 @@
|
|
|
1
1
|
export type { AffiliateUrlQuery } from "./queries/affiliateUrl";
|
|
2
2
|
export type { AnalyticsTrackQuery } from "./queries/analyticsTrack";
|
|
3
|
-
export type {
|
|
3
|
+
export type { AppliedCategoryIdListBySomeIdQuery } from "./queries/appliedCategoryIdListBySomeId";
|
|
4
|
+
export type { BaseScoreQuery } from "./queries/baseScore";
|
|
5
|
+
export type { BaseScoreRatingIdListQuery } from "./queries/baseScoreRatingIdList";
|
|
6
|
+
export type { BaseScoresByCategoryIdQuery } from "./queries/baseScoresByCategoryId";
|
|
7
|
+
export type { BestInClassQuery } from "./queries/bestInClass";
|
|
8
|
+
export type { BrandIdBySomeIdQuery } from "./queries/brandIdBySomeId";
|
|
9
|
+
export type { BrandIdListQuery } from "./queries/brandIdList";
|
|
10
|
+
export type { BrandAliasResolutionQuery } from "./queries/brandAliasResolution";
|
|
11
|
+
export type { BrandCategoryRankingsQuery } from "./queries/brandCategoryRankings";
|
|
12
|
+
export type { BrandSocialMediaPostListQuery } from "./queries/brandSocialMediaPostList";
|
|
13
|
+
export type { CategoryAliasResolutionQuery } from "./queries/categoryAliasResolution";
|
|
14
|
+
export type { CategoryDisplayModeQuery } from "./queries/categoryDisplayMode";
|
|
15
|
+
export type { CategoryIdByUrlSlugQuery } from "./queries/categoryIdByUrlSlug";
|
|
16
|
+
export type { CategoryIdListBySomeIdQuery } from "./queries/categoryIdListBySomeId";
|
|
17
|
+
export type { CategoryIdListBySourceIdQuery } from "./queries/categoryIdListBySourceId";
|
|
18
|
+
export type { CategoryIdListQuery } from "./queries/categoryIdList";
|
|
19
|
+
export type { CategoryRankingsQuery } from "./queries/categoryRankings";
|
|
20
|
+
export type { CategorySearchListQuery } from "./queries/categorySearchList";
|
|
21
|
+
export type { CategoryStatusListQuery } from "./queries/categoryStatusList";
|
|
22
|
+
export type { CrawlIdListByUrlQuery } from "./queries/crawlIdListByUrl";
|
|
23
|
+
export type { CrawlIdListQuery } from "./queries/crawlIdList";
|
|
24
|
+
export type { DescriptionMarkdownQuery } from "./queries/descriptionMarkdown";
|
|
25
|
+
export type { EntityTypeQuery } from "./queries/entityType";
|
|
26
|
+
export type { FallbackPriceByProductTypeIdQuery } from "./queries/fallbackPriceByProductTypeId";
|
|
27
|
+
export type { InputLayerVersionQuery } from "./queries/inputLayerVersion";
|
|
28
|
+
export type { LatestRatingIdListQuery } from "./queries/latestRatingIdList";
|
|
29
|
+
export type { LatestRatingIdListBySomeIdQuery } from "./queries/latestRatingIdListBySomeId";
|
|
30
|
+
export type { MediaIdListBySomeIdQuery } from "./queries/mediaIdListBySomeId";
|
|
31
|
+
export type { CategoryModifierSearchListQuery } from "./queries/categoryModifierSearchList";
|
|
32
|
+
export type { NoteMarkdownQuery } from "./queries/noteMarkdown";
|
|
33
|
+
export type { OfferIdListByStorePageIdQuery } from "./queries/offerIdListByStorePageId";
|
|
34
|
+
export type { PossibleAliasIdListBySomeIdQuery } from "./queries/possibleAliasIdListBySomeId";
|
|
35
|
+
export type { PossibleStorePageIdListBySomeIdQuery } from "./queries/possibleStorePageIdListBySomeId";
|
|
36
|
+
export type { PreferredCategoryIdListByProductIdQuery } from "./queries/preferredCategoryIdListByProductId";
|
|
37
|
+
export type { PreferredLatestRatingIdListBySomeIdQuery } from "./queries/preferredLatestRatingIdListBySomeId";
|
|
38
|
+
export type { PreferredStorePageListQuery } from "./queries/preferredStorePageList";
|
|
39
|
+
export type { PriceHistoryLookupQuery } from "./queries/priceHistoryLookup";
|
|
40
|
+
export type { PricePointCompetitorsQuery } from "./queries/pricePointCompetitors";
|
|
41
|
+
export type { PriceRangeByCategoryIdQuery } from "./queries/priceRangeByCategoryId";
|
|
42
|
+
export type { ProductConfigurationIdListBySomeIdQuery } from "./queries/productConfigurationIdListBySomeId";
|
|
43
|
+
export type { ProductDealListQuery } from "./queries/productDealList";
|
|
44
|
+
export type { ProductDocumentByStoreUrlQuery } from "./queries/productDocumentByStoreUrl";
|
|
4
45
|
export type { ProductDocumentsByProductIdsQuery } from "./queries/productDocumentsByProductIds";
|
|
5
|
-
export type {
|
|
46
|
+
export type { ProductFamilyIdBySomeIdQuery } from "./queries/productFamilyIdBySomeId";
|
|
47
|
+
export type { ProductFamilyIdListBySomeIdQuery } from "./queries/productFamilyIdListBySomeId";
|
|
48
|
+
export type { ProductGenerationIdBySomeIdQuery } from "./queries/productGenerationIdBySomeId";
|
|
49
|
+
export type { ProductGenerationIdListBySomeIdQuery } from "./queries/productGenerationIdListBySomeId";
|
|
50
|
+
export type { ProductListSortQuery } from "./queries/productListSort";
|
|
51
|
+
export type { ProductPricePointListQuery } from "./queries/productPricePointList";
|
|
52
|
+
export type { ProductSearchListQuery } from "./queries/productSearchList";
|
|
53
|
+
export type { ProductTypeIdBySomeIdQuery } from "./queries/productTypeIdBySomeId";
|
|
54
|
+
export type { ProductTypeIdByStoreUrlQuery } from "./queries/productTypeIdByStoreUrl";
|
|
55
|
+
export type { ProductTypeIdListByCategoryIdQuery } from "./queries/productTypeIdListByCategoryId";
|
|
56
|
+
export type { ProductTypeIdListByModifiersQuery } from "./queries/productTypeIdListByModifiers";
|
|
57
|
+
export type { ProductTypeIdListBySomeIdQuery } from "./queries/productTypeIdListBySomeId";
|
|
58
|
+
export type { SaleMetricsQuery } from "./queries/saleMetrics";
|
|
6
59
|
export type { SearchSuggestionListQuery } from "./queries/searchSuggestionList";
|
|
7
|
-
export type {
|
|
8
|
-
export type {
|
|
9
|
-
export type {
|
|
60
|
+
export type { SectionDataByCrawlIdQuery } from "./queries/sectionDataByCrawlId";
|
|
61
|
+
export type { SourceIdListQuery } from "./queries/sourceIdList";
|
|
62
|
+
export type { SpecIdListBySomeIdQuery } from "./queries/specIdListBySomeId";
|
|
63
|
+
export type { SpecTypeIdListQuery } from "./queries/specTypeIdList";
|
|
64
|
+
export type { SpecTypeValidValuesQuery } from "./queries/specTypeValidValues";
|
|
65
|
+
export type { SpecValueRangeListByCategoryIdQuery } from "./queries/specValueRangeListByCategoryId";
|
|
66
|
+
export type { StablePriceByProductIdAndStoreNameQuery } from "./queries/stablePriceByProductIdAndStoreName";
|
|
67
|
+
export type { StablePriceByProductIdQuery } from "./queries/stablePriceByProductId";
|
|
68
|
+
export type { StablePriceByStorePageIdQuery } from "./queries/stablePriceByStorePageId";
|
|
69
|
+
export type { StorePageFetchDataQuery } from "./queries/storePageFetchData";
|
|
70
|
+
export type { StorePageIdByUrlQuery } from "./queries/storePageIdByUrl";
|
|
71
|
+
export type { StorePageIdListBySomeIdQuery } from "./queries/storePageIdListBySomeId";
|
|
72
|
+
export type { StorePageInfoBySkuQuery } from "./queries/storePageInfoBySku";
|
|
73
|
+
export type { StorePageInfoQuery } from "./queries/storePageInfo";
|
|
74
|
+
export type { StorePageScrapeDataQuery } from "./queries/storePageScrapeData";
|
|
75
|
+
export type { SubCategoryIdListByCategoryIdQuery } from "./queries/subCategoryIdListByCategoryId";
|
|
76
|
+
export type { SubsetModifierDataByModifiersQuery } from "./queries/subsetModifierDataByModifiers";
|
|
10
77
|
export type { TopProductDocumentListQuery } from "./queries/topProductDocumentList";
|
|
78
|
+
export type { UnstableMediaIdListByCategoryIdQuery } from "./queries/unstableMediaIdListByCategoryId";
|
|
79
|
+
export type { UserReviewAnalysisQuery } from "./queries/userReviewAnalysis";
|
|
80
|
+
export type { UnstableSourceTrustQuery } from "./queries/unstableSourceTrust";
|
|
81
|
+
export type { UserIdListQuery } from "./queries/userIdList";
|
|
82
|
+
export type { UserPermissionsByUserIdQuery } from "./queries/userPermissionsByUserId";
|
|
11
83
|
//# sourceMappingURL=queries.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"queries.d.ts","sourceRoot":"","sources":["../../src/schema/queries.ts"],"names":[],"mappings":"AAAA,YAAY,EAAE,iBAAiB,EAAE,MAAM,wBAAwB,CAAA;AAC/D,YAAY,EAAE,mBAAmB,EAAE,MAAM,0BAA0B,CAAA;AACnE,YAAY,EAAE,
|
|
1
|
+
{"version":3,"file":"queries.d.ts","sourceRoot":"","sources":["../../src/schema/queries.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,11 +1,83 @@
|
|
|
1
1
|
export type { AffiliateUrlResponse } from "./queries/affiliateUrl";
|
|
2
2
|
export type { AnalyticsTrackResponse } from "./queries/analyticsTrack";
|
|
3
|
-
export type {
|
|
3
|
+
export type { AppliedCategoryIdListBySomeIdResponse } from "./queries/appliedCategoryIdListBySomeId";
|
|
4
|
+
export type { BaseScoreRatingIdListResponse } from "./queries/baseScoreRatingIdList";
|
|
5
|
+
export type { BaseScoreResponse } from "./queries/baseScore";
|
|
6
|
+
export type { BaseScoresByCategoryIdResponse } from "./queries/baseScoresByCategoryId";
|
|
7
|
+
export type { BestInClassResponse } from "./queries/bestInClass";
|
|
8
|
+
export type { BrandIdBySomeIdResponse } from "./queries/brandIdBySomeId";
|
|
9
|
+
export type { BrandIdListResponse } from "./queries/brandIdList";
|
|
10
|
+
export type { BrandAliasResolutionResponse } from "./queries/brandAliasResolution";
|
|
11
|
+
export type { BrandCategoryRankingsResponse } from "./queries/brandCategoryRankings";
|
|
12
|
+
export type { BrandSocialMediaPostListResponse } from "./queries/brandSocialMediaPostList";
|
|
13
|
+
export type { CategoryAliasResolutionResponse } from "./queries/categoryAliasResolution";
|
|
14
|
+
export type { CategoryDisplayModeResponse } from "./queries/categoryDisplayMode";
|
|
15
|
+
export type { CategoryIdByUrlSlugResponse } from "./queries/categoryIdByUrlSlug";
|
|
16
|
+
export type { CategoryIdListBySomeIdResponse } from "./queries/categoryIdListBySomeId";
|
|
17
|
+
export type { CategoryIdListBySourceIdResponse } from "./queries/categoryIdListBySourceId";
|
|
18
|
+
export type { CategoryIdListResponse } from "./queries/categoryIdList";
|
|
19
|
+
export type { CategoryRankingsResponse } from "./queries/categoryRankings";
|
|
20
|
+
export type { CategorySearchListResponse } from "./queries/categorySearchList";
|
|
21
|
+
export type { CategoryStatusListResponse } from "./queries/categoryStatusList";
|
|
22
|
+
export type { CrawlIdListByUrlResponse } from "./queries/crawlIdListByUrl";
|
|
23
|
+
export type { CrawlIdListResponse } from "./queries/crawlIdList";
|
|
24
|
+
export type { DescriptionMarkdownResponse } from "./queries/descriptionMarkdown";
|
|
25
|
+
export type { EntityTypeResponse } from "./queries/entityType";
|
|
26
|
+
export type { FallbackPriceByProductTypeIdResponse } from "./queries/fallbackPriceByProductTypeId";
|
|
27
|
+
export type { InputLayerVersionResponse } from "./queries/inputLayerVersion";
|
|
28
|
+
export type { LatestRatingIdListResponse } from "./queries/latestRatingIdList";
|
|
29
|
+
export type { LatestRatingIdListBySomeIdResponse } from "./queries/latestRatingIdListBySomeId";
|
|
30
|
+
export type { MediaIdListBySomeIdResponse } from "./queries/mediaIdListBySomeId";
|
|
31
|
+
export type { CategoryModifierSearchListResponse } from "./queries/categoryModifierSearchList";
|
|
32
|
+
export type { NoteMarkdownResponse } from "./queries/noteMarkdown";
|
|
33
|
+
export type { OfferIdListByStorePageIdResponse } from "./queries/offerIdListByStorePageId";
|
|
34
|
+
export type { PossibleAliasIdListBySomeIdResponse } from "./queries/possibleAliasIdListBySomeId";
|
|
35
|
+
export type { PossibleStorePageIdListBySomeIdResponse } from "./queries/possibleStorePageIdListBySomeId";
|
|
36
|
+
export type { PreferredCategoryIdListByProductIdResponse } from "./queries/preferredCategoryIdListByProductId";
|
|
37
|
+
export type { PreferredLatestRatingIdListBySomeIdResponse } from "./queries/preferredLatestRatingIdListBySomeId";
|
|
38
|
+
export type { PreferredStorePageListResponse } from "./queries/preferredStorePageList";
|
|
39
|
+
export type { PriceHistoryLookupResponse } from "./queries/priceHistoryLookup";
|
|
40
|
+
export type { PricePointCompetitorsResponse } from "./queries/pricePointCompetitors";
|
|
41
|
+
export type { PriceRangeByCategoryIdResponse } from "./queries/priceRangeByCategoryId";
|
|
42
|
+
export type { ProductConfigurationIdListBySomeIdResponse } from "./queries/productConfigurationIdListBySomeId";
|
|
43
|
+
export type { ProductDealListResponse } from "./queries/productDealList";
|
|
44
|
+
export type { ProductDocumentByStoreUrlResponse } from "./queries/productDocumentByStoreUrl";
|
|
4
45
|
export type { ProductDocumentsByProductIdsResponse } from "./queries/productDocumentsByProductIds";
|
|
5
|
-
export type {
|
|
46
|
+
export type { ProductFamilyIdBySomeIdResponse } from "./queries/productFamilyIdBySomeId";
|
|
47
|
+
export type { ProductFamilyIdListBySomeIdResponse } from "./queries/productFamilyIdListBySomeId";
|
|
48
|
+
export type { ProductGenerationIdBySomeIdResponse } from "./queries/productGenerationIdBySomeId";
|
|
49
|
+
export type { ProductGenerationIdListBySomeIdResponse } from "./queries/productGenerationIdListBySomeId";
|
|
50
|
+
export type { ProductListSortResponse } from "./queries/productListSort";
|
|
51
|
+
export type { ProductPricePointListResponse } from "./queries/productPricePointList";
|
|
52
|
+
export type { ProductSearchListResponse } from "./queries/productSearchList";
|
|
53
|
+
export type { ProductTypeIdBySomeIdResponse } from "./queries/productTypeIdBySomeId";
|
|
54
|
+
export type { ProductTypeIdByStoreUrlResponse } from "./queries/productTypeIdByStoreUrl";
|
|
55
|
+
export type { ProductTypeIdListByCategoryIdResponse } from "./queries/productTypeIdListByCategoryId";
|
|
56
|
+
export type { ProductTypeIdListByModifiersResponse } from "./queries/productTypeIdListByModifiers";
|
|
57
|
+
export type { ProductTypeIdListBySomeIdResponse } from "./queries/productTypeIdListBySomeId";
|
|
58
|
+
export type { SaleMetricsResponse } from "./queries/saleMetrics";
|
|
6
59
|
export type { SearchSuggestionListResponse } from "./queries/searchSuggestionList";
|
|
7
|
-
export type {
|
|
8
|
-
export type {
|
|
9
|
-
export type {
|
|
60
|
+
export type { SectionDataByCrawlIdResponse } from "./queries/sectionDataByCrawlId";
|
|
61
|
+
export type { SourceIdListResponse } from "./queries/sourceIdList";
|
|
62
|
+
export type { SpecIdListBySomeIdResponse } from "./queries/specIdListBySomeId";
|
|
63
|
+
export type { SpecTypeIdListResponse } from "./queries/specTypeIdList";
|
|
64
|
+
export type { SpecTypeValidValuesResponse } from "./queries/specTypeValidValues";
|
|
65
|
+
export type { SpecValueRangeListByCategoryIdResponse } from "./queries/specValueRangeListByCategoryId";
|
|
66
|
+
export type { StablePriceByProductIdAndStoreNameResponse } from "./queries/stablePriceByProductIdAndStoreName";
|
|
67
|
+
export type { StablePriceByProductIdResponse } from "./queries/stablePriceByProductId";
|
|
68
|
+
export type { StablePriceByStorePageIdResponse } from "./queries/stablePriceByStorePageId";
|
|
69
|
+
export type { StorePageFetchDataResponse } from "./queries/storePageFetchData";
|
|
70
|
+
export type { StorePageIdByUrlResponse } from "./queries/storePageIdByUrl";
|
|
71
|
+
export type { StorePageIdListBySomeIdResponse } from "./queries/storePageIdListBySomeId";
|
|
72
|
+
export type { StorePageInfoBySkuResponse } from "./queries/storePageInfoBySku";
|
|
73
|
+
export type { StorePageInfoResponse } from "./queries/storePageInfo";
|
|
74
|
+
export type { StorePageScrapeDataResponse } from "./queries/storePageScrapeData";
|
|
75
|
+
export type { SubCategoryIdListByCategoryIdResponse } from "./queries/subCategoryIdListByCategoryId";
|
|
76
|
+
export type { SubsetModifierDataByModifiersResponse } from "./queries/subsetModifierDataByModifiers";
|
|
10
77
|
export type { TopProductDocumentListResponse } from "./queries/topProductDocumentList";
|
|
78
|
+
export type { UnstableMediaIdListByCategoryIdResponse } from "./queries/unstableMediaIdListByCategoryId";
|
|
79
|
+
export type { UserReviewAnalysisResponse } from "./queries/userReviewAnalysis";
|
|
80
|
+
export type { UnstableSourceTrustResponse } from "./queries/unstableSourceTrust";
|
|
81
|
+
export type { UserIdListResponse } from "./queries/userIdList";
|
|
82
|
+
export type { UserPermissionsByUserIdResponse } from "./queries/userPermissionsByUserId";
|
|
11
83
|
//# sourceMappingURL=responses.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"responses.d.ts","sourceRoot":"","sources":["../../src/schema/responses.ts"],"names":[],"mappings":"AAAA,YAAY,EAAE,oBAAoB,EAAE,MAAM,wBAAwB,CAAA;AAClE,YAAY,EAAE,sBAAsB,EAAE,MAAM,0BAA0B,CAAA;AACtE,YAAY,EAAE,
|
|
1
|
+
{"version":3,"file":"responses.d.ts","sourceRoot":"","sources":["../../src/schema/responses.ts"],"names":[],"mappings":"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"}
|
package/dist/Context.js
DELETED
package/dist/Context.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"Context.js","sourceRoot":"","sources":["../src/Context.ts"],"names":[],"mappings":";;AAAA,iCAA8C;AAQ9C,MAAM,UAAU,GAAG,qBAAa,CAAC,IAAI,CAAC,CAAA;AAEtC,kBAAgB,UAAyD,CAAA"}
|
package/dist/Provider.js
DELETED
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
-
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
-
};
|
|
5
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
-
const react_1 = __importDefault(require("react"));
|
|
7
|
-
const react_redux_1 = require("react-redux");
|
|
8
|
-
const Context_1 = __importDefault(require("./Context"));
|
|
9
|
-
const store_1 = __importDefault(require("./store"));
|
|
10
|
-
const ApiProvider = ({ children }) => {
|
|
11
|
-
return (react_1.default.createElement(react_redux_1.Provider, { store: store_1.default, context: Context_1.default }, children));
|
|
12
|
-
};
|
|
13
|
-
exports.default = ApiProvider;
|
|
14
|
-
//# sourceMappingURL=Provider.js.map
|
package/dist/Provider.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"Provider.js","sourceRoot":"","sources":["../src/Provider.tsx"],"names":[],"mappings":";;;;;AAAA,kDAAyB;AACzB,6CAAsC;AAEtC,wDAA+B;AAC/B,oDAA2B;AAE3B,MAAM,WAAW,GAA+C,CAAC,EAAE,QAAQ,EAAE,EAAE,EAAE;IAC/E,OAAO,CACL,8BAAC,sBAAQ,IAAC,KAAK,EAAE,eAAK,EAAE,OAAO,EAAE,iBAAO,IACrC,QAAQ,CACA,CACZ,CAAA;AACH,CAAC,CAAA;AAED,kBAAe,WAAW,CAAA"}
|
package/dist/actions.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"actions.js","sourceRoot":"","sources":["../src/actions.ts"],"names":[],"mappings":""}
|
package/dist/hooks/index.js
DELETED
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.useQuery = exports.useQueries = exports.useEntity = exports.useEntities = exports.useApiStore = exports.useApiSelector = exports.useApiDispatch = void 0;
|
|
4
|
-
var useApiDispatch_1 = require("./useApiDispatch");
|
|
5
|
-
Object.defineProperty(exports, "useApiDispatch", { enumerable: true, get: function () { return useApiDispatch_1.useApiDispatch; } });
|
|
6
|
-
var useApiSelector_1 = require("./useApiSelector");
|
|
7
|
-
Object.defineProperty(exports, "useApiSelector", { enumerable: true, get: function () { return useApiSelector_1.useApiSelector; } });
|
|
8
|
-
var useApiStore_1 = require("./useApiStore");
|
|
9
|
-
Object.defineProperty(exports, "useApiStore", { enumerable: true, get: function () { return useApiStore_1.useApiStore; } });
|
|
10
|
-
var useEntities_1 = require("./useEntities");
|
|
11
|
-
Object.defineProperty(exports, "useEntities", { enumerable: true, get: function () { return useEntities_1.useEntities; } });
|
|
12
|
-
var useEntity_1 = require("./useEntity");
|
|
13
|
-
Object.defineProperty(exports, "useEntity", { enumerable: true, get: function () { return useEntity_1.useEntity; } });
|
|
14
|
-
var useQueries_1 = require("./useQueries");
|
|
15
|
-
Object.defineProperty(exports, "useQueries", { enumerable: true, get: function () { return useQueries_1.useQueries; } });
|
|
16
|
-
var useQuery_1 = require("./useQuery");
|
|
17
|
-
Object.defineProperty(exports, "useQuery", { enumerable: true, get: function () { return useQuery_1.useQuery; } });
|
|
18
|
-
//# sourceMappingURL=index.js.map
|
package/dist/hooks/index.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/hooks/index.ts"],"names":[],"mappings":";;;AAAA,mDAAiD;AAAxC,gHAAA,cAAc,OAAA;AACvB,mDAAiD;AAAxC,gHAAA,cAAc,OAAA;AACvB,6CAA2C;AAAlC,0GAAA,WAAW,OAAA;AAGpB,6CAA2C;AAAlC,0GAAA,WAAW,OAAA;AACpB,yCAAuC;AAA9B,sGAAA,SAAS,OAAA;AAClB,2CAAyC;AAAhC,wGAAA,UAAU,OAAA;AACnB,uCAAqC;AAA5B,oGAAA,QAAQ,OAAA"}
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
-
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
-
};
|
|
5
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
-
exports.useApiDispatch = void 0;
|
|
7
|
-
const react_redux_1 = require("react-redux");
|
|
8
|
-
const Context_1 = __importDefault(require("../Context"));
|
|
9
|
-
exports.useApiDispatch = react_redux_1.createDispatchHook(Context_1.default);
|
|
10
|
-
//# sourceMappingURL=useApiDispatch.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"useApiDispatch.js","sourceRoot":"","sources":["../../src/hooks/useApiDispatch.ts"],"names":[],"mappings":";;;;;;AAAA,6CAAgD;AAGhD,yDAAkC;AAErB,QAAA,cAAc,GAAG,gCAAkB,CAAC,iBAAU,CAAyC,CAAA"}
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
-
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
-
};
|
|
5
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
-
exports.useApiSelector = void 0;
|
|
7
|
-
const react_redux_1 = require("react-redux");
|
|
8
|
-
const Context_1 = __importDefault(require("../Context"));
|
|
9
|
-
exports.useApiSelector = react_redux_1.createSelectorHook(Context_1.default);
|
|
10
|
-
//# sourceMappingURL=useApiSelector.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"useApiSelector.js","sourceRoot":"","sources":["../../src/hooks/useApiSelector.ts"],"names":[],"mappings":";;;;;;AAAA,6CAAgD;AAEhD,yDAAkC;AAKrB,QAAA,cAAc,GAAG,gCAAkB,CAAC,iBAAU,CAGrD,CAAA"}
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
-
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
-
};
|
|
5
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
-
exports.useApiStore = void 0;
|
|
7
|
-
const react_redux_1 = require("react-redux");
|
|
8
|
-
const Context_1 = __importDefault(require("../Context"));
|
|
9
|
-
exports.useApiStore = react_redux_1.createStoreHook(Context_1.default);
|
|
10
|
-
//# sourceMappingURL=useApiStore.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"useApiStore.js","sourceRoot":"","sources":["../../src/hooks/useApiStore.ts"],"names":[],"mappings":";;;;;;AAAA,6CAA6C;AAG7C,yDAAkC;AAErB,QAAA,WAAW,GAAgB,6BAAe,CAAC,iBAAU,CAAC,CAAA"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"product.js","sourceRoot":"","sources":["../../../src/schema/entities/product.ts"],"names":[],"mappings":""}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"variant.js","sourceRoot":"","sources":["../../../src/schema/entities/variant.ts"],"names":[],"mappings":""}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"productDocumentsByRetailPageUrls.js","sourceRoot":"","sources":["../../../src/schema/queries/productDocumentsByRetailPageUrls.ts"],"names":[],"mappings":""}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"retailPageInfo.js","sourceRoot":"","sources":["../../../src/schema/queries/retailPageInfo.ts"],"names":[],"mappings":""}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"retailPagePriceHistory.js","sourceRoot":"","sources":["../../../src/schema/queries/retailPagePriceHistory.ts"],"names":[],"mappings":""}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"retailPagePricing.js","sourceRoot":"","sources":["../../../src/schema/queries/retailPagePricing.ts"],"names":[],"mappings":""}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"searchList.js","sourceRoot":"","sources":["../../../src/schema/queries/searchList.ts"],"names":[],"mappings":""}
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
-
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
-
};
|
|
5
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
-
const redux_1 = require("redux");
|
|
7
|
-
const makeEntityReducer_1 = __importDefault(require("./makeEntityReducer"));
|
|
8
|
-
exports.default = redux_1.combineReducers({
|
|
9
|
-
product: makeEntityReducer_1.default("product"),
|
|
10
|
-
variant: makeEntityReducer_1.default("variant"),
|
|
11
|
-
});
|
|
12
|
-
//# sourceMappingURL=index.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/store/entities/index.ts"],"names":[],"mappings":";;;;;AAAA,iCAAuC;AAEvC,4EAAmD;AAEnD,kBAAe,uBAAe,CAAC;IAC7B,OAAO,EAAE,2BAAiB,CAAC,SAAS,CAAC;IACrC,OAAO,EAAE,2BAAiB,CAAC,SAAS,CAAC;CACtC,CAAC,CAAA"}
|
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
const makeEntityReducer = (name) => {
|
|
4
|
-
return (state, action) => {
|
|
5
|
-
if (state === undefined) {
|
|
6
|
-
return {};
|
|
7
|
-
}
|
|
8
|
-
if (action.type !== "response_arrived") {
|
|
9
|
-
return state;
|
|
10
|
-
}
|
|
11
|
-
const allRawEntities = action.response.entities;
|
|
12
|
-
if (allRawEntities === undefined) {
|
|
13
|
-
return state;
|
|
14
|
-
}
|
|
15
|
-
const rawEntities = allRawEntities[name];
|
|
16
|
-
if (rawEntities === undefined) {
|
|
17
|
-
return state;
|
|
18
|
-
}
|
|
19
|
-
const next = Object.assign({}, state, rawEntities);
|
|
20
|
-
return next;
|
|
21
|
-
};
|
|
22
|
-
};
|
|
23
|
-
exports.default = makeEntityReducer;
|
|
24
|
-
//# sourceMappingURL=makeEntityReducer.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"makeEntityReducer.js","sourceRoot":"","sources":["../../../src/store/entities/makeEntityReducer.ts"],"names":[],"mappings":";;AAaA,MAAM,iBAAiB,GAAG,CAIxB,IAAa,EACiB,EAAE;IAChC,OAAO,CAAC,KAAK,EAAE,MAAM,EAAE,EAAE;QACvB,IAAI,KAAK,KAAK,SAAS,EAAE;YACvB,OAAO,EAAa,CAAA;SACrB;QACD,IAAI,MAAM,CAAC,IAAI,KAAK,kBAAkB,EAAE;YACtC,OAAO,KAAK,CAAA;SACb;QACD,MAAM,cAAc,GAAG,MAAM,CAAC,QAAQ,CAAC,QAAQ,CAAA;QAC/C,IAAI,cAAc,KAAK,SAAS,EAAE;YAChC,OAAO,KAAK,CAAA;SACb;QACD,MAAM,WAAW,GAAG,cAAc,CAAC,IAAI,CAAC,CAAA;QACxC,IAAI,WAAW,KAAK,SAAS,EAAE;YAC7B,OAAO,KAAK,CAAA;SACb;QAQD,MAAM,IAAI,GAAY,MAAM,CAAC,MAAM,CAAC,EAAE,EAAE,KAAK,EAAE,WAAW,CAAC,CAAA;QAC3D,OAAO,IAAI,CAAA;IACb,CAAC,CAAA;AACH,CAAC,CAAA;AAED,kBAAe,iBAAiB,CAAA"}
|
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
const errorsReducer = (state, action) => {
|
|
4
|
-
if (state === undefined) {
|
|
5
|
-
return {};
|
|
6
|
-
}
|
|
7
|
-
if (action.type !== "response_arrived") {
|
|
8
|
-
return state;
|
|
9
|
-
}
|
|
10
|
-
const allRawErrors = action.response.errors;
|
|
11
|
-
if (allRawErrors === undefined) {
|
|
12
|
-
return state;
|
|
13
|
-
}
|
|
14
|
-
const next = Object.assign({}, state);
|
|
15
|
-
for (const [queryName, errors] of Object.entries(allRawErrors)) {
|
|
16
|
-
if (errors === undefined) {
|
|
17
|
-
return state;
|
|
18
|
-
}
|
|
19
|
-
next[queryName] = errors;
|
|
20
|
-
}
|
|
21
|
-
return next;
|
|
22
|
-
};
|
|
23
|
-
exports.default = errorsReducer;
|
|
24
|
-
//# sourceMappingURL=index.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/store/errors/index.ts"],"names":[],"mappings":";;AAGA,MAAM,aAAa,GAAG,CACpB,KAA8C,EAC9C,MAAkB,EACuB,EAAE;IAC3C,IAAI,KAAK,KAAK,SAAS,EAAE;QACvB,OAAO,EAAE,CAAA;KACV;IACD,IAAI,MAAM,CAAC,IAAI,KAAK,kBAAkB,EAAE;QACtC,OAAO,KAAK,CAAA;KACb;IAED,MAAM,YAAY,GAAG,MAAM,CAAC,QAAQ,CAAC,MAAM,CAAA;IAC3C,IAAI,YAAY,KAAK,SAAS,EAAE;QAC9B,OAAO,KAAK,CAAA;KACb;IAED,MAAM,IAAI,qBAAQ,KAAK,CAAE,CAAA;IAEzB,KAAK,MAAM,CAAC,SAAS,EAAE,MAAM,CAAC,IAAI,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,EAAE;QAC9D,IAAI,MAAM,KAAK,SAAS,EAAE;YACxB,OAAO,KAAK,CAAA;SACb;QAED,IAAI,CAAC,SAAS,CAAC,GAAG,MAAM,CAAA;KACzB;IAED,OAAO,IAAI,CAAA;AACb,CAAC,CAAA;AAED,kBAAe,aAAa,CAAA"}
|
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
const makeErrorReducer = (name) => {
|
|
4
|
-
return (state, action) => {
|
|
5
|
-
if (state === undefined) {
|
|
6
|
-
return {};
|
|
7
|
-
}
|
|
8
|
-
if (action.type !== "response_arrived") {
|
|
9
|
-
return state;
|
|
10
|
-
}
|
|
11
|
-
const allRawErrors = action.response.errors;
|
|
12
|
-
if (allRawErrors === undefined) {
|
|
13
|
-
return state;
|
|
14
|
-
}
|
|
15
|
-
const rawErrors = allRawErrors[name];
|
|
16
|
-
if (rawErrors === undefined) {
|
|
17
|
-
return state;
|
|
18
|
-
}
|
|
19
|
-
const next = Object.assign({}, state, rawErrors);
|
|
20
|
-
return next;
|
|
21
|
-
};
|
|
22
|
-
};
|
|
23
|
-
exports.default = makeErrorReducer;
|
|
24
|
-
//# sourceMappingURL=makeErrorReducer.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"makeErrorReducer.js","sourceRoot":"","sources":["../../../src/store/errors/makeErrorReducer.ts"],"names":[],"mappings":";;AASA,MAAM,gBAAgB,GAAG,CAIvB,IAAa,EACiB,EAAE;IAChC,OAAO,CAAC,KAAK,EAAE,MAAM,EAAE,EAAE;QACvB,IAAI,KAAK,KAAK,SAAS,EAAE;YACvB,OAAO,EAAa,CAAA;SACrB;QACD,IAAI,MAAM,CAAC,IAAI,KAAK,kBAAkB,EAAE;YACtC,OAAO,KAAK,CAAA;SACb;QACD,MAAM,YAAY,GAAG,MAAM,CAAC,QAAQ,CAAC,MAAM,CAAA;QAC3C,IAAI,YAAY,KAAK,SAAS,EAAE;YAC9B,OAAO,KAAK,CAAA;SACb;QACD,MAAM,SAAS,GAAG,YAAY,CAAC,IAAI,CAAC,CAAA;QACpC,IAAI,SAAS,KAAK,SAAS,EAAE;YAC3B,OAAO,KAAK,CAAA;SACb;QAED,MAAM,IAAI,GAAY,MAAM,CAAC,MAAM,CAAC,EAAE,EAAE,KAAK,EAAE,SAAS,CAAC,CAAA;QACzD,OAAO,IAAI,CAAA;IACb,CAAC,CAAA;AACH,CAAC,CAAA;AAED,kBAAe,gBAAgB,CAAA"}
|
package/dist/store/index.js
DELETED
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
-
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
-
};
|
|
5
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
-
const redux_1 = require("redux");
|
|
7
|
-
const entities_1 = __importDefault(require("./entities"));
|
|
8
|
-
const errors_1 = __importDefault(require("./errors"));
|
|
9
|
-
const responses_1 = __importDefault(require("./responses"));
|
|
10
|
-
const reducers = redux_1.combineReducers({
|
|
11
|
-
entities: entities_1.default,
|
|
12
|
-
responses: responses_1.default,
|
|
13
|
-
errors: errors_1.default,
|
|
14
|
-
});
|
|
15
|
-
const store = redux_1.createStore(reducers);
|
|
16
|
-
exports.default = store;
|
|
17
|
-
//# sourceMappingURL=index.js.map
|
package/dist/store/index.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/store/index.ts"],"names":[],"mappings":";;;;;AAAA,iCAAoD;AAMpD,0DAAiC;AACjC,sDAA6B;AAC7B,4DAAmC;AAUnC,MAAM,QAAQ,GAAG,uBAAe,CAAC;IAC/B,QAAQ,EAAR,kBAAQ;IACR,SAAS,EAAT,mBAAS;IACT,MAAM,EAAN,gBAAM;CACP,CAAC,CAAA;AAEF,MAAM,KAAK,GAAG,mBAAW,CAAC,QAAQ,CAAC,CAAA;AAEnC,kBAAe,KAAK,CAAA"}
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
-
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
-
};
|
|
5
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
-
const redux_1 = require("redux");
|
|
7
|
-
const makeResponseReducer_1 = __importDefault(require("./makeResponseReducer"));
|
|
8
|
-
exports.default = redux_1.combineReducers({
|
|
9
|
-
affiliateUrl: makeResponseReducer_1.default("affiliateUrl"),
|
|
10
|
-
analyticsTrack: makeResponseReducer_1.default("analyticsTrack"),
|
|
11
|
-
retailPagePriceHistory: makeResponseReducer_1.default("retailPagePriceHistory"),
|
|
12
|
-
productDocumentsByRetailPageUrls: makeResponseReducer_1.default("productDocumentsByRetailPageUrls"),
|
|
13
|
-
productDocumentsByProductIds: makeResponseReducer_1.default("productDocumentsByProductIds"),
|
|
14
|
-
searchSuggestionList: makeResponseReducer_1.default("searchSuggestionList"),
|
|
15
|
-
searchList: makeResponseReducer_1.default("searchList"),
|
|
16
|
-
retailPageInfo: makeResponseReducer_1.default("retailPageInfo"),
|
|
17
|
-
retailPagePricing: makeResponseReducer_1.default("retailPagePricing"),
|
|
18
|
-
topProductDocumentList: makeResponseReducer_1.default("topProductDocumentList"),
|
|
19
|
-
});
|
|
20
|
-
//# sourceMappingURL=index.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/store/responses/index.ts"],"names":[],"mappings":";;;;;AAAA,iCAAuC;AAEvC,gFAAuD;AAEvD,kBAAe,uBAAe,CAAC;IAC7B,YAAY,EAAE,6BAAmB,CAAC,cAAc,CAAC;IACjD,cAAc,EAAE,6BAAmB,CAAC,gBAAgB,CAAC;IACrD,sBAAsB,EAAE,6BAAmB,CAAC,wBAAwB,CAAC;IACrE,gCAAgC,EAAE,6BAAmB,CAAC,kCAAkC,CAAC;IACzF,4BAA4B,EAAE,6BAAmB,CAAC,8BAA8B,CAAC;IACjF,oBAAoB,EAAE,6BAAmB,CAAC,sBAAsB,CAAC;IACjE,UAAU,EAAE,6BAAmB,CAAC,YAAY,CAAC;IAC7C,cAAc,EAAE,6BAAmB,CAAC,gBAAgB,CAAC;IACrD,iBAAiB,EAAE,6BAAmB,CAAC,mBAAmB,CAAC;IAC3D,sBAAsB,EAAE,6BAAmB,CAAC,wBAAwB,CAAC;CACtE,CAAC,CAAA"}
|
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
const makeResponseReducer = (name) => {
|
|
4
|
-
return (state, action) => {
|
|
5
|
-
if (state === undefined) {
|
|
6
|
-
return {};
|
|
7
|
-
}
|
|
8
|
-
if (action.type !== "response_arrived") {
|
|
9
|
-
return state;
|
|
10
|
-
}
|
|
11
|
-
const allRawResponses = action.response.responses;
|
|
12
|
-
if (allRawResponses === undefined) {
|
|
13
|
-
return state;
|
|
14
|
-
}
|
|
15
|
-
const rawResponses = allRawResponses[name];
|
|
16
|
-
if (rawResponses === undefined) {
|
|
17
|
-
return state;
|
|
18
|
-
}
|
|
19
|
-
const next = Object.assign({}, state, rawResponses);
|
|
20
|
-
return next;
|
|
21
|
-
};
|
|
22
|
-
};
|
|
23
|
-
exports.default = makeResponseReducer;
|
|
24
|
-
//# sourceMappingURL=makeResponseReducer.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"makeResponseReducer.js","sourceRoot":"","sources":["../../../src/store/responses/makeResponseReducer.ts"],"names":[],"mappings":";;AASA,MAAM,mBAAmB,GAAG,CAI1B,IAAa,EACiB,EAAE;IAChC,OAAO,CAAC,KAAK,EAAE,MAAM,EAAE,EAAE;QACvB,IAAI,KAAK,KAAK,SAAS,EAAE;YACvB,OAAO,EAAa,CAAA;SACrB;QACD,IAAI,MAAM,CAAC,IAAI,KAAK,kBAAkB,EAAE;YACtC,OAAO,KAAK,CAAA;SACb;QACD,MAAM,eAAe,GAAG,MAAM,CAAC,QAAQ,CAAC,SAAS,CAAA;QACjD,IAAI,eAAe,KAAK,SAAS,EAAE;YACjC,OAAO,KAAK,CAAA;SACb;QACD,MAAM,YAAY,GAAG,eAAe,CAAC,IAAI,CAAC,CAAA;QAC1C,IAAI,YAAY,KAAK,SAAS,EAAE;YAC9B,OAAO,KAAK,CAAA;SACb;QAED,MAAM,IAAI,GAAY,MAAM,CAAC,MAAM,CAAC,EAAE,EAAE,KAAK,EAAE,YAAY,CAAC,CAAA;QAC5D,OAAO,IAAI,CAAA;IACb,CAAC,CAAA;AACH,CAAC,CAAA;AAED,kBAAe,mBAAmB,CAAA"}
|
package/types/Context.d.ts
DELETED
package/types/Context.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"Context.d.ts","sourceRoot":"","sources":["../src/Context.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAiB,MAAM,OAAO,CAAA;AAC9C,OAAO,EAAE,sBAAsB,EAAE,MAAM,aAAa,CAAA;;AASpD,wBAAyE"}
|
package/types/Provider.d.ts
DELETED
package/types/Provider.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"Provider.d.ts","sourceRoot":"","sources":["../src/Provider.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAA;AAMzB,QAAA,MAAM,WAAW,EAAE,KAAK,CAAC,EAAE,CAAC,KAAK,CAAC,iBAAiB,CAAC,OAAO,CAAC,CAM3D,CAAA;AAED,eAAe,WAAW,CAAA"}
|
package/types/actions.d.ts
DELETED
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import type { Api } from "./schema";
|
|
2
|
-
export declare type ApiAction<Type extends string, Body extends Record<string, unknown>> = {
|
|
3
|
-
type: Type;
|
|
4
|
-
} & Body;
|
|
5
|
-
export declare type ApiActions = ApiAction<"response_arrived", {
|
|
6
|
-
response: Api;
|
|
7
|
-
}>;
|
|
8
|
-
//# sourceMappingURL=actions.d.ts.map
|
package/types/actions.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"actions.d.ts","sourceRoot":"","sources":["../src/actions.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,GAAG,EAAE,iBAAgB;AAGnC,oBAAY,SAAS,CAAC,IAAI,SAAS,MAAM,EAAE,IAAI,SAAS,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,IAAI;IACjF,IAAI,EAAE,IAAI,CAAA;CACX,GAAG,IAAI,CAAA;AAER,oBAAY,UAAU,GAAG,SAAS,CAAC,kBAAkB,EAAE;IAAE,QAAQ,EAAE,GAAG,CAAA;CAAE,CAAC,CAAA"}
|
package/types/hooks/index.d.ts
DELETED
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
export { useApiDispatch } from "./useApiDispatch";
|
|
2
|
-
export { useApiSelector } from "./useApiSelector";
|
|
3
|
-
export { useApiStore } from "./useApiStore";
|
|
4
|
-
export { useEntities } from "./useEntities";
|
|
5
|
-
export { useEntity } from "./useEntity";
|
|
6
|
-
export { useQueries } from "./useQueries";
|
|
7
|
-
export { useQuery } from "./useQuery";
|
|
8
|
-
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/hooks/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;AACjD,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;AACjD,OAAO,EAAE,WAAW,EAAE,MAAM,eAAe,CAAA;AAG3C,OAAO,EAAE,WAAW,EAAE,MAAM,eAAe,CAAA;AAC3C,OAAO,EAAE,SAAS,EAAE,MAAM,aAAa,CAAA;AACvC,OAAO,EAAE,UAAU,EAAE,MAAM,cAAc,CAAA;AACzC,OAAO,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAA"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"useApiDispatch.d.ts","sourceRoot":"","sources":["../../src/hooks/useApiDispatch.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,UAAU,EAAE,mBAAiB;AAItC,eAAO,MAAM,cAAc,mBAAsD,UAAU,KAAK,IAAI,CAAA;AAEpG,oBAAY,WAAW,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAA"}
|
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
import { Store } from "../store";
|
|
2
|
-
declare type ApiStateSelector<R> = (state: Store) => R;
|
|
3
|
-
export declare const useApiSelector: <T>(sel: ApiStateSelector<T>, eq?: ((prev: Store, next: Store) => boolean) | undefined) => T;
|
|
4
|
-
export {};
|
|
5
|
-
//# sourceMappingURL=useApiSelector.d.ts.map
|