├── Api ├── AttributeSetRepositoryInterface.php ├── CategoryRepositoryInterface.php ├── Data │ └── AttributeSetInterface.php ├── Pimcore │ ├── PimcoreAttributeMapperInterface.php │ └── PimcoreProductInterface.php ├── ProductRepositoryInterface.php ├── Queue │ ├── AssetQueueImporterInterface.php │ ├── AssetQueueRepositoryInterface.php │ ├── CategoryQueueImporterInterface.php │ ├── CategoryQueueRepositoryInterface.php │ ├── Data │ │ ├── AssetQueueInterface.php │ │ ├── AssetQueueSearchResultsInterface.php │ │ ├── CategoryQueueInterface.php │ │ ├── CategoryQueueSearchResultsInterface.php │ │ ├── ProductQueueInterface.php │ │ ├── ProductQueueSearchResultsInterface.php │ │ └── QueueInterface.php │ ├── ProductQueueImporterInterface.php │ └── ProductQueueRepositoryInterface.php └── RequestClientInterface.php ├── CHANGELOG.md ├── Console └── Command │ ├── AssetsImportCommand.php │ ├── CategoryImportCommand.php │ └── ProductImportCommand.php ├── Cron ├── CronJobInterface.php ├── OldQueueEntriesRemover.php ├── ProductPublisher.php ├── UnusedAttributeOptionsRemover.php └── UnusedAttributeSetRemover.php ├── Exception ├── InvalidAssetMetadataException.php ├── InvalidAssetTypeException.php ├── InvalidChecksumException.php ├── InvalidDataStructureException.php ├── InvalidQueueTypeException.php ├── InvalidResponseData.php ├── InvalidStrategyException.php ├── InvalidTypeException.php └── UnpublishedCategoryException.php ├── File └── Mime.php ├── Http ├── EndpointUrlBuilder.php ├── Notification │ ├── NotificationErrorCode.php │ ├── NotificationStatusInterface.php │ ├── PimcoreNotificator.php │ └── PimcoreNotificatorInterface.php ├── Request │ └── RequestClient.php ├── Response │ └── Transformator │ │ ├── AssetUpdateTransformator.php │ │ ├── CategoryUpdateTransformator.php │ │ ├── Data │ │ ├── AssetDataObject.php │ │ ├── AssetInterface.php │ │ ├── Checksum.php │ │ ├── ChecksumInterface.php │ │ ├── Property.php │ │ ├── PropertyInterface.php │ │ ├── PropertyResolver.php │ │ └── PropertyResolverInterface.php │ │ ├── ProductTypeResolver.php │ │ ├── ProductUpdateTransformator.php │ │ └── ResponseTransformatorInterface.php └── UrlBuilderInterface.php ├── LICENSE_DIVANTE.txt ├── Listeners ├── AttributeSet │ ├── NameResolver.php │ └── NameResolverInterface.php ├── CategoryLinkerListener.php ├── LinkConfigurableListener.php ├── NewAttributeListener.php ├── NewAttributeSetListener.php ├── RelatedProductsLinkerListener.php ├── StockUpdateListener.php └── Validator │ ├── AttributeCodeValidator.php │ └── AttributeCodeValidatorInterface.php ├── Logger ├── BridgeLoggerFactory.php ├── Greylog │ ├── Handler.php │ └── Logger.php └── Stream │ ├── Handler │ ├── CriticalHandler.php │ └── InfoHandler.php │ └── Logger.php ├── Model ├── AbstractQueue.php ├── Catalog │ └── Product │ │ └── Attribute │ │ ├── Creator │ │ └── Strategy │ │ │ ├── AbstractObjectTypeStrategy.php │ │ │ ├── AbstractOptionTypeStrategy.php │ │ │ ├── AbstractStrategy.php │ │ │ ├── AttributeCreationStrategyFactory.php │ │ │ ├── AttributeCreationStrategyInterface.php │ │ │ ├── DatetimeStrategy.php │ │ │ ├── MultiobjectStrategy.php │ │ │ ├── MultiselectStrategy.php │ │ │ ├── ObjectStrategy.php │ │ │ ├── SelectStrategy.php │ │ │ ├── StrategyFactoryInterface.php │ │ │ ├── TextStrategy.php │ │ │ ├── TextareaStrategy.php │ │ │ ├── WysiwygStrategy.php │ │ │ └── YesnoStrategy.php │ │ ├── LabelManager.php │ │ └── SetRepository.php ├── CategoryRepository.php ├── Config │ └── Source │ │ ├── Logger │ │ └── Type.php │ │ └── QueueOutdated.php ├── Eav │ └── Entity │ │ ├── Attribute │ │ └── Set.php │ │ └── OptionResolver.php ├── Entity │ └── Attribute │ │ └── Backend │ │ └── IsActiveInPimcore.php ├── Pimcore │ ├── Mapper │ │ ├── BooleanMapper.php │ │ ├── ComplexMapperInterface.php │ │ └── VisibilityMapper.php │ ├── PimcoreProduct.php │ └── SimpleAttributeMapper.php ├── ProductRepository.php ├── Queue │ ├── Asset │ │ ├── AssetQueue.php │ │ ├── AssetQueueRepository.php │ │ ├── AssetQueueValidator.php │ │ ├── AssetTypeInterface.php │ │ └── ResourceModel │ │ │ ├── AssetQueue.php │ │ │ └── AssetQueue │ │ │ └── Collection.php │ ├── Category │ │ ├── CategoryQueue.php │ │ ├── CategoryQueueRepository.php │ │ ├── CategoryQueueValidator.php │ │ └── ResourceModel │ │ │ ├── CategoryQueue.php │ │ │ └── CategoryQueue │ │ │ └── Collection.php │ ├── Product │ │ ├── ProductQueue.php │ │ ├── ProductQueueRepository.php │ │ ├── ProductQueueValidator.php │ │ └── ResourceModel │ │ │ ├── ProductQueue.php │ │ │ └── ProductQueue │ │ │ └── Collection.php │ └── QueueRepositoryFactory.php └── ResourceModel │ └── Product │ └── Gallery.php ├── Plugin └── Model │ └── ResourceModel │ └── Attribute │ └── InStockOptionSelectBuilder.php ├── Queue ├── Action │ ├── ActionFactory.php │ ├── ActionResult.php │ ├── ActionResultInterface.php │ ├── Asset │ │ ├── AssetEntity.php │ │ ├── AssetType.php │ │ ├── ChecksumValidator.php │ │ ├── ChecksumValidatorInterface.php │ │ ├── File.php │ │ ├── FileInterface.php │ │ ├── PathResolver.php │ │ ├── Strategy │ │ │ ├── AssetHandlerStrategyFactory.php │ │ │ ├── AssetHandlerStrategyInterface.php │ │ │ ├── CategoryImages.php │ │ │ ├── ProductImage.php │ │ │ └── ReplaceImages.php │ │ ├── TypeMetadataBuilder.php │ │ ├── TypeMetadataBuilderInterface.php │ │ ├── TypeMetadataExtractor.php │ │ └── TypeMetadataExtractorInterface.php │ ├── Category │ │ └── AdditionalDataResource.php │ ├── DeleteAssetAction.php │ ├── DeleteCategoryAction.php │ ├── DeleteProductAction.php │ ├── Product │ │ ├── CategoryIdsModifier.php │ │ ├── DataModifierInterface.php │ │ ├── EavAttributeOptionModifier.php │ │ ├── GalleryImagesUpdater.php │ │ ├── GalleryImagesUpdaterInterface.php │ │ ├── MediaGalleryDataModifier.php │ │ ├── NewsToModifier.php │ │ └── PriceModifier.php │ ├── TypeStrategy │ │ ├── ConfigurableProductStrategy.php │ │ ├── ProductTypeCreationStrategyInterface.php │ │ ├── SimpleProductStrategy.php │ │ └── TypeStrategyFactory.php │ ├── UpdateAssetAction.php │ ├── UpdateCategoryAction.php │ └── UpdateProductAction.php ├── ActionInterface.php ├── Builder │ ├── DbQueueBuilder.php │ └── QueueBuilderInterface.php ├── Importer │ ├── AbstractImporter.php │ ├── AssetQueueImporter.php │ ├── CategoryQueueImporter.php │ └── ProductQueueImporter.php ├── Processor │ ├── AbstractQueueProcessor.php │ ├── AssetQueueProcessor.php │ ├── CategoryQueueProcessor.php │ └── ProductQueueProcessor.php ├── QueueFactory.php ├── QueueProcessorInterface.php └── QueueStatusInterface.php ├── README.md ├── README ├── config_1.png ├── config_2.png ├── config_3.png ├── integration_diagram.jpg └── integration_diagram.png ├── Setup ├── InstallData.php ├── InstallSchema.php ├── UpgradeData.php └── UpgradeSchema.php ├── System ├── Config.php ├── Config │ ├── AbstractFrequencyConfig.php │ ├── CronFrequencyConfig.php │ ├── UnusedAttributeOptionsFrequency.php │ └── UnusedAttributeSetFrequency.php └── ConfigInterface.php ├── Test ├── FakeResponseGenerator.php ├── Functional │ └── Webapi │ │ ├── AssetWebapiTest.php │ │ ├── CategoryWebapiTest.php │ │ └── ProductWebapiTest.php ├── Integration │ ├── CommandsConfigTest.php │ ├── Http │ │ └── Response │ │ │ └── Transformator │ │ │ └── ProductUpdateTransformatorTest.php │ ├── Listeners │ │ ├── AttributeSet │ │ │ └── NameResolverTest.php │ │ └── NewAttributeSetListenerTest.php │ ├── Model │ │ ├── CategoryQueueRepositoryTest.php │ │ ├── Product │ │ │ └── Attribute │ │ │ │ ├── AttributeSetRepositoryTest.php │ │ │ │ └── AttributeSetTest.php │ │ └── Queue │ │ │ └── Category │ │ │ └── CategoryQueueRepositoryTest.php │ ├── Queue │ │ ├── Action │ │ │ ├── Asset │ │ │ │ └── Strategy │ │ │ │ │ └── ReplaceImagesTest.php │ │ │ ├── DeleteCategoryActionTest.php │ │ │ ├── Product │ │ │ │ └── PriceModifierTest.php │ │ │ ├── UpdateAssetActionTest.php │ │ │ └── UpdateCategoryActionTest.php │ │ └── Processor │ │ │ └── AssetQueueProcessorTest.php │ └── _files │ │ ├── 117_pim.jpg │ │ ├── category.php │ │ ├── category_image.php │ │ ├── category_with_image.php │ │ ├── empty_attribute_set.php │ │ ├── multiple_category_queue.php │ │ ├── product_base_image_asset_queue.php │ │ ├── product_image.php │ │ ├── product_simple.php │ │ ├── product_with_image.php │ │ ├── single_category_queue_delete.php │ │ └── single_category_queue_update.php └── Unit │ ├── Cron │ ├── OldQueueEntriesRemoverTest.php │ └── ProductPublisherTest.php │ ├── Http │ ├── EndpointUrlBuilderTest.php │ ├── Notification │ │ └── PimcoreNotificatorTest.php │ └── Request │ │ └── RequestClientTest.php │ ├── Logger │ └── BridgeLoggerFactoryTest.php │ ├── Model │ ├── Category │ │ └── CategoryQueueValidatorTest.php │ ├── CategoryRepositoryTest.php │ └── Config │ │ └── Source │ │ └── Logger │ │ └── TypeTest.php │ ├── Queue │ ├── Action │ │ ├── ActionFactoryTest.php │ │ ├── Asset │ │ │ ├── ChecksumValidatorTest.php │ │ │ ├── FileTest.php │ │ │ ├── TypeMetadataBuilderTest.php │ │ │ └── TypeMetadataExtractorTest.php │ │ └── Product │ │ │ └── PriceModifierTest.php │ └── Builder │ │ └── DbQueueBuilderTest.php │ └── System │ └── ConfigTest.php ├── Webapi └── Response │ └── CodesInterface.php ├── composer.json ├── etc ├── acl.xml ├── adminhtml │ └── system.xml ├── config.xml ├── crontab.xml ├── di.xml ├── events.xml ├── module.xml └── webapi.xml └── registration.php /Api/AttributeSetRepositoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Api/AttributeSetRepositoryInterface.php -------------------------------------------------------------------------------- /Api/CategoryRepositoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Api/CategoryRepositoryInterface.php -------------------------------------------------------------------------------- /Api/Data/AttributeSetInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Api/Data/AttributeSetInterface.php -------------------------------------------------------------------------------- /Api/Pimcore/PimcoreAttributeMapperInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Api/Pimcore/PimcoreAttributeMapperInterface.php -------------------------------------------------------------------------------- /Api/Pimcore/PimcoreProductInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Api/Pimcore/PimcoreProductInterface.php -------------------------------------------------------------------------------- /Api/ProductRepositoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Api/ProductRepositoryInterface.php -------------------------------------------------------------------------------- /Api/Queue/AssetQueueImporterInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Api/Queue/AssetQueueImporterInterface.php -------------------------------------------------------------------------------- /Api/Queue/AssetQueueRepositoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Api/Queue/AssetQueueRepositoryInterface.php -------------------------------------------------------------------------------- /Api/Queue/CategoryQueueImporterInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Api/Queue/CategoryQueueImporterInterface.php -------------------------------------------------------------------------------- /Api/Queue/CategoryQueueRepositoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Api/Queue/CategoryQueueRepositoryInterface.php -------------------------------------------------------------------------------- /Api/Queue/Data/AssetQueueInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Api/Queue/Data/AssetQueueInterface.php -------------------------------------------------------------------------------- /Api/Queue/Data/AssetQueueSearchResultsInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Api/Queue/Data/AssetQueueSearchResultsInterface.php -------------------------------------------------------------------------------- /Api/Queue/Data/CategoryQueueInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Api/Queue/Data/CategoryQueueInterface.php -------------------------------------------------------------------------------- /Api/Queue/Data/CategoryQueueSearchResultsInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Api/Queue/Data/CategoryQueueSearchResultsInterface.php -------------------------------------------------------------------------------- /Api/Queue/Data/ProductQueueInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Api/Queue/Data/ProductQueueInterface.php -------------------------------------------------------------------------------- /Api/Queue/Data/ProductQueueSearchResultsInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Api/Queue/Data/ProductQueueSearchResultsInterface.php -------------------------------------------------------------------------------- /Api/Queue/Data/QueueInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Api/Queue/Data/QueueInterface.php -------------------------------------------------------------------------------- /Api/Queue/ProductQueueImporterInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Api/Queue/ProductQueueImporterInterface.php -------------------------------------------------------------------------------- /Api/Queue/ProductQueueRepositoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Api/Queue/ProductQueueRepositoryInterface.php -------------------------------------------------------------------------------- /Api/RequestClientInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Api/RequestClientInterface.php -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Console/Command/AssetsImportCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Console/Command/AssetsImportCommand.php -------------------------------------------------------------------------------- /Console/Command/CategoryImportCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Console/Command/CategoryImportCommand.php -------------------------------------------------------------------------------- /Console/Command/ProductImportCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Console/Command/ProductImportCommand.php -------------------------------------------------------------------------------- /Cron/CronJobInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Cron/CronJobInterface.php -------------------------------------------------------------------------------- /Cron/OldQueueEntriesRemover.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Cron/OldQueueEntriesRemover.php -------------------------------------------------------------------------------- /Cron/ProductPublisher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Cron/ProductPublisher.php -------------------------------------------------------------------------------- /Cron/UnusedAttributeOptionsRemover.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Cron/UnusedAttributeOptionsRemover.php -------------------------------------------------------------------------------- /Cron/UnusedAttributeSetRemover.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Cron/UnusedAttributeSetRemover.php -------------------------------------------------------------------------------- /Exception/InvalidAssetMetadataException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Exception/InvalidAssetMetadataException.php -------------------------------------------------------------------------------- /Exception/InvalidAssetTypeException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Exception/InvalidAssetTypeException.php -------------------------------------------------------------------------------- /Exception/InvalidChecksumException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Exception/InvalidChecksumException.php -------------------------------------------------------------------------------- /Exception/InvalidDataStructureException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Exception/InvalidDataStructureException.php -------------------------------------------------------------------------------- /Exception/InvalidQueueTypeException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Exception/InvalidQueueTypeException.php -------------------------------------------------------------------------------- /Exception/InvalidResponseData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Exception/InvalidResponseData.php -------------------------------------------------------------------------------- /Exception/InvalidStrategyException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Exception/InvalidStrategyException.php -------------------------------------------------------------------------------- /Exception/InvalidTypeException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Exception/InvalidTypeException.php -------------------------------------------------------------------------------- /Exception/UnpublishedCategoryException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Exception/UnpublishedCategoryException.php -------------------------------------------------------------------------------- /File/Mime.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/File/Mime.php -------------------------------------------------------------------------------- /Http/EndpointUrlBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Http/EndpointUrlBuilder.php -------------------------------------------------------------------------------- /Http/Notification/NotificationErrorCode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Http/Notification/NotificationErrorCode.php -------------------------------------------------------------------------------- /Http/Notification/NotificationStatusInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Http/Notification/NotificationStatusInterface.php -------------------------------------------------------------------------------- /Http/Notification/PimcoreNotificator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Http/Notification/PimcoreNotificator.php -------------------------------------------------------------------------------- /Http/Notification/PimcoreNotificatorInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Http/Notification/PimcoreNotificatorInterface.php -------------------------------------------------------------------------------- /Http/Request/RequestClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Http/Request/RequestClient.php -------------------------------------------------------------------------------- /Http/Response/Transformator/AssetUpdateTransformator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Http/Response/Transformator/AssetUpdateTransformator.php -------------------------------------------------------------------------------- /Http/Response/Transformator/CategoryUpdateTransformator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Http/Response/Transformator/CategoryUpdateTransformator.php -------------------------------------------------------------------------------- /Http/Response/Transformator/Data/AssetDataObject.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Http/Response/Transformator/Data/AssetDataObject.php -------------------------------------------------------------------------------- /Http/Response/Transformator/Data/AssetInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Http/Response/Transformator/Data/AssetInterface.php -------------------------------------------------------------------------------- /Http/Response/Transformator/Data/Checksum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Http/Response/Transformator/Data/Checksum.php -------------------------------------------------------------------------------- /Http/Response/Transformator/Data/ChecksumInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Http/Response/Transformator/Data/ChecksumInterface.php -------------------------------------------------------------------------------- /Http/Response/Transformator/Data/Property.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Http/Response/Transformator/Data/Property.php -------------------------------------------------------------------------------- /Http/Response/Transformator/Data/PropertyInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Http/Response/Transformator/Data/PropertyInterface.php -------------------------------------------------------------------------------- /Http/Response/Transformator/Data/PropertyResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Http/Response/Transformator/Data/PropertyResolver.php -------------------------------------------------------------------------------- /Http/Response/Transformator/Data/PropertyResolverInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Http/Response/Transformator/Data/PropertyResolverInterface.php -------------------------------------------------------------------------------- /Http/Response/Transformator/ProductTypeResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Http/Response/Transformator/ProductTypeResolver.php -------------------------------------------------------------------------------- /Http/Response/Transformator/ProductUpdateTransformator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Http/Response/Transformator/ProductUpdateTransformator.php -------------------------------------------------------------------------------- /Http/Response/Transformator/ResponseTransformatorInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Http/Response/Transformator/ResponseTransformatorInterface.php -------------------------------------------------------------------------------- /Http/UrlBuilderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Http/UrlBuilderInterface.php -------------------------------------------------------------------------------- /LICENSE_DIVANTE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/LICENSE_DIVANTE.txt -------------------------------------------------------------------------------- /Listeners/AttributeSet/NameResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Listeners/AttributeSet/NameResolver.php -------------------------------------------------------------------------------- /Listeners/AttributeSet/NameResolverInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Listeners/AttributeSet/NameResolverInterface.php -------------------------------------------------------------------------------- /Listeners/CategoryLinkerListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Listeners/CategoryLinkerListener.php -------------------------------------------------------------------------------- /Listeners/LinkConfigurableListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Listeners/LinkConfigurableListener.php -------------------------------------------------------------------------------- /Listeners/NewAttributeListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Listeners/NewAttributeListener.php -------------------------------------------------------------------------------- /Listeners/NewAttributeSetListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Listeners/NewAttributeSetListener.php -------------------------------------------------------------------------------- /Listeners/RelatedProductsLinkerListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Listeners/RelatedProductsLinkerListener.php -------------------------------------------------------------------------------- /Listeners/StockUpdateListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Listeners/StockUpdateListener.php -------------------------------------------------------------------------------- /Listeners/Validator/AttributeCodeValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Listeners/Validator/AttributeCodeValidator.php -------------------------------------------------------------------------------- /Listeners/Validator/AttributeCodeValidatorInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Listeners/Validator/AttributeCodeValidatorInterface.php -------------------------------------------------------------------------------- /Logger/BridgeLoggerFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Logger/BridgeLoggerFactory.php -------------------------------------------------------------------------------- /Logger/Greylog/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Logger/Greylog/Handler.php -------------------------------------------------------------------------------- /Logger/Greylog/Logger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Logger/Greylog/Logger.php -------------------------------------------------------------------------------- /Logger/Stream/Handler/CriticalHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Logger/Stream/Handler/CriticalHandler.php -------------------------------------------------------------------------------- /Logger/Stream/Handler/InfoHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Logger/Stream/Handler/InfoHandler.php -------------------------------------------------------------------------------- /Logger/Stream/Logger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Logger/Stream/Logger.php -------------------------------------------------------------------------------- /Model/AbstractQueue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Model/AbstractQueue.php -------------------------------------------------------------------------------- /Model/Catalog/Product/Attribute/Creator/Strategy/AbstractObjectTypeStrategy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Model/Catalog/Product/Attribute/Creator/Strategy/AbstractObjectTypeStrategy.php -------------------------------------------------------------------------------- /Model/Catalog/Product/Attribute/Creator/Strategy/AbstractOptionTypeStrategy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Model/Catalog/Product/Attribute/Creator/Strategy/AbstractOptionTypeStrategy.php -------------------------------------------------------------------------------- /Model/Catalog/Product/Attribute/Creator/Strategy/AbstractStrategy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Model/Catalog/Product/Attribute/Creator/Strategy/AbstractStrategy.php -------------------------------------------------------------------------------- /Model/Catalog/Product/Attribute/Creator/Strategy/AttributeCreationStrategyFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Model/Catalog/Product/Attribute/Creator/Strategy/AttributeCreationStrategyFactory.php -------------------------------------------------------------------------------- /Model/Catalog/Product/Attribute/Creator/Strategy/AttributeCreationStrategyInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Model/Catalog/Product/Attribute/Creator/Strategy/AttributeCreationStrategyInterface.php -------------------------------------------------------------------------------- /Model/Catalog/Product/Attribute/Creator/Strategy/DatetimeStrategy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Model/Catalog/Product/Attribute/Creator/Strategy/DatetimeStrategy.php -------------------------------------------------------------------------------- /Model/Catalog/Product/Attribute/Creator/Strategy/MultiobjectStrategy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Model/Catalog/Product/Attribute/Creator/Strategy/MultiobjectStrategy.php -------------------------------------------------------------------------------- /Model/Catalog/Product/Attribute/Creator/Strategy/MultiselectStrategy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Model/Catalog/Product/Attribute/Creator/Strategy/MultiselectStrategy.php -------------------------------------------------------------------------------- /Model/Catalog/Product/Attribute/Creator/Strategy/ObjectStrategy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Model/Catalog/Product/Attribute/Creator/Strategy/ObjectStrategy.php -------------------------------------------------------------------------------- /Model/Catalog/Product/Attribute/Creator/Strategy/SelectStrategy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Model/Catalog/Product/Attribute/Creator/Strategy/SelectStrategy.php -------------------------------------------------------------------------------- /Model/Catalog/Product/Attribute/Creator/Strategy/StrategyFactoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Model/Catalog/Product/Attribute/Creator/Strategy/StrategyFactoryInterface.php -------------------------------------------------------------------------------- /Model/Catalog/Product/Attribute/Creator/Strategy/TextStrategy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Model/Catalog/Product/Attribute/Creator/Strategy/TextStrategy.php -------------------------------------------------------------------------------- /Model/Catalog/Product/Attribute/Creator/Strategy/TextareaStrategy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Model/Catalog/Product/Attribute/Creator/Strategy/TextareaStrategy.php -------------------------------------------------------------------------------- /Model/Catalog/Product/Attribute/Creator/Strategy/WysiwygStrategy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Model/Catalog/Product/Attribute/Creator/Strategy/WysiwygStrategy.php -------------------------------------------------------------------------------- /Model/Catalog/Product/Attribute/Creator/Strategy/YesnoStrategy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Model/Catalog/Product/Attribute/Creator/Strategy/YesnoStrategy.php -------------------------------------------------------------------------------- /Model/Catalog/Product/Attribute/LabelManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Model/Catalog/Product/Attribute/LabelManager.php -------------------------------------------------------------------------------- /Model/Catalog/Product/Attribute/SetRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Model/Catalog/Product/Attribute/SetRepository.php -------------------------------------------------------------------------------- /Model/CategoryRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Model/CategoryRepository.php -------------------------------------------------------------------------------- /Model/Config/Source/Logger/Type.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Model/Config/Source/Logger/Type.php -------------------------------------------------------------------------------- /Model/Config/Source/QueueOutdated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Model/Config/Source/QueueOutdated.php -------------------------------------------------------------------------------- /Model/Eav/Entity/Attribute/Set.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Model/Eav/Entity/Attribute/Set.php -------------------------------------------------------------------------------- /Model/Eav/Entity/OptionResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Model/Eav/Entity/OptionResolver.php -------------------------------------------------------------------------------- /Model/Entity/Attribute/Backend/IsActiveInPimcore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Model/Entity/Attribute/Backend/IsActiveInPimcore.php -------------------------------------------------------------------------------- /Model/Pimcore/Mapper/BooleanMapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Model/Pimcore/Mapper/BooleanMapper.php -------------------------------------------------------------------------------- /Model/Pimcore/Mapper/ComplexMapperInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Model/Pimcore/Mapper/ComplexMapperInterface.php -------------------------------------------------------------------------------- /Model/Pimcore/Mapper/VisibilityMapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Model/Pimcore/Mapper/VisibilityMapper.php -------------------------------------------------------------------------------- /Model/Pimcore/PimcoreProduct.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Model/Pimcore/PimcoreProduct.php -------------------------------------------------------------------------------- /Model/Pimcore/SimpleAttributeMapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Model/Pimcore/SimpleAttributeMapper.php -------------------------------------------------------------------------------- /Model/ProductRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Model/ProductRepository.php -------------------------------------------------------------------------------- /Model/Queue/Asset/AssetQueue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Model/Queue/Asset/AssetQueue.php -------------------------------------------------------------------------------- /Model/Queue/Asset/AssetQueueRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Model/Queue/Asset/AssetQueueRepository.php -------------------------------------------------------------------------------- /Model/Queue/Asset/AssetQueueValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Model/Queue/Asset/AssetQueueValidator.php -------------------------------------------------------------------------------- /Model/Queue/Asset/AssetTypeInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Model/Queue/Asset/AssetTypeInterface.php -------------------------------------------------------------------------------- /Model/Queue/Asset/ResourceModel/AssetQueue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Model/Queue/Asset/ResourceModel/AssetQueue.php -------------------------------------------------------------------------------- /Model/Queue/Asset/ResourceModel/AssetQueue/Collection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Model/Queue/Asset/ResourceModel/AssetQueue/Collection.php -------------------------------------------------------------------------------- /Model/Queue/Category/CategoryQueue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Model/Queue/Category/CategoryQueue.php -------------------------------------------------------------------------------- /Model/Queue/Category/CategoryQueueRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Model/Queue/Category/CategoryQueueRepository.php -------------------------------------------------------------------------------- /Model/Queue/Category/CategoryQueueValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Model/Queue/Category/CategoryQueueValidator.php -------------------------------------------------------------------------------- /Model/Queue/Category/ResourceModel/CategoryQueue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Model/Queue/Category/ResourceModel/CategoryQueue.php -------------------------------------------------------------------------------- /Model/Queue/Category/ResourceModel/CategoryQueue/Collection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Model/Queue/Category/ResourceModel/CategoryQueue/Collection.php -------------------------------------------------------------------------------- /Model/Queue/Product/ProductQueue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Model/Queue/Product/ProductQueue.php -------------------------------------------------------------------------------- /Model/Queue/Product/ProductQueueRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Model/Queue/Product/ProductQueueRepository.php -------------------------------------------------------------------------------- /Model/Queue/Product/ProductQueueValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Model/Queue/Product/ProductQueueValidator.php -------------------------------------------------------------------------------- /Model/Queue/Product/ResourceModel/ProductQueue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Model/Queue/Product/ResourceModel/ProductQueue.php -------------------------------------------------------------------------------- /Model/Queue/Product/ResourceModel/ProductQueue/Collection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Model/Queue/Product/ResourceModel/ProductQueue/Collection.php -------------------------------------------------------------------------------- /Model/Queue/QueueRepositoryFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Model/Queue/QueueRepositoryFactory.php -------------------------------------------------------------------------------- /Model/ResourceModel/Product/Gallery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Model/ResourceModel/Product/Gallery.php -------------------------------------------------------------------------------- /Plugin/Model/ResourceModel/Attribute/InStockOptionSelectBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Plugin/Model/ResourceModel/Attribute/InStockOptionSelectBuilder.php -------------------------------------------------------------------------------- /Queue/Action/ActionFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Queue/Action/ActionFactory.php -------------------------------------------------------------------------------- /Queue/Action/ActionResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Queue/Action/ActionResult.php -------------------------------------------------------------------------------- /Queue/Action/ActionResultInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Queue/Action/ActionResultInterface.php -------------------------------------------------------------------------------- /Queue/Action/Asset/AssetEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Queue/Action/Asset/AssetEntity.php -------------------------------------------------------------------------------- /Queue/Action/Asset/AssetType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Queue/Action/Asset/AssetType.php -------------------------------------------------------------------------------- /Queue/Action/Asset/ChecksumValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Queue/Action/Asset/ChecksumValidator.php -------------------------------------------------------------------------------- /Queue/Action/Asset/ChecksumValidatorInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Queue/Action/Asset/ChecksumValidatorInterface.php -------------------------------------------------------------------------------- /Queue/Action/Asset/File.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Queue/Action/Asset/File.php -------------------------------------------------------------------------------- /Queue/Action/Asset/FileInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Queue/Action/Asset/FileInterface.php -------------------------------------------------------------------------------- /Queue/Action/Asset/PathResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Queue/Action/Asset/PathResolver.php -------------------------------------------------------------------------------- /Queue/Action/Asset/Strategy/AssetHandlerStrategyFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Queue/Action/Asset/Strategy/AssetHandlerStrategyFactory.php -------------------------------------------------------------------------------- /Queue/Action/Asset/Strategy/AssetHandlerStrategyInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Queue/Action/Asset/Strategy/AssetHandlerStrategyInterface.php -------------------------------------------------------------------------------- /Queue/Action/Asset/Strategy/CategoryImages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Queue/Action/Asset/Strategy/CategoryImages.php -------------------------------------------------------------------------------- /Queue/Action/Asset/Strategy/ProductImage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Queue/Action/Asset/Strategy/ProductImage.php -------------------------------------------------------------------------------- /Queue/Action/Asset/Strategy/ReplaceImages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Queue/Action/Asset/Strategy/ReplaceImages.php -------------------------------------------------------------------------------- /Queue/Action/Asset/TypeMetadataBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Queue/Action/Asset/TypeMetadataBuilder.php -------------------------------------------------------------------------------- /Queue/Action/Asset/TypeMetadataBuilderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Queue/Action/Asset/TypeMetadataBuilderInterface.php -------------------------------------------------------------------------------- /Queue/Action/Asset/TypeMetadataExtractor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Queue/Action/Asset/TypeMetadataExtractor.php -------------------------------------------------------------------------------- /Queue/Action/Asset/TypeMetadataExtractorInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Queue/Action/Asset/TypeMetadataExtractorInterface.php -------------------------------------------------------------------------------- /Queue/Action/Category/AdditionalDataResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Queue/Action/Category/AdditionalDataResource.php -------------------------------------------------------------------------------- /Queue/Action/DeleteAssetAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Queue/Action/DeleteAssetAction.php -------------------------------------------------------------------------------- /Queue/Action/DeleteCategoryAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Queue/Action/DeleteCategoryAction.php -------------------------------------------------------------------------------- /Queue/Action/DeleteProductAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Queue/Action/DeleteProductAction.php -------------------------------------------------------------------------------- /Queue/Action/Product/CategoryIdsModifier.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Queue/Action/Product/CategoryIdsModifier.php -------------------------------------------------------------------------------- /Queue/Action/Product/DataModifierInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Queue/Action/Product/DataModifierInterface.php -------------------------------------------------------------------------------- /Queue/Action/Product/EavAttributeOptionModifier.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Queue/Action/Product/EavAttributeOptionModifier.php -------------------------------------------------------------------------------- /Queue/Action/Product/GalleryImagesUpdater.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Queue/Action/Product/GalleryImagesUpdater.php -------------------------------------------------------------------------------- /Queue/Action/Product/GalleryImagesUpdaterInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Queue/Action/Product/GalleryImagesUpdaterInterface.php -------------------------------------------------------------------------------- /Queue/Action/Product/MediaGalleryDataModifier.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Queue/Action/Product/MediaGalleryDataModifier.php -------------------------------------------------------------------------------- /Queue/Action/Product/NewsToModifier.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Queue/Action/Product/NewsToModifier.php -------------------------------------------------------------------------------- /Queue/Action/Product/PriceModifier.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Queue/Action/Product/PriceModifier.php -------------------------------------------------------------------------------- /Queue/Action/TypeStrategy/ConfigurableProductStrategy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Queue/Action/TypeStrategy/ConfigurableProductStrategy.php -------------------------------------------------------------------------------- /Queue/Action/TypeStrategy/ProductTypeCreationStrategyInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Queue/Action/TypeStrategy/ProductTypeCreationStrategyInterface.php -------------------------------------------------------------------------------- /Queue/Action/TypeStrategy/SimpleProductStrategy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Queue/Action/TypeStrategy/SimpleProductStrategy.php -------------------------------------------------------------------------------- /Queue/Action/TypeStrategy/TypeStrategyFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Queue/Action/TypeStrategy/TypeStrategyFactory.php -------------------------------------------------------------------------------- /Queue/Action/UpdateAssetAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Queue/Action/UpdateAssetAction.php -------------------------------------------------------------------------------- /Queue/Action/UpdateCategoryAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Queue/Action/UpdateCategoryAction.php -------------------------------------------------------------------------------- /Queue/Action/UpdateProductAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Queue/Action/UpdateProductAction.php -------------------------------------------------------------------------------- /Queue/ActionInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Queue/ActionInterface.php -------------------------------------------------------------------------------- /Queue/Builder/DbQueueBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Queue/Builder/DbQueueBuilder.php -------------------------------------------------------------------------------- /Queue/Builder/QueueBuilderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Queue/Builder/QueueBuilderInterface.php -------------------------------------------------------------------------------- /Queue/Importer/AbstractImporter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Queue/Importer/AbstractImporter.php -------------------------------------------------------------------------------- /Queue/Importer/AssetQueueImporter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Queue/Importer/AssetQueueImporter.php -------------------------------------------------------------------------------- /Queue/Importer/CategoryQueueImporter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Queue/Importer/CategoryQueueImporter.php -------------------------------------------------------------------------------- /Queue/Importer/ProductQueueImporter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Queue/Importer/ProductQueueImporter.php -------------------------------------------------------------------------------- /Queue/Processor/AbstractQueueProcessor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Queue/Processor/AbstractQueueProcessor.php -------------------------------------------------------------------------------- /Queue/Processor/AssetQueueProcessor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Queue/Processor/AssetQueueProcessor.php -------------------------------------------------------------------------------- /Queue/Processor/CategoryQueueProcessor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Queue/Processor/CategoryQueueProcessor.php -------------------------------------------------------------------------------- /Queue/Processor/ProductQueueProcessor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Queue/Processor/ProductQueueProcessor.php -------------------------------------------------------------------------------- /Queue/QueueFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Queue/QueueFactory.php -------------------------------------------------------------------------------- /Queue/QueueProcessorInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Queue/QueueProcessorInterface.php -------------------------------------------------------------------------------- /Queue/QueueStatusInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Queue/QueueStatusInterface.php -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/README.md -------------------------------------------------------------------------------- /README/config_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/README/config_1.png -------------------------------------------------------------------------------- /README/config_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/README/config_2.png -------------------------------------------------------------------------------- /README/config_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/README/config_3.png -------------------------------------------------------------------------------- /README/integration_diagram.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/README/integration_diagram.jpg -------------------------------------------------------------------------------- /README/integration_diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/README/integration_diagram.png -------------------------------------------------------------------------------- /Setup/InstallData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Setup/InstallData.php -------------------------------------------------------------------------------- /Setup/InstallSchema.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Setup/InstallSchema.php -------------------------------------------------------------------------------- /Setup/UpgradeData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Setup/UpgradeData.php -------------------------------------------------------------------------------- /Setup/UpgradeSchema.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Setup/UpgradeSchema.php -------------------------------------------------------------------------------- /System/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/System/Config.php -------------------------------------------------------------------------------- /System/Config/AbstractFrequencyConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/System/Config/AbstractFrequencyConfig.php -------------------------------------------------------------------------------- /System/Config/CronFrequencyConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/System/Config/CronFrequencyConfig.php -------------------------------------------------------------------------------- /System/Config/UnusedAttributeOptionsFrequency.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/System/Config/UnusedAttributeOptionsFrequency.php -------------------------------------------------------------------------------- /System/Config/UnusedAttributeSetFrequency.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/System/Config/UnusedAttributeSetFrequency.php -------------------------------------------------------------------------------- /System/ConfigInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/System/ConfigInterface.php -------------------------------------------------------------------------------- /Test/FakeResponseGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Test/FakeResponseGenerator.php -------------------------------------------------------------------------------- /Test/Functional/Webapi/AssetWebapiTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Test/Functional/Webapi/AssetWebapiTest.php -------------------------------------------------------------------------------- /Test/Functional/Webapi/CategoryWebapiTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Test/Functional/Webapi/CategoryWebapiTest.php -------------------------------------------------------------------------------- /Test/Functional/Webapi/ProductWebapiTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Test/Functional/Webapi/ProductWebapiTest.php -------------------------------------------------------------------------------- /Test/Integration/CommandsConfigTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Test/Integration/CommandsConfigTest.php -------------------------------------------------------------------------------- /Test/Integration/Http/Response/Transformator/ProductUpdateTransformatorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Test/Integration/Http/Response/Transformator/ProductUpdateTransformatorTest.php -------------------------------------------------------------------------------- /Test/Integration/Listeners/AttributeSet/NameResolverTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Test/Integration/Listeners/AttributeSet/NameResolverTest.php -------------------------------------------------------------------------------- /Test/Integration/Listeners/NewAttributeSetListenerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Test/Integration/Listeners/NewAttributeSetListenerTest.php -------------------------------------------------------------------------------- /Test/Integration/Model/CategoryQueueRepositoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Test/Integration/Model/CategoryQueueRepositoryTest.php -------------------------------------------------------------------------------- /Test/Integration/Model/Product/Attribute/AttributeSetRepositoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Test/Integration/Model/Product/Attribute/AttributeSetRepositoryTest.php -------------------------------------------------------------------------------- /Test/Integration/Model/Product/Attribute/AttributeSetTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Test/Integration/Model/Product/Attribute/AttributeSetTest.php -------------------------------------------------------------------------------- /Test/Integration/Model/Queue/Category/CategoryQueueRepositoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Test/Integration/Model/Queue/Category/CategoryQueueRepositoryTest.php -------------------------------------------------------------------------------- /Test/Integration/Queue/Action/Asset/Strategy/ReplaceImagesTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Test/Integration/Queue/Action/Asset/Strategy/ReplaceImagesTest.php -------------------------------------------------------------------------------- /Test/Integration/Queue/Action/DeleteCategoryActionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Test/Integration/Queue/Action/DeleteCategoryActionTest.php -------------------------------------------------------------------------------- /Test/Integration/Queue/Action/Product/PriceModifierTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Test/Integration/Queue/Action/Product/PriceModifierTest.php -------------------------------------------------------------------------------- /Test/Integration/Queue/Action/UpdateAssetActionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Test/Integration/Queue/Action/UpdateAssetActionTest.php -------------------------------------------------------------------------------- /Test/Integration/Queue/Action/UpdateCategoryActionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Test/Integration/Queue/Action/UpdateCategoryActionTest.php -------------------------------------------------------------------------------- /Test/Integration/Queue/Processor/AssetQueueProcessorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Test/Integration/Queue/Processor/AssetQueueProcessorTest.php -------------------------------------------------------------------------------- /Test/Integration/_files/117_pim.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Test/Integration/_files/117_pim.jpg -------------------------------------------------------------------------------- /Test/Integration/_files/category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Test/Integration/_files/category.php -------------------------------------------------------------------------------- /Test/Integration/_files/category_image.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Test/Integration/_files/category_image.php -------------------------------------------------------------------------------- /Test/Integration/_files/category_with_image.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Test/Integration/_files/category_with_image.php -------------------------------------------------------------------------------- /Test/Integration/_files/empty_attribute_set.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Test/Integration/_files/empty_attribute_set.php -------------------------------------------------------------------------------- /Test/Integration/_files/multiple_category_queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Test/Integration/_files/multiple_category_queue.php -------------------------------------------------------------------------------- /Test/Integration/_files/product_base_image_asset_queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Test/Integration/_files/product_base_image_asset_queue.php -------------------------------------------------------------------------------- /Test/Integration/_files/product_image.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Test/Integration/_files/product_image.php -------------------------------------------------------------------------------- /Test/Integration/_files/product_simple.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Test/Integration/_files/product_simple.php -------------------------------------------------------------------------------- /Test/Integration/_files/product_with_image.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Test/Integration/_files/product_with_image.php -------------------------------------------------------------------------------- /Test/Integration/_files/single_category_queue_delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Test/Integration/_files/single_category_queue_delete.php -------------------------------------------------------------------------------- /Test/Integration/_files/single_category_queue_update.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Test/Integration/_files/single_category_queue_update.php -------------------------------------------------------------------------------- /Test/Unit/Cron/OldQueueEntriesRemoverTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Test/Unit/Cron/OldQueueEntriesRemoverTest.php -------------------------------------------------------------------------------- /Test/Unit/Cron/ProductPublisherTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Test/Unit/Cron/ProductPublisherTest.php -------------------------------------------------------------------------------- /Test/Unit/Http/EndpointUrlBuilderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Test/Unit/Http/EndpointUrlBuilderTest.php -------------------------------------------------------------------------------- /Test/Unit/Http/Notification/PimcoreNotificatorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Test/Unit/Http/Notification/PimcoreNotificatorTest.php -------------------------------------------------------------------------------- /Test/Unit/Http/Request/RequestClientTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Test/Unit/Http/Request/RequestClientTest.php -------------------------------------------------------------------------------- /Test/Unit/Logger/BridgeLoggerFactoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Test/Unit/Logger/BridgeLoggerFactoryTest.php -------------------------------------------------------------------------------- /Test/Unit/Model/Category/CategoryQueueValidatorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Test/Unit/Model/Category/CategoryQueueValidatorTest.php -------------------------------------------------------------------------------- /Test/Unit/Model/CategoryRepositoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Test/Unit/Model/CategoryRepositoryTest.php -------------------------------------------------------------------------------- /Test/Unit/Model/Config/Source/Logger/TypeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Test/Unit/Model/Config/Source/Logger/TypeTest.php -------------------------------------------------------------------------------- /Test/Unit/Queue/Action/ActionFactoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Test/Unit/Queue/Action/ActionFactoryTest.php -------------------------------------------------------------------------------- /Test/Unit/Queue/Action/Asset/ChecksumValidatorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Test/Unit/Queue/Action/Asset/ChecksumValidatorTest.php -------------------------------------------------------------------------------- /Test/Unit/Queue/Action/Asset/FileTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Test/Unit/Queue/Action/Asset/FileTest.php -------------------------------------------------------------------------------- /Test/Unit/Queue/Action/Asset/TypeMetadataBuilderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Test/Unit/Queue/Action/Asset/TypeMetadataBuilderTest.php -------------------------------------------------------------------------------- /Test/Unit/Queue/Action/Asset/TypeMetadataExtractorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Test/Unit/Queue/Action/Asset/TypeMetadataExtractorTest.php -------------------------------------------------------------------------------- /Test/Unit/Queue/Action/Product/PriceModifierTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Test/Unit/Queue/Action/Product/PriceModifierTest.php -------------------------------------------------------------------------------- /Test/Unit/Queue/Builder/DbQueueBuilderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Test/Unit/Queue/Builder/DbQueueBuilderTest.php -------------------------------------------------------------------------------- /Test/Unit/System/ConfigTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Test/Unit/System/ConfigTest.php -------------------------------------------------------------------------------- /Webapi/Response/CodesInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/Webapi/Response/CodesInterface.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/composer.json -------------------------------------------------------------------------------- /etc/acl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/etc/acl.xml -------------------------------------------------------------------------------- /etc/adminhtml/system.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/etc/adminhtml/system.xml -------------------------------------------------------------------------------- /etc/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/etc/config.xml -------------------------------------------------------------------------------- /etc/crontab.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/etc/crontab.xml -------------------------------------------------------------------------------- /etc/di.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/etc/di.xml -------------------------------------------------------------------------------- /etc/events.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/etc/events.xml -------------------------------------------------------------------------------- /etc/module.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/etc/module.xml -------------------------------------------------------------------------------- /etc/webapi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/etc/webapi.xml -------------------------------------------------------------------------------- /registration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivanteLtd/magento2-pimcore-bridge/HEAD/registration.php --------------------------------------------------------------------------------