├── .circleci ├── ci │ ├── build.js │ ├── ci.js │ └── it-tests.js ├── codecov.yml ├── config.yml └── settings.xml ├── .github ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE │ ├── BUG_REPORT.md │ └── FEATURE_REQUEST.md ├── PULL_REQUEST_TEMPLATE.md └── release-drafter.yml ├── .gitignore ├── LICENSE ├── README.md ├── VERSIONS.md ├── all └── pom.xml ├── bundles ├── cif-connector-graphql │ ├── pom.xml │ └── src │ │ ├── main │ │ └── java │ │ │ └── com │ │ │ └── adobe │ │ │ └── cq │ │ │ └── commerce │ │ │ ├── graphql │ │ │ ├── core │ │ │ │ ├── GraphqlProductViewHandler.java │ │ │ │ └── MagentoProduct.java │ │ │ ├── magento │ │ │ │ ├── GraphqlDataService.java │ │ │ │ ├── GraphqlDataServiceConfiguration.java │ │ │ │ ├── GraphqlDataServiceImpl.java │ │ │ │ └── GraphqlQueries.java │ │ │ ├── resource │ │ │ │ ├── CategoryProductsIterator.java │ │ │ │ ├── CategoryResource.java │ │ │ │ ├── Constants.java │ │ │ │ ├── ErrorResource.java │ │ │ │ ├── GraphqlQueryLanguageProvider.java │ │ │ │ ├── GraphqlResourceProvider.java │ │ │ │ ├── GraphqlResourceProviderFactory.java │ │ │ │ ├── ProductResource.java │ │ │ │ ├── ResourceMapper.java │ │ │ │ ├── RootCategoryResource.java │ │ │ │ └── SyntheticImageResource.java │ │ │ └── search │ │ │ │ └── CatalogSearchSupport.java │ │ │ ├── gui │ │ │ └── components │ │ │ │ ├── common │ │ │ │ ├── cifcategoryfield │ │ │ │ │ └── Initializer.java │ │ │ │ └── cifproductfield │ │ │ │ │ ├── Initializer.java │ │ │ │ │ └── impl │ │ │ │ │ ├── ChildrenDataSourceServlet.java │ │ │ │ │ └── SearchDataSourceServlet.java │ │ │ │ └── configuration │ │ │ │ ├── ConfigurationColumnPreview.java │ │ │ │ ├── ConfigurationColumnViewItem.java │ │ │ │ ├── package-info.java │ │ │ │ └── servlets │ │ │ │ └── ConfigurationInheritanceServlet.java │ │ │ ├── omnisearch │ │ │ └── ProductsSuggestionOmniSearchHandler.java │ │ │ ├── postprocessor │ │ │ └── MultiFieldDropTargetPostProcessor.java │ │ │ ├── renderconditions │ │ │ ├── IsProductDetailPageServlet.java │ │ │ └── IsProductListPageServlet.java │ │ │ └── utils │ │ │ └── ConfigInheritance.java │ │ └── test │ │ ├── java │ │ └── com │ │ │ └── adobe │ │ │ └── cq │ │ │ └── commerce │ │ │ ├── graphql │ │ │ ├── core │ │ │ │ ├── GraphqlProductViewHandlerTest.java │ │ │ │ └── SyntheticResourceWithProperties.java │ │ │ ├── magento │ │ │ │ ├── GraphqlAemContext.java │ │ │ │ ├── GraphqlDataServiceImplTest.java │ │ │ │ └── MockGraphqlDataServiceConfiguration.java │ │ │ ├── resource │ │ │ │ ├── CategoryProductsIteratorTest.java │ │ │ │ ├── GraphqlQueryLanguageProviderTest.java │ │ │ │ ├── GraphqlResourceProviderFactoryTest.java │ │ │ │ └── GraphqlResourceProviderTest.java │ │ │ └── testing │ │ │ │ └── Utils.java │ │ │ ├── gui │ │ │ └── components │ │ │ │ ├── common │ │ │ │ ├── FieldInitializerTest.java │ │ │ │ ├── cifcategoryfield │ │ │ │ │ └── InitializerTest.java │ │ │ │ └── cifproductfield │ │ │ │ │ ├── InitializerTest.java │ │ │ │ │ └── impl │ │ │ │ │ ├── ChildrenDataSourceServletTest.java │ │ │ │ │ └── SearchDataSourceServletTest.java │ │ │ │ └── configuration │ │ │ │ ├── ConfigurationColumnPreviewTest.java │ │ │ │ ├── ConfigurationColumnViewItemTest.java │ │ │ │ └── servlets │ │ │ │ └── ConfigurationInheritanceServletTest.java │ │ │ ├── omnisearch │ │ │ └── ProductsSuggestionOmniSearchHandlerTest.java │ │ │ ├── postprocessor │ │ │ └── MultiFieldDropTargetPostProcessorTest.java │ │ │ └── renderconditions │ │ │ ├── IsProductDetailPageServletTest.java │ │ │ └── IsProductListPageServletTest.java │ │ └── resources │ │ ├── commerce-categories-omnisearch-request.json │ │ ├── commerce-products-omni-search-request.json │ │ ├── commerce-products-omni-search-request2.json │ │ ├── commerce-products-omni-search-request3.json │ │ ├── context │ │ ├── drop-target-post-processor.json │ │ ├── graphql-client-adapter-factory-context.json │ │ ├── graphql-resource-provider-context.json │ │ ├── is-product-detail-page-servlet-test-context.json │ │ ├── is-product-list-page-servlet-test-context.json │ │ ├── jcr-conf-console.json │ │ ├── jcr-conf-inheritance.json │ │ └── jcr-conf.json │ │ ├── graphql-queries │ │ ├── category-products.txt │ │ ├── category-search.txt │ │ ├── categorylist-by-urlkey.txt │ │ ├── product-by-sku.txt │ │ ├── products-empty-search-for-category.txt │ │ ├── products-empty-search.txt │ │ ├── products-search-for-category.txt │ │ └── products-search.txt │ │ ├── logback-test.xml │ │ ├── magento-graphql-category-products-page1.json │ │ ├── magento-graphql-category-products-page2.json │ │ ├── magento-graphql-category-products-page3.json │ │ ├── magento-graphql-category-products.json │ │ ├── magento-graphql-category-search.json │ │ ├── magento-graphql-categorylist-coats.json │ │ ├── magento-graphql-categorylist-dresses.json │ │ ├── magento-graphql-categorylist-empty.json │ │ ├── magento-graphql-categorylist-root.json │ │ ├── magento-graphql-error.json │ │ ├── magento-graphql-no-product.json │ │ ├── magento-graphql-other-product.json │ │ ├── magento-graphql-product.json │ │ ├── magento-graphql-products-search.json │ │ ├── magento-graphql-simple-product.json │ │ ├── magento-graphql-simple-products.json │ │ ├── sample-graphql-generic-response.json │ │ └── test-queries │ │ ├── README.md │ │ └── graphql-requests.log └── cif-virtual-catalog │ ├── pom.xml │ └── src │ ├── main │ └── java │ │ └── com │ │ └── adobe │ │ └── cq │ │ └── commerce │ │ └── virtual │ │ └── catalog │ │ ├── admin │ │ └── impl │ │ │ └── CatalogIdentifierDatasource.java │ │ ├── data │ │ ├── CatalogDataResourceProviderFactory.java │ │ ├── CatalogDataResourceProviderManager.java │ │ ├── CatalogIdentifier.java │ │ ├── CatalogIdentifierService.java │ │ ├── Constants.java │ │ └── impl │ │ │ ├── CatalogDataResourceProviderManagerImpl.java │ │ │ ├── CatalogIdentifierServiceImpl.java │ │ │ └── ProductBindingCreator.java │ │ └── models │ │ ├── ConfigurationReference.java │ │ └── impl │ │ └── ConfigurationReferenceImpl.java │ └── test │ ├── java │ └── com │ │ └── adobe │ │ └── cq │ │ └── commerce │ │ └── virtual │ │ └── catalog │ │ ├── admin │ │ └── impl │ │ │ └── CatalogIdentifierDatasourceTest.java │ │ ├── data │ │ └── impl │ │ │ ├── CatalogDataProviderManagerConfTest.java │ │ │ ├── CatalogDataResourceProviderManagerImplTest.java │ │ │ └── ProductBindingCreatorTest.java │ │ └── models │ │ └── impl │ │ └── ConfigurationReferenceTest.java │ └── resources │ ├── context │ ├── jcr-catalog-bindings.json │ ├── jcr-cifrootfolder-references.json │ ├── jcr-conf-page.json │ ├── jcr-conf.json │ ├── jcr-dataroots.json │ └── jcr-wrong-conf.json │ ├── nodetypes │ └── cq-page.cnd │ └── simplelogger.properties ├── content ├── cif-connector │ ├── pom.xml │ ├── src │ │ └── main │ │ │ └── content │ │ │ ├── META-INF │ │ │ └── vault │ │ │ │ └── filter.xml │ │ │ └── jcr_root │ │ │ ├── apps │ │ │ └── commerce │ │ │ │ └── scaffolding │ │ │ │ └── product │ │ │ │ └── .content.xml │ │ │ └── libs │ │ │ ├── cif │ │ │ └── .content.xml │ │ │ ├── commerce │ │ │ ├── config │ │ │ │ └── org.apache.sling.serviceusermapping.impl.ServiceUserMapperImpl.amended-cif-omnisearch.xml │ │ │ └── gui │ │ │ │ ├── clientlibs │ │ │ │ └── configbrowser │ │ │ │ │ ├── .content.xml │ │ │ │ │ ├── js.txt │ │ │ │ │ └── js │ │ │ │ │ ├── actions │ │ │ │ │ └── delete.js │ │ │ │ │ └── renderconditions │ │ │ │ │ └── renderconditions.js │ │ │ │ ├── components │ │ │ │ ├── authoring │ │ │ │ │ └── editor │ │ │ │ │ │ └── pagepreview │ │ │ │ │ │ └── clientlibs │ │ │ │ │ │ ├── .content.xml │ │ │ │ │ │ ├── js.txt │ │ │ │ │ │ └── pagepreview.js │ │ │ │ ├── common │ │ │ │ │ ├── cifcategoryfield │ │ │ │ │ │ ├── .content.xml │ │ │ │ │ │ ├── CIFCategoryFieldHelper.java │ │ │ │ │ │ ├── carditem │ │ │ │ │ │ │ └── carditem.html │ │ │ │ │ │ ├── cifcategoryfield.html │ │ │ │ │ │ ├── clientlibs │ │ │ │ │ │ │ ├── .content.xml │ │ │ │ │ │ │ ├── cifcategorypicker.js │ │ │ │ │ │ │ └── js.txt │ │ │ │ │ │ ├── columnitem │ │ │ │ │ │ │ └── columnitem.html │ │ │ │ │ │ ├── columnitempreview │ │ │ │ │ │ │ ├── ColumnItemPreviewHelper.java │ │ │ │ │ │ │ └── columnitempreview.html │ │ │ │ │ │ ├── datasources │ │ │ │ │ │ │ └── children │ │ │ │ │ │ │ │ └── children.java │ │ │ │ │ │ └── listitem │ │ │ │ │ │ │ └── listitem.html │ │ │ │ │ ├── cifpicker │ │ │ │ │ │ └── clientlibs │ │ │ │ │ │ │ ├── .content.xml │ │ │ │ │ │ │ ├── cifpicker.js │ │ │ │ │ │ │ └── js.txt │ │ │ │ │ └── cifproductfield │ │ │ │ │ │ ├── .content.xml │ │ │ │ │ │ ├── CIFProductFieldHelper.java │ │ │ │ │ │ ├── ViewHelper.java │ │ │ │ │ │ ├── carditem │ │ │ │ │ │ └── carditem.html │ │ │ │ │ │ ├── cifproductfield.html │ │ │ │ │ │ ├── clientlibs │ │ │ │ │ │ ├── .content.xml │ │ │ │ │ │ ├── cifproductpicker.js │ │ │ │ │ │ └── js.txt │ │ │ │ │ │ ├── columnitem │ │ │ │ │ │ └── columnitem.html │ │ │ │ │ │ ├── columnitempreview │ │ │ │ │ │ ├── ColumnItemPreviewHelper.java │ │ │ │ │ │ └── columnitempreview.html │ │ │ │ │ │ ├── listitem │ │ │ │ │ │ └── listitem.html │ │ │ │ │ │ └── suggestion │ │ │ │ │ │ └── suggestion.jsp │ │ │ │ └── configuration │ │ │ │ │ ├── columnpreview │ │ │ │ │ └── columnpreview.html │ │ │ │ │ ├── columnviewitem │ │ │ │ │ └── columnviewitem.html │ │ │ │ │ └── page │ │ │ │ │ ├── .content.xml │ │ │ │ │ ├── _cq_dialog │ │ │ │ │ └── .content.xml │ │ │ │ │ ├── clientlibs │ │ │ │ │ ├── .content.xml │ │ │ │ │ ├── css.txt │ │ │ │ │ ├── css │ │ │ │ │ │ └── configurationpage.css │ │ │ │ │ ├── js.txt │ │ │ │ │ └── js │ │ │ │ │ │ └── configurationpage.js │ │ │ │ │ └── template │ │ │ │ │ └── .content.xml │ │ │ │ └── content │ │ │ │ ├── common │ │ │ │ ├── cifcategoryfield │ │ │ │ │ ├── .content.xml │ │ │ │ │ ├── columnpreview │ │ │ │ │ │ └── .content.xml │ │ │ │ │ └── picker │ │ │ │ │ │ └── .content.xml │ │ │ │ └── cifproductfield │ │ │ │ │ ├── .content.xml │ │ │ │ │ ├── columnpreview │ │ │ │ │ └── .content.xml │ │ │ │ │ ├── picker │ │ │ │ │ └── .content.xml │ │ │ │ │ ├── pickerpage │ │ │ │ │ └── .content.xml │ │ │ │ │ └── suggestion │ │ │ │ │ └── .content.xml │ │ │ │ ├── configuration │ │ │ │ ├── .content.xml │ │ │ │ └── createconfiguration │ │ │ │ │ └── .content.xml │ │ │ │ └── products │ │ │ │ └── _jcr_content │ │ │ │ └── views │ │ │ │ └── column │ │ │ │ └── .content.xml │ │ │ ├── cq │ │ │ └── core │ │ │ │ └── content │ │ │ │ └── nav │ │ │ │ └── tools │ │ │ │ └── cloudservices │ │ │ │ └── cifconfig │ │ │ │ └── .content.xml │ │ │ ├── dam │ │ │ └── content │ │ │ │ └── schemaeditors │ │ │ │ └── forms │ │ │ │ └── default │ │ │ │ └── items │ │ │ │ └── tabs │ │ │ │ └── items │ │ │ │ └── tab6 │ │ │ │ └── .content.xml │ │ │ └── wcm │ │ │ └── core │ │ │ └── content │ │ │ └── editor │ │ │ └── _jcr_content │ │ │ └── content │ │ │ └── items │ │ │ └── content.xml │ └── tests │ │ ├── .prettierignore │ │ ├── .prettierrc │ │ ├── karma.conf.js │ │ ├── package-lock.json │ │ ├── package.json │ │ └── src │ │ ├── CIF.js │ │ └── libs │ │ └── commerce │ │ └── gui │ │ └── components │ │ ├── authoring │ │ └── editor │ │ │ └── pagepreview │ │ │ └── PagePreviewTest.js │ │ └── common │ │ ├── cifcategoryfield │ │ └── CifCategoryPickerTest.js │ │ ├── cifpicker │ │ └── CifPickerTest.js │ │ └── cifproductfield │ │ └── CifProductPickerTest.js └── cif-virtual-catalog │ ├── pom.xml │ └── src │ └── main │ └── content │ ├── META-INF │ └── vault │ │ └── filter.xml │ └── jcr_root │ ├── _oak_index │ └── .content.xml │ ├── apps │ └── commerce │ │ └── gui │ │ └── content │ │ └── products │ │ └── folderproperties │ │ └── .content.xml │ └── libs │ └── commerce │ ├── components │ ├── ciffolder │ │ ├── .content.xml │ │ ├── _cq_dialog │ │ │ └── .content.xml │ │ └── dialog.xml │ ├── cifimage │ │ └── cifimage.html │ ├── cifrendercondition │ │ └── cifrendercondition.jsp │ └── cifrootfolder │ │ ├── .content.xml │ │ ├── _cq_dialog │ │ └── .content.xml │ │ ├── dialog.xml │ │ ├── include │ │ └── include.jsp │ │ └── reference │ │ └── reference.html │ ├── config │ ├── org.apache.sling.jcr.repoinit.RepositoryInitializer-default.config │ └── org.apache.sling.serviceusermapping.impl.ServiceUserMapperImpl.amended-virtual-commerce.xml │ └── gui │ ├── components │ ├── admin │ │ ├── folder │ │ │ └── include │ │ │ │ └── include.jsp │ │ └── products │ │ │ ├── bindproducttreewizard │ │ │ ├── clientlibs │ │ │ │ ├── .content.xml │ │ │ │ ├── bindproducttreewizard.css │ │ │ │ ├── bindproducttreewizard.js │ │ │ │ ├── css.txt │ │ │ │ └── js.txt │ │ │ └── commerceproviderdatasource │ │ │ │ └── commerceproviderdatasource.jsp │ │ │ ├── childcard │ │ │ └── childcard.jsp │ │ │ ├── childcolumnitem │ │ │ └── childcolumnitem.jsp │ │ │ ├── childrow │ │ │ └── childrow.jsp │ │ │ └── products.jsp │ ├── authoring │ │ └── assetfinder │ │ │ └── product │ │ │ └── clientlibs │ │ │ └── ProductAssetPanel.js │ └── common │ │ └── productsearchdatasource │ │ └── productsearchdatasource.jsp │ └── content │ ├── common │ └── productfield │ │ └── picker │ │ └── search │ │ ├── .content.xml │ │ └── views │ │ └── card │ │ └── datasource │ │ └── .content.xml │ └── products │ ├── .content.xml │ ├── bindproducttreewizard │ └── .content.xml │ ├── folderproperties │ └── _jcr_content │ │ ├── content │ │ └── items │ │ │ └── ref │ │ │ └── .content.xml │ │ └── editcondition.xml │ └── properties │ └── _jcr_content │ └── editcondition │ └── .content.xml ├── it ├── content │ ├── pom.xml │ └── src │ │ └── main │ │ └── content │ │ ├── META-INF │ │ └── vault │ │ │ └── filter.xml │ │ └── jcr_root │ │ ├── apps │ │ └── cloudcommerce │ │ │ └── config │ │ │ ├── com.adobe.cq.commerce.graphql.client.impl.GraphqlClientImpl-default.config │ │ │ ├── com.adobe.cq.commerce.graphql.magento.GraphqlDataServiceImpl-default.config │ │ │ └── org.apache.sling.commons.log.LogManager.factory.config-commerce.xml │ │ ├── conf │ │ └── testproject │ │ │ └── settings │ │ │ └── wcm │ │ │ └── templates │ │ │ ├── category-page │ │ │ ├── .content.xml │ │ │ └── structure │ │ │ │ └── .content.xml │ │ │ └── product-page │ │ │ ├── .content.xml │ │ │ └── structure │ │ │ └── .content.xml │ │ └── content │ │ ├── dam │ │ └── ciftest │ │ │ ├── .content.xml │ │ │ ├── _jcr_content │ │ │ ├── folderThumbnail │ │ │ └── folderThumbnail.dir │ │ │ │ └── .content.xml │ │ │ └── ciftest.jpg │ │ │ ├── .content.xml │ │ │ └── _jcr_content │ │ │ └── renditions │ │ │ ├── cq5dam.thumbnail.140.100.png │ │ │ ├── cq5dam.thumbnail.140.100.png.dir │ │ │ └── .content.xml │ │ │ ├── cq5dam.thumbnail.319.319.png │ │ │ ├── cq5dam.thumbnail.319.319.png.dir │ │ │ └── .content.xml │ │ │ ├── cq5dam.thumbnail.48.48.png │ │ │ ├── cq5dam.thumbnail.48.48.png.dir │ │ │ └── .content.xml │ │ │ ├── cq5dam.web.1280.1280.jpeg │ │ │ ├── cq5dam.web.1280.1280.jpeg.dir │ │ │ └── .content.xml │ │ │ ├── original │ │ │ └── original.dir │ │ │ └── .content.xml │ │ └── testproject │ │ ├── testpdp │ │ └── .content.xml │ │ └── testplp │ │ └── .content.xml ├── http │ ├── .gitignore │ ├── pom.xml │ └── src │ │ └── test │ │ ├── java │ │ └── com │ │ │ └── adobe │ │ │ └── cq │ │ │ └── commerce │ │ │ └── it │ │ │ └── http │ │ │ ├── AssetMetadataEditorExtensionIT.java │ │ │ ├── CommerceTestBase.java │ │ │ ├── GraphqlOSGiConfig.java │ │ │ ├── GraphqlProductConsoleIT.java │ │ │ └── PageEditorExtensionIT.java │ │ └── resources │ │ └── com │ │ └── adobe │ │ └── cq │ │ └── commerce │ │ └── it │ │ └── http │ │ ├── identity.jks │ │ ├── magento-graphql-category-products.json │ │ ├── magento-graphql-categorylist-coats.json │ │ ├── magento-graphql-categorylist-empty.json │ │ ├── magento-graphql-categorylist-men.json │ │ ├── magento-graphql-categorylist-root.json │ │ └── magento-graphql-product.json └── mock-server │ ├── pom.xml │ └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── adobe │ │ │ └── cq │ │ │ └── testing │ │ │ └── mockserver │ │ │ ├── MockRequest.java │ │ │ ├── MockResponse.java │ │ │ ├── Request.java │ │ │ ├── RequestResponseRule.java │ │ │ ├── RequestWrapper.java │ │ │ ├── Response.java │ │ │ ├── Rule.java │ │ │ ├── Server.java │ │ │ ├── Servlet.java │ │ │ └── StringComparator.java │ └── resources │ │ └── com │ │ └── adobe │ │ └── cq │ │ └── testing │ │ └── mockserver │ │ ├── identity.jks │ │ └── identity.p12 │ └── test │ └── java │ └── com │ └── adobe │ └── cq │ └── testing │ └── mockserver │ └── junit │ └── ServerRule.java ├── parent ├── eclipse-formatter.xml └── pom.xml └── pom.xml /.circleci/ci/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/.circleci/ci/build.js -------------------------------------------------------------------------------- /.circleci/ci/ci.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/.circleci/ci/ci.js -------------------------------------------------------------------------------- /.circleci/ci/it-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/.circleci/ci/it-tests.js -------------------------------------------------------------------------------- /.circleci/codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/.circleci/codecov.yml -------------------------------------------------------------------------------- /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.circleci/settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/.circleci/settings.xml -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/BUG_REPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/.github/ISSUE_TEMPLATE/BUG_REPORT.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/FEATURE_REQUEST.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/.github/ISSUE_TEMPLATE/FEATURE_REQUEST.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/release-drafter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/.github/release-drafter.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/README.md -------------------------------------------------------------------------------- /VERSIONS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/VERSIONS.md -------------------------------------------------------------------------------- /all/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/all/pom.xml -------------------------------------------------------------------------------- /bundles/cif-connector-graphql/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/bundles/cif-connector-graphql/pom.xml -------------------------------------------------------------------------------- /bundles/cif-connector-graphql/src/main/java/com/adobe/cq/commerce/graphql/core/GraphqlProductViewHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/bundles/cif-connector-graphql/src/main/java/com/adobe/cq/commerce/graphql/core/GraphqlProductViewHandler.java -------------------------------------------------------------------------------- /bundles/cif-connector-graphql/src/main/java/com/adobe/cq/commerce/graphql/core/MagentoProduct.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/bundles/cif-connector-graphql/src/main/java/com/adobe/cq/commerce/graphql/core/MagentoProduct.java -------------------------------------------------------------------------------- /bundles/cif-connector-graphql/src/main/java/com/adobe/cq/commerce/graphql/magento/GraphqlDataService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/bundles/cif-connector-graphql/src/main/java/com/adobe/cq/commerce/graphql/magento/GraphqlDataService.java -------------------------------------------------------------------------------- /bundles/cif-connector-graphql/src/main/java/com/adobe/cq/commerce/graphql/magento/GraphqlDataServiceConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/bundles/cif-connector-graphql/src/main/java/com/adobe/cq/commerce/graphql/magento/GraphqlDataServiceConfiguration.java -------------------------------------------------------------------------------- /bundles/cif-connector-graphql/src/main/java/com/adobe/cq/commerce/graphql/magento/GraphqlDataServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/bundles/cif-connector-graphql/src/main/java/com/adobe/cq/commerce/graphql/magento/GraphqlDataServiceImpl.java -------------------------------------------------------------------------------- /bundles/cif-connector-graphql/src/main/java/com/adobe/cq/commerce/graphql/magento/GraphqlQueries.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/bundles/cif-connector-graphql/src/main/java/com/adobe/cq/commerce/graphql/magento/GraphqlQueries.java -------------------------------------------------------------------------------- /bundles/cif-connector-graphql/src/main/java/com/adobe/cq/commerce/graphql/resource/CategoryProductsIterator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/bundles/cif-connector-graphql/src/main/java/com/adobe/cq/commerce/graphql/resource/CategoryProductsIterator.java -------------------------------------------------------------------------------- /bundles/cif-connector-graphql/src/main/java/com/adobe/cq/commerce/graphql/resource/CategoryResource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/bundles/cif-connector-graphql/src/main/java/com/adobe/cq/commerce/graphql/resource/CategoryResource.java -------------------------------------------------------------------------------- /bundles/cif-connector-graphql/src/main/java/com/adobe/cq/commerce/graphql/resource/Constants.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/bundles/cif-connector-graphql/src/main/java/com/adobe/cq/commerce/graphql/resource/Constants.java -------------------------------------------------------------------------------- /bundles/cif-connector-graphql/src/main/java/com/adobe/cq/commerce/graphql/resource/ErrorResource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/bundles/cif-connector-graphql/src/main/java/com/adobe/cq/commerce/graphql/resource/ErrorResource.java -------------------------------------------------------------------------------- /bundles/cif-connector-graphql/src/main/java/com/adobe/cq/commerce/graphql/resource/GraphqlQueryLanguageProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/bundles/cif-connector-graphql/src/main/java/com/adobe/cq/commerce/graphql/resource/GraphqlQueryLanguageProvider.java -------------------------------------------------------------------------------- /bundles/cif-connector-graphql/src/main/java/com/adobe/cq/commerce/graphql/resource/GraphqlResourceProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/bundles/cif-connector-graphql/src/main/java/com/adobe/cq/commerce/graphql/resource/GraphqlResourceProvider.java -------------------------------------------------------------------------------- /bundles/cif-connector-graphql/src/main/java/com/adobe/cq/commerce/graphql/resource/GraphqlResourceProviderFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/bundles/cif-connector-graphql/src/main/java/com/adobe/cq/commerce/graphql/resource/GraphqlResourceProviderFactory.java -------------------------------------------------------------------------------- /bundles/cif-connector-graphql/src/main/java/com/adobe/cq/commerce/graphql/resource/ProductResource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/bundles/cif-connector-graphql/src/main/java/com/adobe/cq/commerce/graphql/resource/ProductResource.java -------------------------------------------------------------------------------- /bundles/cif-connector-graphql/src/main/java/com/adobe/cq/commerce/graphql/resource/ResourceMapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/bundles/cif-connector-graphql/src/main/java/com/adobe/cq/commerce/graphql/resource/ResourceMapper.java -------------------------------------------------------------------------------- /bundles/cif-connector-graphql/src/main/java/com/adobe/cq/commerce/graphql/resource/RootCategoryResource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/bundles/cif-connector-graphql/src/main/java/com/adobe/cq/commerce/graphql/resource/RootCategoryResource.java -------------------------------------------------------------------------------- /bundles/cif-connector-graphql/src/main/java/com/adobe/cq/commerce/graphql/resource/SyntheticImageResource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/bundles/cif-connector-graphql/src/main/java/com/adobe/cq/commerce/graphql/resource/SyntheticImageResource.java -------------------------------------------------------------------------------- /bundles/cif-connector-graphql/src/main/java/com/adobe/cq/commerce/graphql/search/CatalogSearchSupport.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/bundles/cif-connector-graphql/src/main/java/com/adobe/cq/commerce/graphql/search/CatalogSearchSupport.java -------------------------------------------------------------------------------- /bundles/cif-connector-graphql/src/main/java/com/adobe/cq/commerce/gui/components/common/cifcategoryfield/Initializer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/bundles/cif-connector-graphql/src/main/java/com/adobe/cq/commerce/gui/components/common/cifcategoryfield/Initializer.java -------------------------------------------------------------------------------- /bundles/cif-connector-graphql/src/main/java/com/adobe/cq/commerce/gui/components/common/cifproductfield/Initializer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/bundles/cif-connector-graphql/src/main/java/com/adobe/cq/commerce/gui/components/common/cifproductfield/Initializer.java -------------------------------------------------------------------------------- /bundles/cif-connector-graphql/src/main/java/com/adobe/cq/commerce/gui/components/common/cifproductfield/impl/ChildrenDataSourceServlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/bundles/cif-connector-graphql/src/main/java/com/adobe/cq/commerce/gui/components/common/cifproductfield/impl/ChildrenDataSourceServlet.java -------------------------------------------------------------------------------- /bundles/cif-connector-graphql/src/main/java/com/adobe/cq/commerce/gui/components/common/cifproductfield/impl/SearchDataSourceServlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/bundles/cif-connector-graphql/src/main/java/com/adobe/cq/commerce/gui/components/common/cifproductfield/impl/SearchDataSourceServlet.java -------------------------------------------------------------------------------- /bundles/cif-connector-graphql/src/main/java/com/adobe/cq/commerce/gui/components/configuration/ConfigurationColumnPreview.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/bundles/cif-connector-graphql/src/main/java/com/adobe/cq/commerce/gui/components/configuration/ConfigurationColumnPreview.java -------------------------------------------------------------------------------- /bundles/cif-connector-graphql/src/main/java/com/adobe/cq/commerce/gui/components/configuration/ConfigurationColumnViewItem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/bundles/cif-connector-graphql/src/main/java/com/adobe/cq/commerce/gui/components/configuration/ConfigurationColumnViewItem.java -------------------------------------------------------------------------------- /bundles/cif-connector-graphql/src/main/java/com/adobe/cq/commerce/gui/components/configuration/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/bundles/cif-connector-graphql/src/main/java/com/adobe/cq/commerce/gui/components/configuration/package-info.java -------------------------------------------------------------------------------- /bundles/cif-connector-graphql/src/main/java/com/adobe/cq/commerce/gui/components/configuration/servlets/ConfigurationInheritanceServlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/bundles/cif-connector-graphql/src/main/java/com/adobe/cq/commerce/gui/components/configuration/servlets/ConfigurationInheritanceServlet.java -------------------------------------------------------------------------------- /bundles/cif-connector-graphql/src/main/java/com/adobe/cq/commerce/omnisearch/ProductsSuggestionOmniSearchHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/bundles/cif-connector-graphql/src/main/java/com/adobe/cq/commerce/omnisearch/ProductsSuggestionOmniSearchHandler.java -------------------------------------------------------------------------------- /bundles/cif-connector-graphql/src/main/java/com/adobe/cq/commerce/postprocessor/MultiFieldDropTargetPostProcessor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/bundles/cif-connector-graphql/src/main/java/com/adobe/cq/commerce/postprocessor/MultiFieldDropTargetPostProcessor.java -------------------------------------------------------------------------------- /bundles/cif-connector-graphql/src/main/java/com/adobe/cq/commerce/renderconditions/IsProductDetailPageServlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/bundles/cif-connector-graphql/src/main/java/com/adobe/cq/commerce/renderconditions/IsProductDetailPageServlet.java -------------------------------------------------------------------------------- /bundles/cif-connector-graphql/src/main/java/com/adobe/cq/commerce/renderconditions/IsProductListPageServlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/bundles/cif-connector-graphql/src/main/java/com/adobe/cq/commerce/renderconditions/IsProductListPageServlet.java -------------------------------------------------------------------------------- /bundles/cif-connector-graphql/src/main/java/com/adobe/cq/commerce/utils/ConfigInheritance.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/bundles/cif-connector-graphql/src/main/java/com/adobe/cq/commerce/utils/ConfigInheritance.java -------------------------------------------------------------------------------- /bundles/cif-connector-graphql/src/test/java/com/adobe/cq/commerce/graphql/core/GraphqlProductViewHandlerTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/bundles/cif-connector-graphql/src/test/java/com/adobe/cq/commerce/graphql/core/GraphqlProductViewHandlerTest.java -------------------------------------------------------------------------------- /bundles/cif-connector-graphql/src/test/java/com/adobe/cq/commerce/graphql/core/SyntheticResourceWithProperties.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/bundles/cif-connector-graphql/src/test/java/com/adobe/cq/commerce/graphql/core/SyntheticResourceWithProperties.java -------------------------------------------------------------------------------- /bundles/cif-connector-graphql/src/test/java/com/adobe/cq/commerce/graphql/magento/GraphqlAemContext.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/bundles/cif-connector-graphql/src/test/java/com/adobe/cq/commerce/graphql/magento/GraphqlAemContext.java -------------------------------------------------------------------------------- /bundles/cif-connector-graphql/src/test/java/com/adobe/cq/commerce/graphql/magento/GraphqlDataServiceImplTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/bundles/cif-connector-graphql/src/test/java/com/adobe/cq/commerce/graphql/magento/GraphqlDataServiceImplTest.java -------------------------------------------------------------------------------- /bundles/cif-connector-graphql/src/test/java/com/adobe/cq/commerce/graphql/magento/MockGraphqlDataServiceConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/bundles/cif-connector-graphql/src/test/java/com/adobe/cq/commerce/graphql/magento/MockGraphqlDataServiceConfiguration.java -------------------------------------------------------------------------------- /bundles/cif-connector-graphql/src/test/java/com/adobe/cq/commerce/graphql/resource/CategoryProductsIteratorTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/bundles/cif-connector-graphql/src/test/java/com/adobe/cq/commerce/graphql/resource/CategoryProductsIteratorTest.java -------------------------------------------------------------------------------- /bundles/cif-connector-graphql/src/test/java/com/adobe/cq/commerce/graphql/resource/GraphqlQueryLanguageProviderTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/bundles/cif-connector-graphql/src/test/java/com/adobe/cq/commerce/graphql/resource/GraphqlQueryLanguageProviderTest.java -------------------------------------------------------------------------------- /bundles/cif-connector-graphql/src/test/java/com/adobe/cq/commerce/graphql/resource/GraphqlResourceProviderFactoryTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/bundles/cif-connector-graphql/src/test/java/com/adobe/cq/commerce/graphql/resource/GraphqlResourceProviderFactoryTest.java -------------------------------------------------------------------------------- /bundles/cif-connector-graphql/src/test/java/com/adobe/cq/commerce/graphql/resource/GraphqlResourceProviderTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/bundles/cif-connector-graphql/src/test/java/com/adobe/cq/commerce/graphql/resource/GraphqlResourceProviderTest.java -------------------------------------------------------------------------------- /bundles/cif-connector-graphql/src/test/java/com/adobe/cq/commerce/graphql/testing/Utils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/bundles/cif-connector-graphql/src/test/java/com/adobe/cq/commerce/graphql/testing/Utils.java -------------------------------------------------------------------------------- /bundles/cif-connector-graphql/src/test/java/com/adobe/cq/commerce/gui/components/common/FieldInitializerTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/bundles/cif-connector-graphql/src/test/java/com/adobe/cq/commerce/gui/components/common/FieldInitializerTest.java -------------------------------------------------------------------------------- /bundles/cif-connector-graphql/src/test/java/com/adobe/cq/commerce/gui/components/common/cifcategoryfield/InitializerTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/bundles/cif-connector-graphql/src/test/java/com/adobe/cq/commerce/gui/components/common/cifcategoryfield/InitializerTest.java -------------------------------------------------------------------------------- /bundles/cif-connector-graphql/src/test/java/com/adobe/cq/commerce/gui/components/common/cifproductfield/InitializerTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/bundles/cif-connector-graphql/src/test/java/com/adobe/cq/commerce/gui/components/common/cifproductfield/InitializerTest.java -------------------------------------------------------------------------------- /bundles/cif-connector-graphql/src/test/java/com/adobe/cq/commerce/gui/components/common/cifproductfield/impl/ChildrenDataSourceServletTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/bundles/cif-connector-graphql/src/test/java/com/adobe/cq/commerce/gui/components/common/cifproductfield/impl/ChildrenDataSourceServletTest.java -------------------------------------------------------------------------------- /bundles/cif-connector-graphql/src/test/java/com/adobe/cq/commerce/gui/components/common/cifproductfield/impl/SearchDataSourceServletTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/bundles/cif-connector-graphql/src/test/java/com/adobe/cq/commerce/gui/components/common/cifproductfield/impl/SearchDataSourceServletTest.java -------------------------------------------------------------------------------- /bundles/cif-connector-graphql/src/test/java/com/adobe/cq/commerce/gui/components/configuration/ConfigurationColumnPreviewTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/bundles/cif-connector-graphql/src/test/java/com/adobe/cq/commerce/gui/components/configuration/ConfigurationColumnPreviewTest.java -------------------------------------------------------------------------------- /bundles/cif-connector-graphql/src/test/java/com/adobe/cq/commerce/gui/components/configuration/ConfigurationColumnViewItemTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/bundles/cif-connector-graphql/src/test/java/com/adobe/cq/commerce/gui/components/configuration/ConfigurationColumnViewItemTest.java -------------------------------------------------------------------------------- /bundles/cif-connector-graphql/src/test/java/com/adobe/cq/commerce/gui/components/configuration/servlets/ConfigurationInheritanceServletTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/bundles/cif-connector-graphql/src/test/java/com/adobe/cq/commerce/gui/components/configuration/servlets/ConfigurationInheritanceServletTest.java -------------------------------------------------------------------------------- /bundles/cif-connector-graphql/src/test/java/com/adobe/cq/commerce/omnisearch/ProductsSuggestionOmniSearchHandlerTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/bundles/cif-connector-graphql/src/test/java/com/adobe/cq/commerce/omnisearch/ProductsSuggestionOmniSearchHandlerTest.java -------------------------------------------------------------------------------- /bundles/cif-connector-graphql/src/test/java/com/adobe/cq/commerce/postprocessor/MultiFieldDropTargetPostProcessorTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/bundles/cif-connector-graphql/src/test/java/com/adobe/cq/commerce/postprocessor/MultiFieldDropTargetPostProcessorTest.java -------------------------------------------------------------------------------- /bundles/cif-connector-graphql/src/test/java/com/adobe/cq/commerce/renderconditions/IsProductDetailPageServletTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/bundles/cif-connector-graphql/src/test/java/com/adobe/cq/commerce/renderconditions/IsProductDetailPageServletTest.java -------------------------------------------------------------------------------- /bundles/cif-connector-graphql/src/test/java/com/adobe/cq/commerce/renderconditions/IsProductListPageServletTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/bundles/cif-connector-graphql/src/test/java/com/adobe/cq/commerce/renderconditions/IsProductListPageServletTest.java -------------------------------------------------------------------------------- /bundles/cif-connector-graphql/src/test/resources/commerce-categories-omnisearch-request.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/bundles/cif-connector-graphql/src/test/resources/commerce-categories-omnisearch-request.json -------------------------------------------------------------------------------- /bundles/cif-connector-graphql/src/test/resources/commerce-products-omni-search-request.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/bundles/cif-connector-graphql/src/test/resources/commerce-products-omni-search-request.json -------------------------------------------------------------------------------- /bundles/cif-connector-graphql/src/test/resources/commerce-products-omni-search-request2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/bundles/cif-connector-graphql/src/test/resources/commerce-products-omni-search-request2.json -------------------------------------------------------------------------------- /bundles/cif-connector-graphql/src/test/resources/commerce-products-omni-search-request3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/bundles/cif-connector-graphql/src/test/resources/commerce-products-omni-search-request3.json -------------------------------------------------------------------------------- /bundles/cif-connector-graphql/src/test/resources/context/drop-target-post-processor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/bundles/cif-connector-graphql/src/test/resources/context/drop-target-post-processor.json -------------------------------------------------------------------------------- /bundles/cif-connector-graphql/src/test/resources/context/graphql-client-adapter-factory-context.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/bundles/cif-connector-graphql/src/test/resources/context/graphql-client-adapter-factory-context.json -------------------------------------------------------------------------------- /bundles/cif-connector-graphql/src/test/resources/context/graphql-resource-provider-context.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/bundles/cif-connector-graphql/src/test/resources/context/graphql-resource-provider-context.json -------------------------------------------------------------------------------- /bundles/cif-connector-graphql/src/test/resources/context/is-product-detail-page-servlet-test-context.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/bundles/cif-connector-graphql/src/test/resources/context/is-product-detail-page-servlet-test-context.json -------------------------------------------------------------------------------- /bundles/cif-connector-graphql/src/test/resources/context/is-product-list-page-servlet-test-context.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/bundles/cif-connector-graphql/src/test/resources/context/is-product-list-page-servlet-test-context.json -------------------------------------------------------------------------------- /bundles/cif-connector-graphql/src/test/resources/context/jcr-conf-console.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/bundles/cif-connector-graphql/src/test/resources/context/jcr-conf-console.json -------------------------------------------------------------------------------- /bundles/cif-connector-graphql/src/test/resources/context/jcr-conf-inheritance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/bundles/cif-connector-graphql/src/test/resources/context/jcr-conf-inheritance.json -------------------------------------------------------------------------------- /bundles/cif-connector-graphql/src/test/resources/context/jcr-conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/bundles/cif-connector-graphql/src/test/resources/context/jcr-conf.json -------------------------------------------------------------------------------- /bundles/cif-connector-graphql/src/test/resources/graphql-queries/category-products.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/bundles/cif-connector-graphql/src/test/resources/graphql-queries/category-products.txt -------------------------------------------------------------------------------- /bundles/cif-connector-graphql/src/test/resources/graphql-queries/category-search.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/bundles/cif-connector-graphql/src/test/resources/graphql-queries/category-search.txt -------------------------------------------------------------------------------- /bundles/cif-connector-graphql/src/test/resources/graphql-queries/categorylist-by-urlkey.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/bundles/cif-connector-graphql/src/test/resources/graphql-queries/categorylist-by-urlkey.txt -------------------------------------------------------------------------------- /bundles/cif-connector-graphql/src/test/resources/graphql-queries/product-by-sku.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/bundles/cif-connector-graphql/src/test/resources/graphql-queries/product-by-sku.txt -------------------------------------------------------------------------------- /bundles/cif-connector-graphql/src/test/resources/graphql-queries/products-empty-search-for-category.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/bundles/cif-connector-graphql/src/test/resources/graphql-queries/products-empty-search-for-category.txt -------------------------------------------------------------------------------- /bundles/cif-connector-graphql/src/test/resources/graphql-queries/products-empty-search.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/bundles/cif-connector-graphql/src/test/resources/graphql-queries/products-empty-search.txt -------------------------------------------------------------------------------- /bundles/cif-connector-graphql/src/test/resources/graphql-queries/products-search-for-category.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/bundles/cif-connector-graphql/src/test/resources/graphql-queries/products-search-for-category.txt -------------------------------------------------------------------------------- /bundles/cif-connector-graphql/src/test/resources/graphql-queries/products-search.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/bundles/cif-connector-graphql/src/test/resources/graphql-queries/products-search.txt -------------------------------------------------------------------------------- /bundles/cif-connector-graphql/src/test/resources/logback-test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/bundles/cif-connector-graphql/src/test/resources/logback-test.xml -------------------------------------------------------------------------------- /bundles/cif-connector-graphql/src/test/resources/magento-graphql-category-products-page1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/bundles/cif-connector-graphql/src/test/resources/magento-graphql-category-products-page1.json -------------------------------------------------------------------------------- /bundles/cif-connector-graphql/src/test/resources/magento-graphql-category-products-page2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/bundles/cif-connector-graphql/src/test/resources/magento-graphql-category-products-page2.json -------------------------------------------------------------------------------- /bundles/cif-connector-graphql/src/test/resources/magento-graphql-category-products-page3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/bundles/cif-connector-graphql/src/test/resources/magento-graphql-category-products-page3.json -------------------------------------------------------------------------------- /bundles/cif-connector-graphql/src/test/resources/magento-graphql-category-products.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/bundles/cif-connector-graphql/src/test/resources/magento-graphql-category-products.json -------------------------------------------------------------------------------- /bundles/cif-connector-graphql/src/test/resources/magento-graphql-category-search.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/bundles/cif-connector-graphql/src/test/resources/magento-graphql-category-search.json -------------------------------------------------------------------------------- /bundles/cif-connector-graphql/src/test/resources/magento-graphql-categorylist-coats.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/bundles/cif-connector-graphql/src/test/resources/magento-graphql-categorylist-coats.json -------------------------------------------------------------------------------- /bundles/cif-connector-graphql/src/test/resources/magento-graphql-categorylist-dresses.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/bundles/cif-connector-graphql/src/test/resources/magento-graphql-categorylist-dresses.json -------------------------------------------------------------------------------- /bundles/cif-connector-graphql/src/test/resources/magento-graphql-categorylist-empty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/bundles/cif-connector-graphql/src/test/resources/magento-graphql-categorylist-empty.json -------------------------------------------------------------------------------- /bundles/cif-connector-graphql/src/test/resources/magento-graphql-categorylist-root.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/bundles/cif-connector-graphql/src/test/resources/magento-graphql-categorylist-root.json -------------------------------------------------------------------------------- /bundles/cif-connector-graphql/src/test/resources/magento-graphql-error.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/bundles/cif-connector-graphql/src/test/resources/magento-graphql-error.json -------------------------------------------------------------------------------- /bundles/cif-connector-graphql/src/test/resources/magento-graphql-no-product.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/bundles/cif-connector-graphql/src/test/resources/magento-graphql-no-product.json -------------------------------------------------------------------------------- /bundles/cif-connector-graphql/src/test/resources/magento-graphql-other-product.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/bundles/cif-connector-graphql/src/test/resources/magento-graphql-other-product.json -------------------------------------------------------------------------------- /bundles/cif-connector-graphql/src/test/resources/magento-graphql-product.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/bundles/cif-connector-graphql/src/test/resources/magento-graphql-product.json -------------------------------------------------------------------------------- /bundles/cif-connector-graphql/src/test/resources/magento-graphql-products-search.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/bundles/cif-connector-graphql/src/test/resources/magento-graphql-products-search.json -------------------------------------------------------------------------------- /bundles/cif-connector-graphql/src/test/resources/magento-graphql-simple-product.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/bundles/cif-connector-graphql/src/test/resources/magento-graphql-simple-product.json -------------------------------------------------------------------------------- /bundles/cif-connector-graphql/src/test/resources/magento-graphql-simple-products.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/bundles/cif-connector-graphql/src/test/resources/magento-graphql-simple-products.json -------------------------------------------------------------------------------- /bundles/cif-connector-graphql/src/test/resources/sample-graphql-generic-response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/bundles/cif-connector-graphql/src/test/resources/sample-graphql-generic-response.json -------------------------------------------------------------------------------- /bundles/cif-connector-graphql/src/test/resources/test-queries/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/bundles/cif-connector-graphql/src/test/resources/test-queries/README.md -------------------------------------------------------------------------------- /bundles/cif-connector-graphql/src/test/resources/test-queries/graphql-requests.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/bundles/cif-connector-graphql/src/test/resources/test-queries/graphql-requests.log -------------------------------------------------------------------------------- /bundles/cif-virtual-catalog/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/bundles/cif-virtual-catalog/pom.xml -------------------------------------------------------------------------------- /bundles/cif-virtual-catalog/src/main/java/com/adobe/cq/commerce/virtual/catalog/admin/impl/CatalogIdentifierDatasource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/bundles/cif-virtual-catalog/src/main/java/com/adobe/cq/commerce/virtual/catalog/admin/impl/CatalogIdentifierDatasource.java -------------------------------------------------------------------------------- /bundles/cif-virtual-catalog/src/main/java/com/adobe/cq/commerce/virtual/catalog/data/CatalogDataResourceProviderFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/bundles/cif-virtual-catalog/src/main/java/com/adobe/cq/commerce/virtual/catalog/data/CatalogDataResourceProviderFactory.java -------------------------------------------------------------------------------- /bundles/cif-virtual-catalog/src/main/java/com/adobe/cq/commerce/virtual/catalog/data/CatalogDataResourceProviderManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/bundles/cif-virtual-catalog/src/main/java/com/adobe/cq/commerce/virtual/catalog/data/CatalogDataResourceProviderManager.java -------------------------------------------------------------------------------- /bundles/cif-virtual-catalog/src/main/java/com/adobe/cq/commerce/virtual/catalog/data/CatalogIdentifier.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/bundles/cif-virtual-catalog/src/main/java/com/adobe/cq/commerce/virtual/catalog/data/CatalogIdentifier.java -------------------------------------------------------------------------------- /bundles/cif-virtual-catalog/src/main/java/com/adobe/cq/commerce/virtual/catalog/data/CatalogIdentifierService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/bundles/cif-virtual-catalog/src/main/java/com/adobe/cq/commerce/virtual/catalog/data/CatalogIdentifierService.java -------------------------------------------------------------------------------- /bundles/cif-virtual-catalog/src/main/java/com/adobe/cq/commerce/virtual/catalog/data/Constants.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/bundles/cif-virtual-catalog/src/main/java/com/adobe/cq/commerce/virtual/catalog/data/Constants.java -------------------------------------------------------------------------------- /bundles/cif-virtual-catalog/src/main/java/com/adobe/cq/commerce/virtual/catalog/data/impl/CatalogDataResourceProviderManagerImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/bundles/cif-virtual-catalog/src/main/java/com/adobe/cq/commerce/virtual/catalog/data/impl/CatalogDataResourceProviderManagerImpl.java -------------------------------------------------------------------------------- /bundles/cif-virtual-catalog/src/main/java/com/adobe/cq/commerce/virtual/catalog/data/impl/CatalogIdentifierServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/bundles/cif-virtual-catalog/src/main/java/com/adobe/cq/commerce/virtual/catalog/data/impl/CatalogIdentifierServiceImpl.java -------------------------------------------------------------------------------- /bundles/cif-virtual-catalog/src/main/java/com/adobe/cq/commerce/virtual/catalog/data/impl/ProductBindingCreator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/bundles/cif-virtual-catalog/src/main/java/com/adobe/cq/commerce/virtual/catalog/data/impl/ProductBindingCreator.java -------------------------------------------------------------------------------- /bundles/cif-virtual-catalog/src/main/java/com/adobe/cq/commerce/virtual/catalog/models/ConfigurationReference.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/bundles/cif-virtual-catalog/src/main/java/com/adobe/cq/commerce/virtual/catalog/models/ConfigurationReference.java -------------------------------------------------------------------------------- /bundles/cif-virtual-catalog/src/main/java/com/adobe/cq/commerce/virtual/catalog/models/impl/ConfigurationReferenceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/bundles/cif-virtual-catalog/src/main/java/com/adobe/cq/commerce/virtual/catalog/models/impl/ConfigurationReferenceImpl.java -------------------------------------------------------------------------------- /bundles/cif-virtual-catalog/src/test/java/com/adobe/cq/commerce/virtual/catalog/admin/impl/CatalogIdentifierDatasourceTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/bundles/cif-virtual-catalog/src/test/java/com/adobe/cq/commerce/virtual/catalog/admin/impl/CatalogIdentifierDatasourceTest.java -------------------------------------------------------------------------------- /bundles/cif-virtual-catalog/src/test/java/com/adobe/cq/commerce/virtual/catalog/data/impl/CatalogDataProviderManagerConfTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/bundles/cif-virtual-catalog/src/test/java/com/adobe/cq/commerce/virtual/catalog/data/impl/CatalogDataProviderManagerConfTest.java -------------------------------------------------------------------------------- /bundles/cif-virtual-catalog/src/test/java/com/adobe/cq/commerce/virtual/catalog/data/impl/CatalogDataResourceProviderManagerImplTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/bundles/cif-virtual-catalog/src/test/java/com/adobe/cq/commerce/virtual/catalog/data/impl/CatalogDataResourceProviderManagerImplTest.java -------------------------------------------------------------------------------- /bundles/cif-virtual-catalog/src/test/java/com/adobe/cq/commerce/virtual/catalog/data/impl/ProductBindingCreatorTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/bundles/cif-virtual-catalog/src/test/java/com/adobe/cq/commerce/virtual/catalog/data/impl/ProductBindingCreatorTest.java -------------------------------------------------------------------------------- /bundles/cif-virtual-catalog/src/test/java/com/adobe/cq/commerce/virtual/catalog/models/impl/ConfigurationReferenceTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/bundles/cif-virtual-catalog/src/test/java/com/adobe/cq/commerce/virtual/catalog/models/impl/ConfigurationReferenceTest.java -------------------------------------------------------------------------------- /bundles/cif-virtual-catalog/src/test/resources/context/jcr-catalog-bindings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/bundles/cif-virtual-catalog/src/test/resources/context/jcr-catalog-bindings.json -------------------------------------------------------------------------------- /bundles/cif-virtual-catalog/src/test/resources/context/jcr-cifrootfolder-references.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/bundles/cif-virtual-catalog/src/test/resources/context/jcr-cifrootfolder-references.json -------------------------------------------------------------------------------- /bundles/cif-virtual-catalog/src/test/resources/context/jcr-conf-page.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/bundles/cif-virtual-catalog/src/test/resources/context/jcr-conf-page.json -------------------------------------------------------------------------------- /bundles/cif-virtual-catalog/src/test/resources/context/jcr-conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/bundles/cif-virtual-catalog/src/test/resources/context/jcr-conf.json -------------------------------------------------------------------------------- /bundles/cif-virtual-catalog/src/test/resources/context/jcr-dataroots.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/bundles/cif-virtual-catalog/src/test/resources/context/jcr-dataroots.json -------------------------------------------------------------------------------- /bundles/cif-virtual-catalog/src/test/resources/context/jcr-wrong-conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/bundles/cif-virtual-catalog/src/test/resources/context/jcr-wrong-conf.json -------------------------------------------------------------------------------- /bundles/cif-virtual-catalog/src/test/resources/nodetypes/cq-page.cnd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/bundles/cif-virtual-catalog/src/test/resources/nodetypes/cq-page.cnd -------------------------------------------------------------------------------- /bundles/cif-virtual-catalog/src/test/resources/simplelogger.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/bundles/cif-virtual-catalog/src/test/resources/simplelogger.properties -------------------------------------------------------------------------------- /content/cif-connector/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/content/cif-connector/pom.xml -------------------------------------------------------------------------------- /content/cif-connector/src/main/content/META-INF/vault/filter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/content/cif-connector/src/main/content/META-INF/vault/filter.xml -------------------------------------------------------------------------------- /content/cif-connector/src/main/content/jcr_root/apps/commerce/scaffolding/product/.content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/content/cif-connector/src/main/content/jcr_root/apps/commerce/scaffolding/product/.content.xml -------------------------------------------------------------------------------- /content/cif-connector/src/main/content/jcr_root/libs/cif/.content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/content/cif-connector/src/main/content/jcr_root/libs/cif/.content.xml -------------------------------------------------------------------------------- /content/cif-connector/src/main/content/jcr_root/libs/commerce/config/org.apache.sling.serviceusermapping.impl.ServiceUserMapperImpl.amended-cif-omnisearch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/content/cif-connector/src/main/content/jcr_root/libs/commerce/config/org.apache.sling.serviceusermapping.impl.ServiceUserMapperImpl.amended-cif-omnisearch.xml -------------------------------------------------------------------------------- /content/cif-connector/src/main/content/jcr_root/libs/commerce/gui/clientlibs/configbrowser/.content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/content/cif-connector/src/main/content/jcr_root/libs/commerce/gui/clientlibs/configbrowser/.content.xml -------------------------------------------------------------------------------- /content/cif-connector/src/main/content/jcr_root/libs/commerce/gui/clientlibs/configbrowser/js.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/content/cif-connector/src/main/content/jcr_root/libs/commerce/gui/clientlibs/configbrowser/js.txt -------------------------------------------------------------------------------- /content/cif-connector/src/main/content/jcr_root/libs/commerce/gui/clientlibs/configbrowser/js/actions/delete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/content/cif-connector/src/main/content/jcr_root/libs/commerce/gui/clientlibs/configbrowser/js/actions/delete.js -------------------------------------------------------------------------------- /content/cif-connector/src/main/content/jcr_root/libs/commerce/gui/clientlibs/configbrowser/js/renderconditions/renderconditions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/content/cif-connector/src/main/content/jcr_root/libs/commerce/gui/clientlibs/configbrowser/js/renderconditions/renderconditions.js -------------------------------------------------------------------------------- /content/cif-connector/src/main/content/jcr_root/libs/commerce/gui/components/authoring/editor/pagepreview/clientlibs/.content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/content/cif-connector/src/main/content/jcr_root/libs/commerce/gui/components/authoring/editor/pagepreview/clientlibs/.content.xml -------------------------------------------------------------------------------- /content/cif-connector/src/main/content/jcr_root/libs/commerce/gui/components/authoring/editor/pagepreview/clientlibs/js.txt: -------------------------------------------------------------------------------- 1 | pagepreview.js -------------------------------------------------------------------------------- /content/cif-connector/src/main/content/jcr_root/libs/commerce/gui/components/authoring/editor/pagepreview/clientlibs/pagepreview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/content/cif-connector/src/main/content/jcr_root/libs/commerce/gui/components/authoring/editor/pagepreview/clientlibs/pagepreview.js -------------------------------------------------------------------------------- /content/cif-connector/src/main/content/jcr_root/libs/commerce/gui/components/common/cifcategoryfield/.content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/content/cif-connector/src/main/content/jcr_root/libs/commerce/gui/components/common/cifcategoryfield/.content.xml -------------------------------------------------------------------------------- /content/cif-connector/src/main/content/jcr_root/libs/commerce/gui/components/common/cifcategoryfield/CIFCategoryFieldHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/content/cif-connector/src/main/content/jcr_root/libs/commerce/gui/components/common/cifcategoryfield/CIFCategoryFieldHelper.java -------------------------------------------------------------------------------- /content/cif-connector/src/main/content/jcr_root/libs/commerce/gui/components/common/cifcategoryfield/carditem/carditem.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/content/cif-connector/src/main/content/jcr_root/libs/commerce/gui/components/common/cifcategoryfield/carditem/carditem.html -------------------------------------------------------------------------------- /content/cif-connector/src/main/content/jcr_root/libs/commerce/gui/components/common/cifcategoryfield/cifcategoryfield.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/content/cif-connector/src/main/content/jcr_root/libs/commerce/gui/components/common/cifcategoryfield/cifcategoryfield.html -------------------------------------------------------------------------------- /content/cif-connector/src/main/content/jcr_root/libs/commerce/gui/components/common/cifcategoryfield/clientlibs/.content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/content/cif-connector/src/main/content/jcr_root/libs/commerce/gui/components/common/cifcategoryfield/clientlibs/.content.xml -------------------------------------------------------------------------------- /content/cif-connector/src/main/content/jcr_root/libs/commerce/gui/components/common/cifcategoryfield/clientlibs/cifcategorypicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/content/cif-connector/src/main/content/jcr_root/libs/commerce/gui/components/common/cifcategoryfield/clientlibs/cifcategorypicker.js -------------------------------------------------------------------------------- /content/cif-connector/src/main/content/jcr_root/libs/commerce/gui/components/common/cifcategoryfield/clientlibs/js.txt: -------------------------------------------------------------------------------- 1 | cifcategorypicker.js -------------------------------------------------------------------------------- /content/cif-connector/src/main/content/jcr_root/libs/commerce/gui/components/common/cifcategoryfield/columnitem/columnitem.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/content/cif-connector/src/main/content/jcr_root/libs/commerce/gui/components/common/cifcategoryfield/columnitem/columnitem.html -------------------------------------------------------------------------------- /content/cif-connector/src/main/content/jcr_root/libs/commerce/gui/components/common/cifcategoryfield/columnitempreview/ColumnItemPreviewHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/content/cif-connector/src/main/content/jcr_root/libs/commerce/gui/components/common/cifcategoryfield/columnitempreview/ColumnItemPreviewHelper.java -------------------------------------------------------------------------------- /content/cif-connector/src/main/content/jcr_root/libs/commerce/gui/components/common/cifcategoryfield/columnitempreview/columnitempreview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/content/cif-connector/src/main/content/jcr_root/libs/commerce/gui/components/common/cifcategoryfield/columnitempreview/columnitempreview.html -------------------------------------------------------------------------------- /content/cif-connector/src/main/content/jcr_root/libs/commerce/gui/components/common/cifcategoryfield/datasources/children/children.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/content/cif-connector/src/main/content/jcr_root/libs/commerce/gui/components/common/cifcategoryfield/datasources/children/children.java -------------------------------------------------------------------------------- /content/cif-connector/src/main/content/jcr_root/libs/commerce/gui/components/common/cifcategoryfield/listitem/listitem.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/content/cif-connector/src/main/content/jcr_root/libs/commerce/gui/components/common/cifcategoryfield/listitem/listitem.html -------------------------------------------------------------------------------- /content/cif-connector/src/main/content/jcr_root/libs/commerce/gui/components/common/cifpicker/clientlibs/.content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/content/cif-connector/src/main/content/jcr_root/libs/commerce/gui/components/common/cifpicker/clientlibs/.content.xml -------------------------------------------------------------------------------- /content/cif-connector/src/main/content/jcr_root/libs/commerce/gui/components/common/cifpicker/clientlibs/cifpicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/content/cif-connector/src/main/content/jcr_root/libs/commerce/gui/components/common/cifpicker/clientlibs/cifpicker.js -------------------------------------------------------------------------------- /content/cif-connector/src/main/content/jcr_root/libs/commerce/gui/components/common/cifpicker/clientlibs/js.txt: -------------------------------------------------------------------------------- 1 | cifpicker.js -------------------------------------------------------------------------------- /content/cif-connector/src/main/content/jcr_root/libs/commerce/gui/components/common/cifproductfield/.content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/content/cif-connector/src/main/content/jcr_root/libs/commerce/gui/components/common/cifproductfield/.content.xml -------------------------------------------------------------------------------- /content/cif-connector/src/main/content/jcr_root/libs/commerce/gui/components/common/cifproductfield/CIFProductFieldHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/content/cif-connector/src/main/content/jcr_root/libs/commerce/gui/components/common/cifproductfield/CIFProductFieldHelper.java -------------------------------------------------------------------------------- /content/cif-connector/src/main/content/jcr_root/libs/commerce/gui/components/common/cifproductfield/ViewHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/content/cif-connector/src/main/content/jcr_root/libs/commerce/gui/components/common/cifproductfield/ViewHelper.java -------------------------------------------------------------------------------- /content/cif-connector/src/main/content/jcr_root/libs/commerce/gui/components/common/cifproductfield/carditem/carditem.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/content/cif-connector/src/main/content/jcr_root/libs/commerce/gui/components/common/cifproductfield/carditem/carditem.html -------------------------------------------------------------------------------- /content/cif-connector/src/main/content/jcr_root/libs/commerce/gui/components/common/cifproductfield/cifproductfield.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/content/cif-connector/src/main/content/jcr_root/libs/commerce/gui/components/common/cifproductfield/cifproductfield.html -------------------------------------------------------------------------------- /content/cif-connector/src/main/content/jcr_root/libs/commerce/gui/components/common/cifproductfield/clientlibs/.content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/content/cif-connector/src/main/content/jcr_root/libs/commerce/gui/components/common/cifproductfield/clientlibs/.content.xml -------------------------------------------------------------------------------- /content/cif-connector/src/main/content/jcr_root/libs/commerce/gui/components/common/cifproductfield/clientlibs/cifproductpicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/content/cif-connector/src/main/content/jcr_root/libs/commerce/gui/components/common/cifproductfield/clientlibs/cifproductpicker.js -------------------------------------------------------------------------------- /content/cif-connector/src/main/content/jcr_root/libs/commerce/gui/components/common/cifproductfield/clientlibs/js.txt: -------------------------------------------------------------------------------- 1 | cifproductpicker.js -------------------------------------------------------------------------------- /content/cif-connector/src/main/content/jcr_root/libs/commerce/gui/components/common/cifproductfield/columnitem/columnitem.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/content/cif-connector/src/main/content/jcr_root/libs/commerce/gui/components/common/cifproductfield/columnitem/columnitem.html -------------------------------------------------------------------------------- /content/cif-connector/src/main/content/jcr_root/libs/commerce/gui/components/common/cifproductfield/columnitempreview/ColumnItemPreviewHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/content/cif-connector/src/main/content/jcr_root/libs/commerce/gui/components/common/cifproductfield/columnitempreview/ColumnItemPreviewHelper.java -------------------------------------------------------------------------------- /content/cif-connector/src/main/content/jcr_root/libs/commerce/gui/components/common/cifproductfield/columnitempreview/columnitempreview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/content/cif-connector/src/main/content/jcr_root/libs/commerce/gui/components/common/cifproductfield/columnitempreview/columnitempreview.html -------------------------------------------------------------------------------- /content/cif-connector/src/main/content/jcr_root/libs/commerce/gui/components/common/cifproductfield/listitem/listitem.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/content/cif-connector/src/main/content/jcr_root/libs/commerce/gui/components/common/cifproductfield/listitem/listitem.html -------------------------------------------------------------------------------- /content/cif-connector/src/main/content/jcr_root/libs/commerce/gui/components/common/cifproductfield/suggestion/suggestion.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/content/cif-connector/src/main/content/jcr_root/libs/commerce/gui/components/common/cifproductfield/suggestion/suggestion.jsp -------------------------------------------------------------------------------- /content/cif-connector/src/main/content/jcr_root/libs/commerce/gui/components/configuration/columnpreview/columnpreview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/content/cif-connector/src/main/content/jcr_root/libs/commerce/gui/components/configuration/columnpreview/columnpreview.html -------------------------------------------------------------------------------- /content/cif-connector/src/main/content/jcr_root/libs/commerce/gui/components/configuration/columnviewitem/columnviewitem.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/content/cif-connector/src/main/content/jcr_root/libs/commerce/gui/components/configuration/columnviewitem/columnviewitem.html -------------------------------------------------------------------------------- /content/cif-connector/src/main/content/jcr_root/libs/commerce/gui/components/configuration/page/.content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/content/cif-connector/src/main/content/jcr_root/libs/commerce/gui/components/configuration/page/.content.xml -------------------------------------------------------------------------------- /content/cif-connector/src/main/content/jcr_root/libs/commerce/gui/components/configuration/page/_cq_dialog/.content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/content/cif-connector/src/main/content/jcr_root/libs/commerce/gui/components/configuration/page/_cq_dialog/.content.xml -------------------------------------------------------------------------------- /content/cif-connector/src/main/content/jcr_root/libs/commerce/gui/components/configuration/page/clientlibs/.content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/content/cif-connector/src/main/content/jcr_root/libs/commerce/gui/components/configuration/page/clientlibs/.content.xml -------------------------------------------------------------------------------- /content/cif-connector/src/main/content/jcr_root/libs/commerce/gui/components/configuration/page/clientlibs/css.txt: -------------------------------------------------------------------------------- 1 | #base=css 2 | configurationpage.css -------------------------------------------------------------------------------- /content/cif-connector/src/main/content/jcr_root/libs/commerce/gui/components/configuration/page/clientlibs/css/configurationpage.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/content/cif-connector/src/main/content/jcr_root/libs/commerce/gui/components/configuration/page/clientlibs/css/configurationpage.css -------------------------------------------------------------------------------- /content/cif-connector/src/main/content/jcr_root/libs/commerce/gui/components/configuration/page/clientlibs/js.txt: -------------------------------------------------------------------------------- 1 | #base=js 2 | configurationpage.js -------------------------------------------------------------------------------- /content/cif-connector/src/main/content/jcr_root/libs/commerce/gui/components/configuration/page/clientlibs/js/configurationpage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/content/cif-connector/src/main/content/jcr_root/libs/commerce/gui/components/configuration/page/clientlibs/js/configurationpage.js -------------------------------------------------------------------------------- /content/cif-connector/src/main/content/jcr_root/libs/commerce/gui/components/configuration/page/template/.content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/content/cif-connector/src/main/content/jcr_root/libs/commerce/gui/components/configuration/page/template/.content.xml -------------------------------------------------------------------------------- /content/cif-connector/src/main/content/jcr_root/libs/commerce/gui/content/common/cifcategoryfield/.content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/content/cif-connector/src/main/content/jcr_root/libs/commerce/gui/content/common/cifcategoryfield/.content.xml -------------------------------------------------------------------------------- /content/cif-connector/src/main/content/jcr_root/libs/commerce/gui/content/common/cifcategoryfield/columnpreview/.content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/content/cif-connector/src/main/content/jcr_root/libs/commerce/gui/content/common/cifcategoryfield/columnpreview/.content.xml -------------------------------------------------------------------------------- /content/cif-connector/src/main/content/jcr_root/libs/commerce/gui/content/common/cifcategoryfield/picker/.content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/content/cif-connector/src/main/content/jcr_root/libs/commerce/gui/content/common/cifcategoryfield/picker/.content.xml -------------------------------------------------------------------------------- /content/cif-connector/src/main/content/jcr_root/libs/commerce/gui/content/common/cifproductfield/.content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/content/cif-connector/src/main/content/jcr_root/libs/commerce/gui/content/common/cifproductfield/.content.xml -------------------------------------------------------------------------------- /content/cif-connector/src/main/content/jcr_root/libs/commerce/gui/content/common/cifproductfield/columnpreview/.content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/content/cif-connector/src/main/content/jcr_root/libs/commerce/gui/content/common/cifproductfield/columnpreview/.content.xml -------------------------------------------------------------------------------- /content/cif-connector/src/main/content/jcr_root/libs/commerce/gui/content/common/cifproductfield/picker/.content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/content/cif-connector/src/main/content/jcr_root/libs/commerce/gui/content/common/cifproductfield/picker/.content.xml -------------------------------------------------------------------------------- /content/cif-connector/src/main/content/jcr_root/libs/commerce/gui/content/common/cifproductfield/pickerpage/.content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/content/cif-connector/src/main/content/jcr_root/libs/commerce/gui/content/common/cifproductfield/pickerpage/.content.xml -------------------------------------------------------------------------------- /content/cif-connector/src/main/content/jcr_root/libs/commerce/gui/content/common/cifproductfield/suggestion/.content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/content/cif-connector/src/main/content/jcr_root/libs/commerce/gui/content/common/cifproductfield/suggestion/.content.xml -------------------------------------------------------------------------------- /content/cif-connector/src/main/content/jcr_root/libs/commerce/gui/content/configuration/.content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/content/cif-connector/src/main/content/jcr_root/libs/commerce/gui/content/configuration/.content.xml -------------------------------------------------------------------------------- /content/cif-connector/src/main/content/jcr_root/libs/commerce/gui/content/configuration/createconfiguration/.content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/content/cif-connector/src/main/content/jcr_root/libs/commerce/gui/content/configuration/createconfiguration/.content.xml -------------------------------------------------------------------------------- /content/cif-connector/src/main/content/jcr_root/libs/commerce/gui/content/products/_jcr_content/views/column/.content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/content/cif-connector/src/main/content/jcr_root/libs/commerce/gui/content/products/_jcr_content/views/column/.content.xml -------------------------------------------------------------------------------- /content/cif-connector/src/main/content/jcr_root/libs/cq/core/content/nav/tools/cloudservices/cifconfig/.content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/content/cif-connector/src/main/content/jcr_root/libs/cq/core/content/nav/tools/cloudservices/cifconfig/.content.xml -------------------------------------------------------------------------------- /content/cif-connector/src/main/content/jcr_root/libs/dam/content/schemaeditors/forms/default/items/tabs/items/tab6/.content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/content/cif-connector/src/main/content/jcr_root/libs/dam/content/schemaeditors/forms/default/items/tabs/items/tab6/.content.xml -------------------------------------------------------------------------------- /content/cif-connector/src/main/content/jcr_root/libs/wcm/core/content/editor/_jcr_content/content/items/content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/content/cif-connector/src/main/content/jcr_root/libs/wcm/core/content/editor/_jcr_content/content/items/content.xml -------------------------------------------------------------------------------- /content/cif-connector/tests/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/content/cif-connector/tests/.prettierignore -------------------------------------------------------------------------------- /content/cif-connector/tests/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/content/cif-connector/tests/.prettierrc -------------------------------------------------------------------------------- /content/cif-connector/tests/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/content/cif-connector/tests/karma.conf.js -------------------------------------------------------------------------------- /content/cif-connector/tests/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/content/cif-connector/tests/package-lock.json -------------------------------------------------------------------------------- /content/cif-connector/tests/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/content/cif-connector/tests/package.json -------------------------------------------------------------------------------- /content/cif-connector/tests/src/CIF.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/content/cif-connector/tests/src/CIF.js -------------------------------------------------------------------------------- /content/cif-connector/tests/src/libs/commerce/gui/components/authoring/editor/pagepreview/PagePreviewTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/content/cif-connector/tests/src/libs/commerce/gui/components/authoring/editor/pagepreview/PagePreviewTest.js -------------------------------------------------------------------------------- /content/cif-connector/tests/src/libs/commerce/gui/components/common/cifcategoryfield/CifCategoryPickerTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/content/cif-connector/tests/src/libs/commerce/gui/components/common/cifcategoryfield/CifCategoryPickerTest.js -------------------------------------------------------------------------------- /content/cif-connector/tests/src/libs/commerce/gui/components/common/cifpicker/CifPickerTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/content/cif-connector/tests/src/libs/commerce/gui/components/common/cifpicker/CifPickerTest.js -------------------------------------------------------------------------------- /content/cif-connector/tests/src/libs/commerce/gui/components/common/cifproductfield/CifProductPickerTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/content/cif-connector/tests/src/libs/commerce/gui/components/common/cifproductfield/CifProductPickerTest.js -------------------------------------------------------------------------------- /content/cif-virtual-catalog/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/content/cif-virtual-catalog/pom.xml -------------------------------------------------------------------------------- /content/cif-virtual-catalog/src/main/content/META-INF/vault/filter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/content/cif-virtual-catalog/src/main/content/META-INF/vault/filter.xml -------------------------------------------------------------------------------- /content/cif-virtual-catalog/src/main/content/jcr_root/_oak_index/.content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/content/cif-virtual-catalog/src/main/content/jcr_root/_oak_index/.content.xml -------------------------------------------------------------------------------- /content/cif-virtual-catalog/src/main/content/jcr_root/apps/commerce/gui/content/products/folderproperties/.content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/content/cif-virtual-catalog/src/main/content/jcr_root/apps/commerce/gui/content/products/folderproperties/.content.xml -------------------------------------------------------------------------------- /content/cif-virtual-catalog/src/main/content/jcr_root/libs/commerce/components/ciffolder/.content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/content/cif-virtual-catalog/src/main/content/jcr_root/libs/commerce/components/ciffolder/.content.xml -------------------------------------------------------------------------------- /content/cif-virtual-catalog/src/main/content/jcr_root/libs/commerce/components/ciffolder/_cq_dialog/.content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/content/cif-virtual-catalog/src/main/content/jcr_root/libs/commerce/components/ciffolder/_cq_dialog/.content.xml -------------------------------------------------------------------------------- /content/cif-virtual-catalog/src/main/content/jcr_root/libs/commerce/components/ciffolder/dialog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/content/cif-virtual-catalog/src/main/content/jcr_root/libs/commerce/components/ciffolder/dialog.xml -------------------------------------------------------------------------------- /content/cif-virtual-catalog/src/main/content/jcr_root/libs/commerce/components/cifimage/cifimage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/content/cif-virtual-catalog/src/main/content/jcr_root/libs/commerce/components/cifimage/cifimage.html -------------------------------------------------------------------------------- /content/cif-virtual-catalog/src/main/content/jcr_root/libs/commerce/components/cifrendercondition/cifrendercondition.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/content/cif-virtual-catalog/src/main/content/jcr_root/libs/commerce/components/cifrendercondition/cifrendercondition.jsp -------------------------------------------------------------------------------- /content/cif-virtual-catalog/src/main/content/jcr_root/libs/commerce/components/cifrootfolder/.content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/content/cif-virtual-catalog/src/main/content/jcr_root/libs/commerce/components/cifrootfolder/.content.xml -------------------------------------------------------------------------------- /content/cif-virtual-catalog/src/main/content/jcr_root/libs/commerce/components/cifrootfolder/_cq_dialog/.content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/content/cif-virtual-catalog/src/main/content/jcr_root/libs/commerce/components/cifrootfolder/_cq_dialog/.content.xml -------------------------------------------------------------------------------- /content/cif-virtual-catalog/src/main/content/jcr_root/libs/commerce/components/cifrootfolder/dialog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/content/cif-virtual-catalog/src/main/content/jcr_root/libs/commerce/components/cifrootfolder/dialog.xml -------------------------------------------------------------------------------- /content/cif-virtual-catalog/src/main/content/jcr_root/libs/commerce/components/cifrootfolder/include/include.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/content/cif-virtual-catalog/src/main/content/jcr_root/libs/commerce/components/cifrootfolder/include/include.jsp -------------------------------------------------------------------------------- /content/cif-virtual-catalog/src/main/content/jcr_root/libs/commerce/components/cifrootfolder/reference/reference.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/content/cif-virtual-catalog/src/main/content/jcr_root/libs/commerce/components/cifrootfolder/reference/reference.html -------------------------------------------------------------------------------- /content/cif-virtual-catalog/src/main/content/jcr_root/libs/commerce/config/org.apache.sling.jcr.repoinit.RepositoryInitializer-default.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/content/cif-virtual-catalog/src/main/content/jcr_root/libs/commerce/config/org.apache.sling.jcr.repoinit.RepositoryInitializer-default.config -------------------------------------------------------------------------------- /content/cif-virtual-catalog/src/main/content/jcr_root/libs/commerce/config/org.apache.sling.serviceusermapping.impl.ServiceUserMapperImpl.amended-virtual-commerce.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/content/cif-virtual-catalog/src/main/content/jcr_root/libs/commerce/config/org.apache.sling.serviceusermapping.impl.ServiceUserMapperImpl.amended-virtual-commerce.xml -------------------------------------------------------------------------------- /content/cif-virtual-catalog/src/main/content/jcr_root/libs/commerce/gui/components/admin/folder/include/include.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/content/cif-virtual-catalog/src/main/content/jcr_root/libs/commerce/gui/components/admin/folder/include/include.jsp -------------------------------------------------------------------------------- /content/cif-virtual-catalog/src/main/content/jcr_root/libs/commerce/gui/components/admin/products/bindproducttreewizard/clientlibs/.content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/content/cif-virtual-catalog/src/main/content/jcr_root/libs/commerce/gui/components/admin/products/bindproducttreewizard/clientlibs/.content.xml -------------------------------------------------------------------------------- /content/cif-virtual-catalog/src/main/content/jcr_root/libs/commerce/gui/components/admin/products/bindproducttreewizard/clientlibs/bindproducttreewizard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/content/cif-virtual-catalog/src/main/content/jcr_root/libs/commerce/gui/components/admin/products/bindproducttreewizard/clientlibs/bindproducttreewizard.css -------------------------------------------------------------------------------- /content/cif-virtual-catalog/src/main/content/jcr_root/libs/commerce/gui/components/admin/products/bindproducttreewizard/clientlibs/bindproducttreewizard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/content/cif-virtual-catalog/src/main/content/jcr_root/libs/commerce/gui/components/admin/products/bindproducttreewizard/clientlibs/bindproducttreewizard.js -------------------------------------------------------------------------------- /content/cif-virtual-catalog/src/main/content/jcr_root/libs/commerce/gui/components/admin/products/bindproducttreewizard/clientlibs/css.txt: -------------------------------------------------------------------------------- 1 | bindproducttreewizard.css -------------------------------------------------------------------------------- /content/cif-virtual-catalog/src/main/content/jcr_root/libs/commerce/gui/components/admin/products/bindproducttreewizard/clientlibs/js.txt: -------------------------------------------------------------------------------- 1 | bindproducttreewizard.js -------------------------------------------------------------------------------- /content/cif-virtual-catalog/src/main/content/jcr_root/libs/commerce/gui/components/admin/products/bindproducttreewizard/commerceproviderdatasource/commerceproviderdatasource.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/content/cif-virtual-catalog/src/main/content/jcr_root/libs/commerce/gui/components/admin/products/bindproducttreewizard/commerceproviderdatasource/commerceproviderdatasource.jsp -------------------------------------------------------------------------------- /content/cif-virtual-catalog/src/main/content/jcr_root/libs/commerce/gui/components/admin/products/childcard/childcard.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/content/cif-virtual-catalog/src/main/content/jcr_root/libs/commerce/gui/components/admin/products/childcard/childcard.jsp -------------------------------------------------------------------------------- /content/cif-virtual-catalog/src/main/content/jcr_root/libs/commerce/gui/components/admin/products/childcolumnitem/childcolumnitem.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/content/cif-virtual-catalog/src/main/content/jcr_root/libs/commerce/gui/components/admin/products/childcolumnitem/childcolumnitem.jsp -------------------------------------------------------------------------------- /content/cif-virtual-catalog/src/main/content/jcr_root/libs/commerce/gui/components/admin/products/childrow/childrow.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/content/cif-virtual-catalog/src/main/content/jcr_root/libs/commerce/gui/components/admin/products/childrow/childrow.jsp -------------------------------------------------------------------------------- /content/cif-virtual-catalog/src/main/content/jcr_root/libs/commerce/gui/components/admin/products/products.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/content/cif-virtual-catalog/src/main/content/jcr_root/libs/commerce/gui/components/admin/products/products.jsp -------------------------------------------------------------------------------- /content/cif-virtual-catalog/src/main/content/jcr_root/libs/commerce/gui/components/authoring/assetfinder/product/clientlibs/ProductAssetPanel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/content/cif-virtual-catalog/src/main/content/jcr_root/libs/commerce/gui/components/authoring/assetfinder/product/clientlibs/ProductAssetPanel.js -------------------------------------------------------------------------------- /content/cif-virtual-catalog/src/main/content/jcr_root/libs/commerce/gui/components/common/productsearchdatasource/productsearchdatasource.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/content/cif-virtual-catalog/src/main/content/jcr_root/libs/commerce/gui/components/common/productsearchdatasource/productsearchdatasource.jsp -------------------------------------------------------------------------------- /content/cif-virtual-catalog/src/main/content/jcr_root/libs/commerce/gui/content/common/productfield/picker/search/.content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/content/cif-virtual-catalog/src/main/content/jcr_root/libs/commerce/gui/content/common/productfield/picker/search/.content.xml -------------------------------------------------------------------------------- /content/cif-virtual-catalog/src/main/content/jcr_root/libs/commerce/gui/content/common/productfield/picker/search/views/card/datasource/.content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/content/cif-virtual-catalog/src/main/content/jcr_root/libs/commerce/gui/content/common/productfield/picker/search/views/card/datasource/.content.xml -------------------------------------------------------------------------------- /content/cif-virtual-catalog/src/main/content/jcr_root/libs/commerce/gui/content/products/.content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/content/cif-virtual-catalog/src/main/content/jcr_root/libs/commerce/gui/content/products/.content.xml -------------------------------------------------------------------------------- /content/cif-virtual-catalog/src/main/content/jcr_root/libs/commerce/gui/content/products/bindproducttreewizard/.content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/content/cif-virtual-catalog/src/main/content/jcr_root/libs/commerce/gui/content/products/bindproducttreewizard/.content.xml -------------------------------------------------------------------------------- /content/cif-virtual-catalog/src/main/content/jcr_root/libs/commerce/gui/content/products/folderproperties/_jcr_content/content/items/ref/.content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/content/cif-virtual-catalog/src/main/content/jcr_root/libs/commerce/gui/content/products/folderproperties/_jcr_content/content/items/ref/.content.xml -------------------------------------------------------------------------------- /content/cif-virtual-catalog/src/main/content/jcr_root/libs/commerce/gui/content/products/folderproperties/_jcr_content/editcondition.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/content/cif-virtual-catalog/src/main/content/jcr_root/libs/commerce/gui/content/products/folderproperties/_jcr_content/editcondition.xml -------------------------------------------------------------------------------- /content/cif-virtual-catalog/src/main/content/jcr_root/libs/commerce/gui/content/products/properties/_jcr_content/editcondition/.content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/content/cif-virtual-catalog/src/main/content/jcr_root/libs/commerce/gui/content/products/properties/_jcr_content/editcondition/.content.xml -------------------------------------------------------------------------------- /it/content/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/it/content/pom.xml -------------------------------------------------------------------------------- /it/content/src/main/content/META-INF/vault/filter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/it/content/src/main/content/META-INF/vault/filter.xml -------------------------------------------------------------------------------- /it/content/src/main/content/jcr_root/apps/cloudcommerce/config/com.adobe.cq.commerce.graphql.client.impl.GraphqlClientImpl-default.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/it/content/src/main/content/jcr_root/apps/cloudcommerce/config/com.adobe.cq.commerce.graphql.client.impl.GraphqlClientImpl-default.config -------------------------------------------------------------------------------- /it/content/src/main/content/jcr_root/apps/cloudcommerce/config/com.adobe.cq.commerce.graphql.magento.GraphqlDataServiceImpl-default.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/it/content/src/main/content/jcr_root/apps/cloudcommerce/config/com.adobe.cq.commerce.graphql.magento.GraphqlDataServiceImpl-default.config -------------------------------------------------------------------------------- /it/content/src/main/content/jcr_root/apps/cloudcommerce/config/org.apache.sling.commons.log.LogManager.factory.config-commerce.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/it/content/src/main/content/jcr_root/apps/cloudcommerce/config/org.apache.sling.commons.log.LogManager.factory.config-commerce.xml -------------------------------------------------------------------------------- /it/content/src/main/content/jcr_root/conf/testproject/settings/wcm/templates/category-page/.content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/it/content/src/main/content/jcr_root/conf/testproject/settings/wcm/templates/category-page/.content.xml -------------------------------------------------------------------------------- /it/content/src/main/content/jcr_root/conf/testproject/settings/wcm/templates/category-page/structure/.content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/it/content/src/main/content/jcr_root/conf/testproject/settings/wcm/templates/category-page/structure/.content.xml -------------------------------------------------------------------------------- /it/content/src/main/content/jcr_root/conf/testproject/settings/wcm/templates/product-page/.content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/it/content/src/main/content/jcr_root/conf/testproject/settings/wcm/templates/product-page/.content.xml -------------------------------------------------------------------------------- /it/content/src/main/content/jcr_root/conf/testproject/settings/wcm/templates/product-page/structure/.content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/it/content/src/main/content/jcr_root/conf/testproject/settings/wcm/templates/product-page/structure/.content.xml -------------------------------------------------------------------------------- /it/content/src/main/content/jcr_root/content/dam/ciftest/.content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/it/content/src/main/content/jcr_root/content/dam/ciftest/.content.xml -------------------------------------------------------------------------------- /it/content/src/main/content/jcr_root/content/dam/ciftest/_jcr_content/folderThumbnail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/it/content/src/main/content/jcr_root/content/dam/ciftest/_jcr_content/folderThumbnail -------------------------------------------------------------------------------- /it/content/src/main/content/jcr_root/content/dam/ciftest/_jcr_content/folderThumbnail.dir/.content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/it/content/src/main/content/jcr_root/content/dam/ciftest/_jcr_content/folderThumbnail.dir/.content.xml -------------------------------------------------------------------------------- /it/content/src/main/content/jcr_root/content/dam/ciftest/ciftest.jpg/.content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/it/content/src/main/content/jcr_root/content/dam/ciftest/ciftest.jpg/.content.xml -------------------------------------------------------------------------------- /it/content/src/main/content/jcr_root/content/dam/ciftest/ciftest.jpg/_jcr_content/renditions/cq5dam.thumbnail.140.100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/it/content/src/main/content/jcr_root/content/dam/ciftest/ciftest.jpg/_jcr_content/renditions/cq5dam.thumbnail.140.100.png -------------------------------------------------------------------------------- /it/content/src/main/content/jcr_root/content/dam/ciftest/ciftest.jpg/_jcr_content/renditions/cq5dam.thumbnail.140.100.png.dir/.content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/it/content/src/main/content/jcr_root/content/dam/ciftest/ciftest.jpg/_jcr_content/renditions/cq5dam.thumbnail.140.100.png.dir/.content.xml -------------------------------------------------------------------------------- /it/content/src/main/content/jcr_root/content/dam/ciftest/ciftest.jpg/_jcr_content/renditions/cq5dam.thumbnail.319.319.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/it/content/src/main/content/jcr_root/content/dam/ciftest/ciftest.jpg/_jcr_content/renditions/cq5dam.thumbnail.319.319.png -------------------------------------------------------------------------------- /it/content/src/main/content/jcr_root/content/dam/ciftest/ciftest.jpg/_jcr_content/renditions/cq5dam.thumbnail.319.319.png.dir/.content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/it/content/src/main/content/jcr_root/content/dam/ciftest/ciftest.jpg/_jcr_content/renditions/cq5dam.thumbnail.319.319.png.dir/.content.xml -------------------------------------------------------------------------------- /it/content/src/main/content/jcr_root/content/dam/ciftest/ciftest.jpg/_jcr_content/renditions/cq5dam.thumbnail.48.48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/it/content/src/main/content/jcr_root/content/dam/ciftest/ciftest.jpg/_jcr_content/renditions/cq5dam.thumbnail.48.48.png -------------------------------------------------------------------------------- /it/content/src/main/content/jcr_root/content/dam/ciftest/ciftest.jpg/_jcr_content/renditions/cq5dam.thumbnail.48.48.png.dir/.content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/it/content/src/main/content/jcr_root/content/dam/ciftest/ciftest.jpg/_jcr_content/renditions/cq5dam.thumbnail.48.48.png.dir/.content.xml -------------------------------------------------------------------------------- /it/content/src/main/content/jcr_root/content/dam/ciftest/ciftest.jpg/_jcr_content/renditions/cq5dam.web.1280.1280.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/it/content/src/main/content/jcr_root/content/dam/ciftest/ciftest.jpg/_jcr_content/renditions/cq5dam.web.1280.1280.jpeg -------------------------------------------------------------------------------- /it/content/src/main/content/jcr_root/content/dam/ciftest/ciftest.jpg/_jcr_content/renditions/cq5dam.web.1280.1280.jpeg.dir/.content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/it/content/src/main/content/jcr_root/content/dam/ciftest/ciftest.jpg/_jcr_content/renditions/cq5dam.web.1280.1280.jpeg.dir/.content.xml -------------------------------------------------------------------------------- /it/content/src/main/content/jcr_root/content/dam/ciftest/ciftest.jpg/_jcr_content/renditions/original: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/it/content/src/main/content/jcr_root/content/dam/ciftest/ciftest.jpg/_jcr_content/renditions/original -------------------------------------------------------------------------------- /it/content/src/main/content/jcr_root/content/dam/ciftest/ciftest.jpg/_jcr_content/renditions/original.dir/.content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/it/content/src/main/content/jcr_root/content/dam/ciftest/ciftest.jpg/_jcr_content/renditions/original.dir/.content.xml -------------------------------------------------------------------------------- /it/content/src/main/content/jcr_root/content/testproject/testpdp/.content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/it/content/src/main/content/jcr_root/content/testproject/testpdp/.content.xml -------------------------------------------------------------------------------- /it/content/src/main/content/jcr_root/content/testproject/testplp/.content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/it/content/src/main/content/jcr_root/content/testproject/testplp/.content.xml -------------------------------------------------------------------------------- /it/http/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /it/http/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/it/http/pom.xml -------------------------------------------------------------------------------- /it/http/src/test/java/com/adobe/cq/commerce/it/http/AssetMetadataEditorExtensionIT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/it/http/src/test/java/com/adobe/cq/commerce/it/http/AssetMetadataEditorExtensionIT.java -------------------------------------------------------------------------------- /it/http/src/test/java/com/adobe/cq/commerce/it/http/CommerceTestBase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/it/http/src/test/java/com/adobe/cq/commerce/it/http/CommerceTestBase.java -------------------------------------------------------------------------------- /it/http/src/test/java/com/adobe/cq/commerce/it/http/GraphqlOSGiConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/it/http/src/test/java/com/adobe/cq/commerce/it/http/GraphqlOSGiConfig.java -------------------------------------------------------------------------------- /it/http/src/test/java/com/adobe/cq/commerce/it/http/GraphqlProductConsoleIT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/it/http/src/test/java/com/adobe/cq/commerce/it/http/GraphqlProductConsoleIT.java -------------------------------------------------------------------------------- /it/http/src/test/java/com/adobe/cq/commerce/it/http/PageEditorExtensionIT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/it/http/src/test/java/com/adobe/cq/commerce/it/http/PageEditorExtensionIT.java -------------------------------------------------------------------------------- /it/http/src/test/resources/com/adobe/cq/commerce/it/http/identity.jks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/it/http/src/test/resources/com/adobe/cq/commerce/it/http/identity.jks -------------------------------------------------------------------------------- /it/http/src/test/resources/com/adobe/cq/commerce/it/http/magento-graphql-category-products.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/it/http/src/test/resources/com/adobe/cq/commerce/it/http/magento-graphql-category-products.json -------------------------------------------------------------------------------- /it/http/src/test/resources/com/adobe/cq/commerce/it/http/magento-graphql-categorylist-coats.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/it/http/src/test/resources/com/adobe/cq/commerce/it/http/magento-graphql-categorylist-coats.json -------------------------------------------------------------------------------- /it/http/src/test/resources/com/adobe/cq/commerce/it/http/magento-graphql-categorylist-empty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/it/http/src/test/resources/com/adobe/cq/commerce/it/http/magento-graphql-categorylist-empty.json -------------------------------------------------------------------------------- /it/http/src/test/resources/com/adobe/cq/commerce/it/http/magento-graphql-categorylist-men.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/it/http/src/test/resources/com/adobe/cq/commerce/it/http/magento-graphql-categorylist-men.json -------------------------------------------------------------------------------- /it/http/src/test/resources/com/adobe/cq/commerce/it/http/magento-graphql-categorylist-root.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/it/http/src/test/resources/com/adobe/cq/commerce/it/http/magento-graphql-categorylist-root.json -------------------------------------------------------------------------------- /it/http/src/test/resources/com/adobe/cq/commerce/it/http/magento-graphql-product.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/it/http/src/test/resources/com/adobe/cq/commerce/it/http/magento-graphql-product.json -------------------------------------------------------------------------------- /it/mock-server/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/it/mock-server/pom.xml -------------------------------------------------------------------------------- /it/mock-server/src/main/java/com/adobe/cq/testing/mockserver/MockRequest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/it/mock-server/src/main/java/com/adobe/cq/testing/mockserver/MockRequest.java -------------------------------------------------------------------------------- /it/mock-server/src/main/java/com/adobe/cq/testing/mockserver/MockResponse.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/it/mock-server/src/main/java/com/adobe/cq/testing/mockserver/MockResponse.java -------------------------------------------------------------------------------- /it/mock-server/src/main/java/com/adobe/cq/testing/mockserver/Request.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/it/mock-server/src/main/java/com/adobe/cq/testing/mockserver/Request.java -------------------------------------------------------------------------------- /it/mock-server/src/main/java/com/adobe/cq/testing/mockserver/RequestResponseRule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/it/mock-server/src/main/java/com/adobe/cq/testing/mockserver/RequestResponseRule.java -------------------------------------------------------------------------------- /it/mock-server/src/main/java/com/adobe/cq/testing/mockserver/RequestWrapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/it/mock-server/src/main/java/com/adobe/cq/testing/mockserver/RequestWrapper.java -------------------------------------------------------------------------------- /it/mock-server/src/main/java/com/adobe/cq/testing/mockserver/Response.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/it/mock-server/src/main/java/com/adobe/cq/testing/mockserver/Response.java -------------------------------------------------------------------------------- /it/mock-server/src/main/java/com/adobe/cq/testing/mockserver/Rule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/it/mock-server/src/main/java/com/adobe/cq/testing/mockserver/Rule.java -------------------------------------------------------------------------------- /it/mock-server/src/main/java/com/adobe/cq/testing/mockserver/Server.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/it/mock-server/src/main/java/com/adobe/cq/testing/mockserver/Server.java -------------------------------------------------------------------------------- /it/mock-server/src/main/java/com/adobe/cq/testing/mockserver/Servlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/it/mock-server/src/main/java/com/adobe/cq/testing/mockserver/Servlet.java -------------------------------------------------------------------------------- /it/mock-server/src/main/java/com/adobe/cq/testing/mockserver/StringComparator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/it/mock-server/src/main/java/com/adobe/cq/testing/mockserver/StringComparator.java -------------------------------------------------------------------------------- /it/mock-server/src/main/resources/com/adobe/cq/testing/mockserver/identity.jks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/it/mock-server/src/main/resources/com/adobe/cq/testing/mockserver/identity.jks -------------------------------------------------------------------------------- /it/mock-server/src/main/resources/com/adobe/cq/testing/mockserver/identity.p12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/it/mock-server/src/main/resources/com/adobe/cq/testing/mockserver/identity.p12 -------------------------------------------------------------------------------- /it/mock-server/src/test/java/com/adobe/cq/testing/mockserver/junit/ServerRule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/it/mock-server/src/test/java/com/adobe/cq/testing/mockserver/junit/ServerRule.java -------------------------------------------------------------------------------- /parent/eclipse-formatter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/parent/eclipse-formatter.xml -------------------------------------------------------------------------------- /parent/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/parent/pom.xml -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/commerce-cif-connector/HEAD/pom.xml --------------------------------------------------------------------------------