@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 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"useApiSelector.d.ts","sourceRoot":"","sources":["../../src/hooks/useApiSelector.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,KAAK,EAAE,iBAAe;AAE/B,aAAK,gBAAgB,CAAC,CAAC,IAAI,CAAC,KAAK,EAAE,KAAK,KAAK,CAAC,CAAA;AAE9C,eAAO,MAAM,cAAc,6CAEb,KAAK,QAAQ,KAAK,KAAK,OAAO,mBACtC,CAAA"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"useApiStore.d.ts","sourceRoot":"","sources":["../../src/hooks/useApiStore.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,KAAK,EAAE,MAAM,OAAO,CAAA;AAI7B,eAAO,MAAM,WAAW,EAAE,MAAM,KAAmC,CAAA"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"product.d.ts","sourceRoot":"","sources":["../../../src/schema/entities/product.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,MAAM,aAAa,CAAA;AAEpC,MAAM,WAAW,OAAQ,SAAQ,MAAM,CAAC,SAAS,CAAC;IAChD,IAAI,EAAE,MAAM,CAAA;CACb"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"variant.d.ts","sourceRoot":"","sources":["../../../src/schema/entities/variant.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,MAAM,aAAa,CAAA;AAEpC,MAAM,WAAW,OAAQ,SAAQ,MAAM,CAAC,SAAS,CAAC;IAChD,IAAI,EAAE,MAAM,CAAA;CACb"}
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
import { Url, ProductDocument } from "../builtins";
|
|
2
|
-
export interface ProductDocumentsByRetailPageUrlsQuery {
|
|
3
|
-
retailPageUrls: Url[];
|
|
4
|
-
}
|
|
5
|
-
export declare type ProductDocumentsByRetailPageUrlsResponse = ProductDocument[];
|
|
6
|
-
//# sourceMappingURL=productDocumentsByRetailPageUrls.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"productDocumentsByRetailPageUrls.d.ts","sourceRoot":"","sources":["../../../src/schema/queries/productDocumentsByRetailPageUrls.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,GAAG,EAAE,eAAe,EAAE,MAAM,aAAa,CAAA;AAElD,MAAM,WAAW,qCAAqC;IACpD,cAAc,EAAE,GAAG,EAAE,CAAA;CACtB;AAED,oBAAY,wCAAwC,GAAG,eAAe,EAAE,CAAA"}
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
import { Attribute, HtmlString, Url } from "../builtins";
|
|
2
|
-
export interface RetailPageInfoQuery {
|
|
3
|
-
url: Url;
|
|
4
|
-
isStrictSearchMatch?: boolean;
|
|
5
|
-
}
|
|
6
|
-
export interface RetailPageInfoResponse {
|
|
7
|
-
retailer: string;
|
|
8
|
-
sku: string;
|
|
9
|
-
name: string;
|
|
10
|
-
url: string | null;
|
|
11
|
-
description: HtmlString | null;
|
|
12
|
-
searchMatch: {
|
|
13
|
-
search: string;
|
|
14
|
-
attributes: Attribute[];
|
|
15
|
-
} | null;
|
|
16
|
-
brand: string | null;
|
|
17
|
-
}
|
|
18
|
-
//# sourceMappingURL=retailPageInfo.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"retailPageInfo.d.ts","sourceRoot":"","sources":["../../../src/schema/queries/retailPageInfo.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,UAAU,EAAE,GAAG,EAAE,oBAAyB;AAE9D,MAAM,WAAW,mBAAmB;IAClC,GAAG,EAAE,GAAG,CAAA;IACR,mBAAmB,CAAC,EAAE,OAAO,CAAA;CAC9B;AAED,MAAM,WAAW,sBAAsB;IACrC,QAAQ,EAAE,MAAM,CAAA;IAChB,GAAG,EAAE,MAAM,CAAA;IACX,IAAI,EAAE,MAAM,CAAA;IACZ,GAAG,EAAE,MAAM,GAAG,IAAI,CAAA;IAElB,WAAW,EAAE,UAAU,GAAG,IAAI,CAAA;IAC9B,WAAW,EAAE;QACX,MAAM,EAAE,MAAM,CAAA;QACd,UAAU,EAAE,SAAS,EAAE,CAAA;KACxB,GAAG,IAAI,CAAA;IACR,KAAK,EAAE,MAAM,GAAG,IAAI,CAAA;CACrB"}
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
import { AnyCurrency, MoneyAmount, Timestamp, Url } from "../builtins";
|
|
2
|
-
export interface RetailPagePriceHistoryQuery {
|
|
3
|
-
url: Url;
|
|
4
|
-
type: PriceType;
|
|
5
|
-
}
|
|
6
|
-
export interface RetailPagePriceHistoryResponse {
|
|
7
|
-
retailer: string;
|
|
8
|
-
sku: string;
|
|
9
|
-
type: PriceType;
|
|
10
|
-
currency: AnyCurrency;
|
|
11
|
-
prices: [Timestamp, MoneyAmount | null][];
|
|
12
|
-
}
|
|
13
|
-
declare type PriceType = "list" | "buy" | "new" | "used" | "refurbished";
|
|
14
|
-
export {};
|
|
15
|
-
//# sourceMappingURL=retailPagePriceHistory.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"retailPagePriceHistory.d.ts","sourceRoot":"","sources":["../../../src/schema/queries/retailPagePriceHistory.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,WAAW,EAAE,SAAS,EAAE,GAAG,EAAE,oBAAyB;AAE5E,MAAM,WAAW,2BAA2B;IAC1C,GAAG,EAAE,GAAG,CAAA;IACR,IAAI,EAAE,SAAS,CAAA;CAChB;AAED,MAAM,WAAW,8BAA8B;IAC7C,QAAQ,EAAE,MAAM,CAAA;IAChB,GAAG,EAAE,MAAM,CAAA;IACX,IAAI,EAAE,SAAS,CAAA;IACf,QAAQ,EAAE,WAAW,CAAA;IAGrB,MAAM,EAAE,CAAC,SAAS,EAAE,WAAW,GAAG,IAAI,CAAC,EAAE,CAAA;CAC1C;AAOD,aAAK,SAAS,GAAG,MAAM,GAAG,KAAK,GAAG,KAAK,GAAG,MAAM,GAAG,aAAa,CAAA"}
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import { Money, Url } from "../builtins";
|
|
2
|
-
export interface RetailPagePricingQuery {
|
|
3
|
-
url: Url;
|
|
4
|
-
}
|
|
5
|
-
export interface RetailPagePricingResponse {
|
|
6
|
-
currentPrice: Money;
|
|
7
|
-
stablePrice: Money;
|
|
8
|
-
saleStatus: "sale" | "antisale" | null;
|
|
9
|
-
}
|
|
10
|
-
//# sourceMappingURL=retailPagePricing.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"retailPagePricing.d.ts","sourceRoot":"","sources":["../../../src/schema/queries/retailPagePricing.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,EAAE,GAAG,EAAE,oBAAyB;AAE9C,MAAM,WAAW,sBAAsB;IACrC,GAAG,EAAE,GAAG,CAAA;CACT;AAED,MAAM,WAAW,yBAAyB;IACxC,YAAY,EAAE,KAAK,CAAA;IACnB,WAAW,EAAE,KAAK,CAAA;IAClB,UAAU,EAAE,MAAM,GAAG,UAAU,GAAG,IAAI,CAAA;CACvC"}
|
|
@@ -1,54 +0,0 @@
|
|
|
1
|
-
import { Attribute, ListQuery, ListResponse, Money, SearchDocument } from "../builtins";
|
|
2
|
-
export interface SearchListQuery extends ListQuery<Filters> {
|
|
3
|
-
search: string;
|
|
4
|
-
isStrict?: boolean;
|
|
5
|
-
platform?: "web" | "mobile";
|
|
6
|
-
source?: "app" | "extension";
|
|
7
|
-
contextUrl?: URL;
|
|
8
|
-
}
|
|
9
|
-
interface Filters {
|
|
10
|
-
minPrice?: Money;
|
|
11
|
-
maxPrice?: Money;
|
|
12
|
-
attributes?: Attribute[];
|
|
13
|
-
brands?: string[];
|
|
14
|
-
categories?: string[];
|
|
15
|
-
page?: number;
|
|
16
|
-
pageSize?: number;
|
|
17
|
-
}
|
|
18
|
-
interface SearchListResponseBase {
|
|
19
|
-
budgetInfo: {
|
|
20
|
-
min: Money;
|
|
21
|
-
max: Money;
|
|
22
|
-
pricePoints: PricePoint[];
|
|
23
|
-
recommendedPrices: Money[];
|
|
24
|
-
} | null;
|
|
25
|
-
attributes: Attribute[];
|
|
26
|
-
brands: string[];
|
|
27
|
-
categories: string[];
|
|
28
|
-
hitCount: number;
|
|
29
|
-
isExact: boolean;
|
|
30
|
-
intents: SearchIntent[];
|
|
31
|
-
}
|
|
32
|
-
interface SearchListResponseList extends ListResponse<SearchDocument>, SearchListResponseBase {
|
|
33
|
-
kind: "list";
|
|
34
|
-
}
|
|
35
|
-
interface SearchListResponseGroup extends ListResponse<DocumentGrouping>, SearchListResponseBase {
|
|
36
|
-
kind: "group";
|
|
37
|
-
}
|
|
38
|
-
export declare type SearchListResponse = SearchListResponseList | SearchListResponseGroup;
|
|
39
|
-
interface PricePoint {
|
|
40
|
-
price: Money;
|
|
41
|
-
count: number;
|
|
42
|
-
}
|
|
43
|
-
declare type SearchIntent = "category" | "brand";
|
|
44
|
-
interface DocumentGroupingBase {
|
|
45
|
-
kind: string;
|
|
46
|
-
hits: SearchDocument[];
|
|
47
|
-
}
|
|
48
|
-
interface DocumentGroupingBrand extends DocumentGroupingBase {
|
|
49
|
-
kind: "brand";
|
|
50
|
-
name: string;
|
|
51
|
-
}
|
|
52
|
-
declare type DocumentGrouping = DocumentGroupingBrand;
|
|
53
|
-
export {};
|
|
54
|
-
//# sourceMappingURL=searchList.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"searchList.d.ts","sourceRoot":"","sources":["../../../src/schema/queries/searchList.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,SAAS,EAAE,YAAY,EAAE,KAAK,EAAE,cAAc,EAAE,MAAM,aAAa,CAAA;AAEvF,MAAM,WAAW,eAAgB,SAAQ,SAAS,CAAC,OAAO,CAAC;IACzD,MAAM,EAAE,MAAM,CAAA;IACd,QAAQ,CAAC,EAAE,OAAO,CAAA;IAElB,QAAQ,CAAC,EAAE,KAAK,GAAG,QAAQ,CAAA;IAC3B,MAAM,CAAC,EAAE,KAAK,GAAG,WAAW,CAAA;IAC5B,UAAU,CAAC,EAAE,GAAG,CAAA;CACjB;AAED,UAAU,OAAO;IACf,QAAQ,CAAC,EAAE,KAAK,CAAA;IAChB,QAAQ,CAAC,EAAE,KAAK,CAAA;IAChB,UAAU,CAAC,EAAE,SAAS,EAAE,CAAA;IACxB,MAAM,CAAC,EAAE,MAAM,EAAE,CAAA;IACjB,UAAU,CAAC,EAAE,MAAM,EAAE,CAAA;IACrB,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,QAAQ,CAAC,EAAE,MAAM,CAAA;CAClB;AAED,UAAU,sBAAsB;IAC9B,UAAU,EAAE;QACV,GAAG,EAAE,KAAK,CAAA;QACV,GAAG,EAAE,KAAK,CAAA;QACV,WAAW,EAAE,UAAU,EAAE,CAAA;QACzB,iBAAiB,EAAE,KAAK,EAAE,CAAA;KAC3B,GAAG,IAAI,CAAA;IACR,UAAU,EAAE,SAAS,EAAE,CAAA;IACvB,MAAM,EAAE,MAAM,EAAE,CAAA;IAChB,UAAU,EAAE,MAAM,EAAE,CAAA;IACpB,QAAQ,EAAE,MAAM,CAAA;IAChB,OAAO,EAAE,OAAO,CAAA;IAChB,OAAO,EAAE,YAAY,EAAE,CAAA;CACxB;AAED,UAAU,sBAAuB,SAAQ,YAAY,CAAC,cAAc,CAAC,EAAE,sBAAsB;IAC3F,IAAI,EAAE,MAAM,CAAA;CACb;AAED,UAAU,uBAAwB,SAAQ,YAAY,CAAC,gBAAgB,CAAC,EAAE,sBAAsB;IAC9F,IAAI,EAAE,OAAO,CAAA;CACd;AAED,oBAAY,kBAAkB,GAAG,sBAAsB,GAAG,uBAAuB,CAAA;AAEjF,UAAU,UAAU;IAClB,KAAK,EAAE,KAAK,CAAA;IACZ,KAAK,EAAE,MAAM,CAAA;CACd;AAED,aAAK,YAAY,GAAG,UAAU,GAAG,OAAO,CAAA;AAExC,UAAU,oBAAoB;IAC5B,IAAI,EAAE,MAAM,CAAA;IACZ,IAAI,EAAE,cAAc,EAAE,CAAA;CACvB;AAED,UAAU,qBAAsB,SAAQ,oBAAoB;IAC1D,IAAI,EAAE,OAAO,CAAA;IACb,IAAI,EAAE,MAAM,CAAA;CACb;AAED,aAAK,gBAAgB,GAAG,qBAAqB,CAAA"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/store/entities/index.ts"],"names":[],"mappings":";;;;;;;;AAIA,wBAGE"}
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
import { Reducer } from "redux";
|
|
2
|
-
import { ApiActions } from "../../actions";
|
|
3
|
-
import type { ApiEntities } from "../../schema";
|
|
4
|
-
declare const makeEntityReducer: <RawName extends keyof ApiEntities, OutType = ApiEntities[RawName]>(name: RawName) => Reducer<OutType, ApiActions>;
|
|
5
|
-
export default makeEntityReducer;
|
|
6
|
-
//# sourceMappingURL=makeEntityReducer.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"makeEntityReducer.d.ts","sourceRoot":"","sources":["../../../src/store/entities/makeEntityReducer.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,OAAO,CAAA;AAE/B,OAAO,EAAE,UAAU,EAAE,sBAAiB;AACtC,OAAO,KAAK,EAAE,WAAW,EAAE,qBAAgB;AAU3C,QAAA,MAAM,iBAAiB,oHA+BtB,CAAA;AAED,eAAe,iBAAiB,CAAA"}
|
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
import { ApiActions } from "../../actions";
|
|
2
|
-
import { Store } from "./..";
|
|
3
|
-
declare const errorsReducer: (state: Store["errors"] | Record<string, never>, action: ApiActions) => Store["errors"] | Record<string, never>;
|
|
4
|
-
export default errorsReducer;
|
|
5
|
-
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/store/errors/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,sBAAiB;AACtC,OAAO,EAAE,KAAK,EAAE,aAAe;AAE/B,QAAA,MAAM,aAAa,UACV,KAAK,CAAC,QAAQ,CAAC,GAAG,OAAO,MAAM,EAAE,KAAK,CAAC,UACtC,UAAU,KACjB,KAAK,CAAC,QAAQ,CAAC,GAAG,OAAO,MAAM,EAAE,KAAK,CAwBxC,CAAA;AAED,eAAe,aAAa,CAAA"}
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
import { Reducer } from "redux";
|
|
2
|
-
import { ApiActions } from "../../actions";
|
|
3
|
-
import type { ApiErrors } from "../../schema";
|
|
4
|
-
declare const makeErrorReducer: <RawName extends keyof import("../../schema").ApiQueries, OutType = ApiErrors[RawName]>(name: RawName) => Reducer<OutType, ApiActions>;
|
|
5
|
-
export default makeErrorReducer;
|
|
6
|
-
//# sourceMappingURL=makeErrorReducer.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"makeErrorReducer.d.ts","sourceRoot":"","sources":["../../../src/store/errors/makeErrorReducer.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,OAAO,CAAA;AAE/B,OAAO,EAAE,UAAU,EAAE,sBAAiB;AACtC,OAAO,KAAK,EAAE,SAAS,EAAE,qBAAgB;AAMzC,QAAA,MAAM,gBAAgB,wIAyBrB,CAAA;AAED,eAAe,gBAAgB,CAAA"}
|
package/types/store/index.d.ts
DELETED
|
@@ -1,32 +0,0 @@
|
|
|
1
|
-
import type { ApiEntities, ApiErrors, ApiQueries, ApiResponses } from "../schema";
|
|
2
|
-
export declare type Store = {
|
|
3
|
-
entities: ApiEntities;
|
|
4
|
-
queries: ApiQueries;
|
|
5
|
-
responses: ApiResponses;
|
|
6
|
-
errors: ApiErrors;
|
|
7
|
-
};
|
|
8
|
-
declare const store: import("redux").Store<import("redux").EmptyObject & {
|
|
9
|
-
entities: import("redux").CombinedState<{
|
|
10
|
-
product: any;
|
|
11
|
-
variant: any;
|
|
12
|
-
}>;
|
|
13
|
-
responses: import("redux").CombinedState<{
|
|
14
|
-
affiliateUrl: any;
|
|
15
|
-
analyticsTrack: any;
|
|
16
|
-
retailPagePriceHistory: any;
|
|
17
|
-
productDocumentsByRetailPageUrls: any;
|
|
18
|
-
productDocumentsByProductIds: any;
|
|
19
|
-
searchSuggestionList: any;
|
|
20
|
-
searchList: any;
|
|
21
|
-
retailPageInfo: any;
|
|
22
|
-
retailPagePricing: any;
|
|
23
|
-
topProductDocumentList: any;
|
|
24
|
-
}>;
|
|
25
|
-
errors: never;
|
|
26
|
-
}, {
|
|
27
|
-
type: "response_arrived";
|
|
28
|
-
} & {
|
|
29
|
-
response: import("../schema").Api;
|
|
30
|
-
}>;
|
|
31
|
-
export default store;
|
|
32
|
-
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/store/index.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAE,WAAW,EAAE,SAAS,EAAE,UAAU,EAAE,YAAY,EAAE,kBAAgB;AAQhF,oBAAY,KAAK,GAAG;IAClB,QAAQ,EAAE,WAAW,CAAA;IACrB,OAAO,EAAE,UAAU,CAAA;IACnB,SAAS,EAAE,YAAY,CAAA;IACvB,MAAM,EAAE,SAAS,CAAA;CAClB,CAAA;AAQD,QAAA,MAAM,KAAK;;;;;;;;;;;;;;;;;;;;;;EAAwB,CAAA;AAEnC,eAAe,KAAK,CAAA"}
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
declare const _default: import("redux").Reducer<import("redux").CombinedState<{
|
|
2
|
-
affiliateUrl: any;
|
|
3
|
-
analyticsTrack: any;
|
|
4
|
-
retailPagePriceHistory: any;
|
|
5
|
-
productDocumentsByRetailPageUrls: any;
|
|
6
|
-
productDocumentsByProductIds: any;
|
|
7
|
-
searchSuggestionList: any;
|
|
8
|
-
searchList: any;
|
|
9
|
-
retailPageInfo: any;
|
|
10
|
-
retailPagePricing: any;
|
|
11
|
-
topProductDocumentList: any;
|
|
12
|
-
}>, {
|
|
13
|
-
type: "response_arrived";
|
|
14
|
-
} & {
|
|
15
|
-
response: import("../..").Api;
|
|
16
|
-
}>;
|
|
17
|
-
export default _default;
|
|
18
|
-
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/store/responses/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAIA,wBAWE"}
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
import { Reducer } from "redux";
|
|
2
|
-
import { ApiActions } from "../../actions";
|
|
3
|
-
import type { ApiResponses } from "../../schema";
|
|
4
|
-
declare const makeResponseReducer: <RawName extends keyof ApiResponses, OutType = ApiResponses[RawName]>(name: RawName) => Reducer<OutType, ApiActions>;
|
|
5
|
-
export default makeResponseReducer;
|
|
6
|
-
//# sourceMappingURL=makeResponseReducer.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"makeResponseReducer.d.ts","sourceRoot":"","sources":["../../../src/store/responses/makeResponseReducer.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,OAAO,CAAA;AAE/B,OAAO,EAAE,UAAU,EAAE,sBAAiB;AACtC,OAAO,KAAK,EAAE,YAAY,EAAE,qBAAgB;AAM5C,QAAA,MAAM,mBAAmB,sHAyBxB,CAAA;AAED,eAAe,mBAAmB,CAAA"}
|