├── Api ├── Amazon │ └── OrderManagementInterface.php ├── DataObject.php ├── Ebay │ ├── Data │ │ ├── Order │ │ │ ├── BuyerInterface.php │ │ │ ├── OrderItem │ │ │ │ ├── TaxDetails │ │ │ │ │ └── CollectAndRemitInterface.php │ │ │ │ ├── TaxDetailsInterface.php │ │ │ │ └── TrackingDetailsInterface.php │ │ │ ├── OrderItemInterface.php │ │ │ ├── PaymentDetailsInterface.php │ │ │ ├── ShippingDetails │ │ │ │ ├── AddressInterface.php │ │ │ │ ├── ClickAndCollectDetailsInterface.php │ │ │ │ ├── GlobalShippingDetailsInterface.php │ │ │ │ └── InStorePickupDetailsInterface.php │ │ │ ├── ShippingDetailsInterface.php │ │ │ └── TaxDetailsInterface.php │ │ └── OrderInterface.php │ ├── DataSources │ │ └── DataSourceInterface.php │ ├── OrderManagementInterface.php │ ├── OrderRepositoryInterface.php │ ├── OrderSearchCriteriaInterface.php │ └── OrderSearchResultInterface.php └── Exception │ ├── ApiException.php │ └── NotFoundException.php ├── Block └── Adminhtml │ ├── Account │ ├── Grid.php │ └── Switcher.php │ ├── Amazon │ ├── Account.php │ ├── Account │ │ ├── Create.php │ │ ├── Create │ │ │ └── Form.php │ │ ├── Edit.php │ │ ├── Edit │ │ │ ├── Form.php │ │ │ ├── Tabs.php │ │ │ └── Tabs │ │ │ │ ├── FbaInventory.php │ │ │ │ ├── General.php │ │ │ │ ├── InvoicesAndShipments.php │ │ │ │ ├── ListingOther.php │ │ │ │ ├── Order.php │ │ │ │ └── Order │ │ │ │ ├── ExcludedCountries.php │ │ │ │ ├── ExcludedStates.php │ │ │ │ └── PrefixesTable.php │ │ ├── Grid.php │ │ └── Switcher.php │ ├── Dashboard │ │ ├── Errors │ │ │ └── UrlStorage.php │ │ └── Shipments │ │ │ └── UrlStorage.php │ ├── Grid │ │ └── Column │ │ │ ├── Filter │ │ │ ├── GeneralId.php │ │ │ ├── PolicySettings.php │ │ │ ├── Price.php │ │ │ └── Qty.php │ │ │ └── Renderer │ │ │ ├── Price.php │ │ │ ├── Qty.php │ │ │ ├── Sku.php │ │ │ ├── Status.php │ │ │ └── ViewLogIcon │ │ │ └── Listing.php │ ├── Listing.php │ ├── Listing │ │ ├── AllItems.php │ │ ├── AllItems │ │ │ └── Grid.php │ │ ├── AutoAction │ │ │ ├── Mode.php │ │ │ └── Mode │ │ │ │ ├── Category.php │ │ │ │ ├── Category │ │ │ │ ├── Form.php │ │ │ │ └── Group │ │ │ │ │ └── Grid.php │ │ │ │ ├── GlobalMode.php │ │ │ │ └── Website.php │ │ ├── Create │ │ │ ├── Breadcrumb.php │ │ │ ├── General.php │ │ │ ├── General │ │ │ │ └── Form.php │ │ │ ├── Selling.php │ │ │ └── Selling │ │ │ │ └── Form.php │ │ ├── Edit.php │ │ ├── Edit │ │ │ └── Form.php │ │ ├── ItemsByIssue.php │ │ ├── ItemsByIssue │ │ │ └── Grid.php │ │ ├── ItemsByListing.php │ │ ├── ItemsByListing │ │ │ └── Grid.php │ │ ├── Log │ │ │ └── Grid │ │ │ │ └── LastActions.php │ │ ├── Product │ │ │ ├── Add │ │ │ │ ├── NewAsin.php │ │ │ │ ├── NewAsin │ │ │ │ │ ├── Category.php │ │ │ │ │ ├── Category │ │ │ │ │ │ └── Grid.php │ │ │ │ │ ├── Form.php │ │ │ │ │ ├── Manual.php │ │ │ │ │ └── Manual │ │ │ │ │ │ ├── Grid.php │ │ │ │ │ │ └── SkipPopup.php │ │ │ │ ├── NotCompleteWizardPopup.php │ │ │ │ ├── Review.php │ │ │ │ ├── SearchAsin.php │ │ │ │ ├── SearchAsin │ │ │ │ │ ├── Grid.php │ │ │ │ │ └── NewAsinPopup.php │ │ │ │ ├── SourceMode.php │ │ │ │ ├── SourceMode │ │ │ │ │ ├── Category.php │ │ │ │ │ ├── Category │ │ │ │ │ │ ├── Grid.php │ │ │ │ │ │ ├── Summary │ │ │ │ │ │ │ └── Grid.php │ │ │ │ │ │ └── Tree.php │ │ │ │ │ ├── Form.php │ │ │ │ │ ├── Product.php │ │ │ │ │ └── Product │ │ │ │ │ │ └── Grid.php │ │ │ │ └── ValidateProductTypes.php │ │ │ ├── Search │ │ │ │ ├── Grid.php │ │ │ │ ├── Main.php │ │ │ │ └── Menu.php │ │ │ ├── Template.php │ │ │ ├── Template │ │ │ │ ├── ProductTaxCode.php │ │ │ │ ├── ProductTaxCode │ │ │ │ │ └── Grid.php │ │ │ │ ├── ProductType.php │ │ │ │ ├── ProductType │ │ │ │ │ └── Grid.php │ │ │ │ ├── Shipping.php │ │ │ │ └── Shipping │ │ │ │ │ └── Grid.php │ │ │ └── Variation │ │ │ │ ├── Individual.php │ │ │ │ ├── Individual │ │ │ │ ├── Edit.php │ │ │ │ └── Manage.php │ │ │ │ ├── Manage │ │ │ │ ├── Tabs.php │ │ │ │ └── Tabs │ │ │ │ │ ├── Settings │ │ │ │ │ ├── Form.php │ │ │ │ │ └── SkuPopup │ │ │ │ │ │ └── Form.php │ │ │ │ │ ├── Variations.php │ │ │ │ │ ├── Variations │ │ │ │ │ ├── Grid.php │ │ │ │ │ └── NewChild │ │ │ │ │ │ └── Form.php │ │ │ │ │ ├── Vocabulary.php │ │ │ │ │ └── Vocabulary │ │ │ │ │ └── Form.php │ │ │ │ ├── SwitchToIndividualPopup.php │ │ │ │ ├── SwitchToParentPopup.php │ │ │ │ ├── VocabularyAttributesPopup.php │ │ │ │ └── VocabularyOptionsPopup.php │ │ ├── Tabs.php │ │ ├── Transferring │ │ │ ├── Destination.php │ │ │ └── Products.php │ │ ├── Unmanaged.php │ │ ├── Unmanaged │ │ │ ├── Grid.php │ │ │ └── PageActions.php │ │ ├── View.php │ │ └── View │ │ │ ├── Amazon │ │ │ └── Grid.php │ │ │ ├── Magento │ │ │ └── Grid.php │ │ │ ├── Sellercentral │ │ │ ├── Grid.php │ │ │ └── Repricing │ │ │ │ └── RegularPricePopup.php │ │ │ ├── Settings │ │ │ └── Grid.php │ │ │ └── Switcher.php │ ├── Log │ │ ├── Listing │ │ │ └── Product │ │ │ │ ├── View.php │ │ │ │ └── View │ │ │ │ ├── Grouped │ │ │ │ └── Grid.php │ │ │ │ └── Separated │ │ │ │ └── Grid.php │ │ ├── Order.php │ │ └── Order │ │ │ └── Grid.php │ ├── Mapping.php │ ├── Mapping │ │ ├── Tabs.php │ │ └── Tabs │ │ │ ├── AttributeMapping.php │ │ │ └── ShippingMap │ │ │ ├── Edit │ │ │ └── Form.php │ │ │ └── Main.php │ ├── Marketplace │ │ └── Switcher.php │ ├── Order.php │ ├── Order │ │ ├── Edit │ │ │ ├── ShippingAddress.php │ │ │ └── ShippingAddress │ │ │ │ └── Form.php │ │ ├── Grid.php │ │ ├── Grid │ │ │ └── InvoiceCreditmemoFilter.php │ │ ├── MerchantFulfillment │ │ │ ├── Breadcrumb.php │ │ │ ├── Configuration.php │ │ │ ├── Information.php │ │ │ ├── Message.php │ │ │ └── ShippingServices.php │ │ ├── View.php │ │ └── View │ │ │ ├── FinalFees.php │ │ │ ├── Form.php │ │ │ └── Item.php │ ├── ProductType │ │ └── Validate │ │ │ ├── Grid.php │ │ │ └── Popup.php │ ├── Repricer.php │ ├── Repricer │ │ ├── Edit.php │ │ ├── Edit │ │ │ └── Form.php │ │ └── Grid.php │ ├── Settings.php │ ├── Settings │ │ ├── Tabs.php │ │ └── Tabs │ │ │ ├── General.php │ │ │ └── Synchronization.php │ ├── Template.php │ └── Template │ │ ├── Edit.php │ │ ├── Grid.php │ │ ├── ProductTaxCode │ │ ├── Edit.php │ │ └── Edit │ │ │ └── Form.php │ │ ├── ProductType │ │ ├── ActionColumn.php │ │ ├── Button │ │ │ ├── AddNewButton.php │ │ │ └── RefreshAmazonData.php │ │ ├── Edit.php │ │ ├── Edit │ │ │ ├── Data.php │ │ │ ├── FieldTemplates.php │ │ │ ├── Form.php │ │ │ ├── Tabs.php │ │ │ └── Tabs │ │ │ │ ├── General.php │ │ │ │ ├── General │ │ │ │ └── SearchPopup.php │ │ │ │ └── Template.php │ │ ├── HelpBlock.php │ │ └── RefreshAmazonDataProgressBar.php │ │ ├── SellingFormat │ │ ├── Edit.php │ │ └── Edit │ │ │ ├── Form.php │ │ │ └── Form │ │ │ ├── DiscountTable.php │ │ │ └── RepricerTable.php │ │ ├── Shipping │ │ ├── Edit.php │ │ └── Edit │ │ │ └── Form.php │ │ └── Synchronization │ │ ├── Edit.php │ │ └── Edit │ │ ├── Data.php │ │ ├── Form.php │ │ ├── Tabs.php │ │ └── Tabs │ │ ├── ListRules.php │ │ ├── RelistRules.php │ │ ├── ReviseRules.php │ │ └── StopRules.php │ ├── Category │ └── Grid.php │ ├── Component │ └── Switcher.php │ ├── ControlPanel │ ├── Info │ │ ├── Actual.php │ │ ├── License.php │ │ └── MysqlTables.php │ ├── Inspection │ │ ├── AbstractInspection.php │ │ ├── Cron.php │ │ ├── Grid.php │ │ ├── Requirements.php │ │ └── VersionInfo.php │ ├── Tabs.php │ └── Tabs │ │ ├── ChangeTracker.php │ │ ├── ChangeTracker │ │ ├── ExecutedTime.php │ │ ├── Logs.php │ │ ├── SettingsForm.php │ │ └── Tabs.php │ │ ├── Command │ │ └── Group.php │ │ ├── Cron.php │ │ ├── Database.php │ │ ├── Database │ │ ├── Grid.php │ │ ├── Table.php │ │ └── Table │ │ │ ├── Column │ │ │ └── Filter │ │ │ │ └── Select.php │ │ │ ├── Grid.php │ │ │ └── TableCellsPopup.php │ │ ├── Debug.php │ │ ├── Inspection.php │ │ ├── Overview.php │ │ ├── ToolsModule.php │ │ └── ToolsModule │ │ └── Tabs.php │ ├── Dashboard.php │ ├── Dashboard │ ├── ComponentTabs.php │ ├── Errors.php │ ├── Errors │ │ └── UrlStorageInterface.php │ ├── ListingProductIssues.php │ ├── PageActions.php │ ├── Products.php │ ├── Sales.php │ ├── Sales │ │ ├── Tabs.php │ │ ├── Tabs │ │ │ └── Item.php │ │ └── TabsFactory.php │ ├── Shipments.php │ └── Shipments │ │ └── UrlStorageInterface.php │ ├── DashboardFactory.php │ ├── Developers.php │ ├── Ebay │ ├── Account.php │ ├── Account │ │ ├── Edit.php │ │ ├── Edit │ │ │ ├── Form.php │ │ │ ├── Tabs.php │ │ │ └── Tabs │ │ │ │ ├── Feedback.php │ │ │ │ ├── Feedback │ │ │ │ └── Template │ │ │ │ │ ├── Form.php │ │ │ │ │ └── Grid.php │ │ │ │ ├── General.php │ │ │ │ ├── InvoicesAndShipments.php │ │ │ │ ├── ListingOther.php │ │ │ │ ├── Order.php │ │ │ │ └── Store.php │ │ ├── Feedback.php │ │ ├── Feedback │ │ │ ├── Grid.php │ │ │ └── SendResponseForm.php │ │ └── Grid.php │ ├── Category.php │ ├── Category │ │ ├── Grid.php │ │ ├── Specific │ │ │ └── Validation │ │ │ │ ├── Grid.php │ │ │ │ └── Popup.php │ │ ├── View.php │ │ └── View │ │ │ ├── Info.php │ │ │ ├── Tabs.php │ │ │ └── Tabs │ │ │ ├── AbstractGrid.php │ │ │ ├── ItemSpecific │ │ │ ├── Edit.php │ │ │ └── Edit │ │ │ │ └── Form.php │ │ │ ├── ProductsPrimary.php │ │ │ ├── ProductsPrimary │ │ │ └── Grid.php │ │ │ ├── ProductsSecondary.php │ │ │ └── ProductsSecondary │ │ │ └── Grid.php │ ├── Dashboard │ │ ├── Errors │ │ │ └── UrlStorage.php │ │ └── Shipments │ │ │ └── UrlStorage.php │ ├── Grid │ │ └── Column │ │ │ ├── Filter │ │ │ ├── CategoryMode.php │ │ │ ├── OrderId.php │ │ │ ├── Price.php │ │ │ └── Status.php │ │ │ └── Renderer │ │ │ ├── CategoryInfo.php │ │ │ ├── CurrentPrice.php │ │ │ ├── DateTime.php │ │ │ ├── ItemId.php │ │ │ ├── MinMaxPrice.php │ │ │ ├── OnlineSku.php │ │ │ ├── Qty.php │ │ │ └── Status.php │ ├── Listing │ │ ├── AllItems.php │ │ ├── AllItems │ │ │ └── Grid.php │ │ ├── AutoAction │ │ │ ├── Mode.php │ │ │ └── Mode │ │ │ │ ├── Category.php │ │ │ │ ├── Category │ │ │ │ ├── Form.php │ │ │ │ └── Group │ │ │ │ │ └── Grid.php │ │ │ │ ├── GlobalMode.php │ │ │ │ └── Website.php │ │ ├── Create │ │ │ ├── Breadcrumb.php │ │ │ ├── General.php │ │ │ ├── General │ │ │ │ └── Form.php │ │ │ ├── Templates.php │ │ │ └── Templates │ │ │ │ └── Form.php │ │ ├── Edit │ │ │ ├── Form.php │ │ │ ├── Tab │ │ │ │ ├── Categories.php │ │ │ │ ├── General.php │ │ │ │ └── Policies.php │ │ │ └── Tabs.php │ │ ├── Grid │ │ │ ├── Column │ │ │ │ └── Renderer │ │ │ │ │ └── Action.php │ │ │ └── Motor │ │ │ │ └── EditMode.php │ │ ├── ItemsByIssue.php │ │ ├── ItemsByIssue │ │ │ └── Grid.php │ │ ├── ItemsByListing.php │ │ ├── ItemsByListing │ │ │ └── Grid.php │ │ ├── Moving │ │ │ └── Grid.php │ │ ├── Preview.php │ │ ├── Product │ │ │ ├── Add.php │ │ │ ├── Add │ │ │ │ ├── Category │ │ │ │ │ ├── Summary │ │ │ │ │ │ └── Grid.php │ │ │ │ │ └── Tree.php │ │ │ │ ├── Grid.php │ │ │ │ ├── SourceMode.php │ │ │ │ └── SourceMode │ │ │ │ │ └── Form.php │ │ │ ├── Category │ │ │ │ └── Settings │ │ │ │ │ ├── Chooser.php │ │ │ │ │ ├── Mode.php │ │ │ │ │ ├── Mode │ │ │ │ │ ├── Category.php │ │ │ │ │ ├── Form.php │ │ │ │ │ ├── Same │ │ │ │ │ │ └── Chooser.php │ │ │ │ │ └── WarningPopup.php │ │ │ │ │ ├── Specific.php │ │ │ │ │ ├── Specific │ │ │ │ │ └── Grid.php │ │ │ │ │ └── Validate.php │ │ │ ├── Review.php │ │ │ └── Template │ │ │ │ ├── Edit.php │ │ │ │ └── Edit │ │ │ │ └── Form.php │ │ ├── Tabs.php │ │ ├── Template │ │ │ ├── NewTemplate │ │ │ │ └── Form.php │ │ │ ├── Switcher.php │ │ │ └── Switcher │ │ │ │ └── Initialization.php │ │ ├── Transferring │ │ │ ├── Destination.php │ │ │ └── Products.php │ │ ├── Unmanaged.php │ │ ├── Unmanaged │ │ │ ├── Grid.php │ │ │ └── PageActions.php │ │ ├── Variation │ │ │ └── Product │ │ │ │ └── Manage │ │ │ │ ├── View.php │ │ │ │ └── View │ │ │ │ └── Grid.php │ │ ├── View.php │ │ ├── View │ │ │ ├── Ebay │ │ │ │ ├── Bids │ │ │ │ │ └── Grid.php │ │ │ │ ├── Fee │ │ │ │ │ ├── Details.php │ │ │ │ │ ├── Errors.php │ │ │ │ │ └── Product.php │ │ │ │ ├── Grid.php │ │ │ │ └── ItemDuplicate.php │ │ │ ├── Magento │ │ │ │ └── Grid.php │ │ │ ├── Settings │ │ │ │ ├── Grid.php │ │ │ │ ├── Grid │ │ │ │ │ └── Column │ │ │ │ │ │ └── Filter │ │ │ │ │ │ ├── Category.php │ │ │ │ │ │ └── PolicySettings.php │ │ │ │ └── Motors │ │ │ │ │ ├── Add.php │ │ │ │ │ ├── Add │ │ │ │ │ ├── Filter │ │ │ │ │ │ ├── Form.php │ │ │ │ │ │ └── Grid.php │ │ │ │ │ ├── Group │ │ │ │ │ │ ├── Form.php │ │ │ │ │ │ └── Grid.php │ │ │ │ │ ├── Item │ │ │ │ │ │ ├── CustomForm.php │ │ │ │ │ │ ├── Epid │ │ │ │ │ │ │ └── Grid.php │ │ │ │ │ │ ├── Grid.php │ │ │ │ │ │ └── Ktype │ │ │ │ │ │ │ └── Grid.php │ │ │ │ │ ├── NoteForm.php │ │ │ │ │ └── Tabs.php │ │ │ │ │ ├── Instruction.php │ │ │ │ │ └── View │ │ │ │ │ ├── Filter.php │ │ │ │ │ ├── Filter │ │ │ │ │ └── Grid.php │ │ │ │ │ ├── Group.php │ │ │ │ │ ├── Group │ │ │ │ │ ├── Filters.php │ │ │ │ │ ├── Grid.php │ │ │ │ │ └── Items.php │ │ │ │ │ ├── Item.php │ │ │ │ │ └── Item │ │ │ │ │ └── Grid.php │ │ │ └── Switcher.php │ │ └── Wizard │ │ │ ├── AbstractGrid.php │ │ │ ├── Category │ │ │ ├── Add │ │ │ │ ├── Summary │ │ │ │ │ └── Grid.php │ │ │ │ └── Tree.php │ │ │ ├── Chooser │ │ │ │ └── Specific │ │ │ │ │ ├── Edit.php │ │ │ │ │ └── Info.php │ │ │ ├── EbayRecommended.php │ │ │ ├── EbayRecommended │ │ │ │ └── Grid.php │ │ │ ├── MagentoCategory.php │ │ │ ├── Manually.php │ │ │ ├── ModeMagentoCategory │ │ │ │ └── Grid.php │ │ │ ├── ModeManually │ │ │ │ └── Grid.php │ │ │ ├── ModeSame │ │ │ │ ├── Chooser.php │ │ │ │ └── Form.php │ │ │ └── Same.php │ │ │ ├── Product │ │ │ ├── Add.php │ │ │ ├── Add │ │ │ │ ├── Category │ │ │ │ │ └── Grid.php │ │ │ │ └── Grid.php │ │ │ ├── ValidationStep.php │ │ │ └── ValidationStep │ │ │ │ └── Grid.php │ │ │ ├── ProductSource │ │ │ └── Form.php │ │ │ ├── ProductSourceSelect.php │ │ │ ├── Review.php │ │ │ ├── ReviewTrait.php │ │ │ ├── SelectMode.php │ │ │ └── WizardTrait.php │ ├── Log │ │ ├── Listing │ │ │ └── Product │ │ │ │ ├── View.php │ │ │ │ └── View │ │ │ │ ├── Grouped │ │ │ │ └── Grid.php │ │ │ │ └── Separated │ │ │ │ └── Grid.php │ │ ├── Order.php │ │ └── Order │ │ │ └── Grid.php │ ├── Marketplace.php │ ├── Marketplace │ │ └── Edit │ │ │ └── Form.php │ ├── Order.php │ ├── Order │ │ ├── Edit │ │ │ ├── ShippingAddress.php │ │ │ └── ShippingAddress │ │ │ │ └── Form.php │ │ ├── Grid.php │ │ ├── View.php │ │ └── View │ │ │ ├── ExternalTransaction.php │ │ │ ├── Form.php │ │ │ └── Item.php │ ├── PromotedListing │ │ └── Campaign │ │ │ ├── CreateForm.php │ │ │ ├── Grid.php │ │ │ └── UpdateForm.php │ ├── Promotion │ │ ├── Discount │ │ │ └── Grid.php │ │ └── Grid.php │ ├── Settings.php │ ├── Settings │ │ ├── Tabs.php │ │ └── Tabs │ │ │ ├── AttributeMapping.php │ │ │ ├── AttributeMapping │ │ │ ├── BundleAttributesFieldsetFill.php │ │ │ ├── GpsrAttributesFieldsetFill.php │ │ │ └── GroupedAttributesFieldsetFill.php │ │ │ ├── General.php │ │ │ ├── Motors.php │ │ │ ├── Motors │ │ │ └── Manage.php │ │ │ └── Synchronization.php │ ├── Template.php │ └── Template │ │ ├── Category │ │ ├── Chooser.php │ │ └── Chooser │ │ │ ├── Edit.php │ │ │ ├── Specific │ │ │ ├── Edit.php │ │ │ ├── Edit │ │ │ │ └── Form.php │ │ │ ├── Form │ │ │ │ ├── Element │ │ │ │ │ ├── Custom.php │ │ │ │ │ ├── Dictionary.php │ │ │ │ │ └── Dictionary │ │ │ │ │ │ └── Multiselect.php │ │ │ │ └── Renderer │ │ │ │ │ ├── Custom.php │ │ │ │ │ └── Dictionary.php │ │ │ └── Info.php │ │ │ ├── Tabs.php │ │ │ └── Tabs │ │ │ ├── Attribute.php │ │ │ ├── Browse.php │ │ │ ├── Recent.php │ │ │ └── Search.php │ │ ├── Description │ │ ├── Edit │ │ │ └── Form │ │ │ │ ├── ComplianceDocuments │ │ │ │ ├── FormElement.php │ │ │ │ └── FormElementRender.php │ │ │ │ └── Data.php │ │ ├── Preview.php │ │ └── Preview │ │ │ ├── Body.php │ │ │ └── Form.php │ │ ├── Edit.php │ │ ├── Edit │ │ └── Form.php │ │ ├── Grid.php │ │ ├── ReturnPolicy │ │ └── Edit │ │ │ └── Form │ │ │ └── Data.php │ │ ├── SellingFormat │ │ └── Edit │ │ │ └── Form │ │ │ └── Data.php │ │ ├── Shipping │ │ ├── Edit │ │ │ └── Form │ │ │ │ └── Data.php │ │ └── Messages.php │ │ └── Synchronization │ │ └── Edit │ │ └── Form │ │ ├── Data.php │ │ ├── Tabs.php │ │ └── Tabs │ │ ├── AbstractTab.php │ │ ├── ListRules.php │ │ ├── RelistRules.php │ │ ├── ReviseRules.php │ │ └── StopRules.php │ ├── General.php │ ├── General │ ├── CreateAttribute.php │ └── CreateAttribute │ │ └── Form.php │ ├── Grid │ └── Column │ │ ├── Filter │ │ └── ProductId.php │ │ └── Renderer │ │ └── ViewLogIcon │ │ ├── Listing.php │ │ └── Order.php │ ├── HealthStatus.php │ ├── HealthStatus │ ├── Tabs.php │ └── Tabs │ │ ├── Dashboard.php │ │ ├── Element │ │ └── Note.php │ │ ├── IssueGroup.php │ │ └── Notifications.php │ ├── HelpBlock.php │ ├── Item │ └── Grid.php │ ├── Listing │ ├── AutoAction │ │ ├── AbstractMode.php │ │ └── Mode │ │ │ ├── AbstractCategory.php │ │ │ ├── AbstractGlobalMode.php │ │ │ ├── AbstractWebsite.php │ │ │ └── Category │ │ │ ├── AbstractForm.php │ │ │ └── Group │ │ │ └── AbstractGrid.php │ ├── Category │ │ └── Tree.php │ ├── Edit.php │ ├── Edit │ │ ├── EditStoreView.php │ │ ├── Form.php │ │ └── StoreView │ │ │ └── Form.php │ ├── Grid.php │ ├── Log │ │ ├── ErrorsSummary.php │ │ └── Grid │ │ │ └── LastActions.php │ ├── Mapping │ │ ├── Grid.php │ │ └── View.php │ ├── Moving │ │ ├── FailedProducts.php │ │ ├── FailedProducts │ │ │ └── Grid.php │ │ └── Grid.php │ ├── Other │ │ └── View │ │ │ └── Header.php │ ├── Product │ │ ├── AdvancedFilter │ │ │ ├── AbstractRenderer.php │ │ │ ├── Renderer │ │ │ │ ├── Creating.php │ │ │ │ ├── PrepareSelectTrait.php │ │ │ │ ├── Selected.php │ │ │ │ ├── Unselected.php │ │ │ │ └── Updating.php │ │ │ └── RendererFactory.php │ │ ├── Rule.php │ │ └── ShowOthersListingsProductsFilter.php │ ├── Search │ │ └── TypeSwitcher.php │ ├── Switcher.php │ ├── TypeSwitcher.php │ └── View │ │ ├── Grid.php │ │ ├── Header.php │ │ ├── Switcher.php │ │ └── Wizard │ │ └── Header.php │ ├── Log │ ├── AbstractGrid.php │ ├── Grid │ │ └── LastActions.php │ ├── Listing │ │ ├── AbstractGrid.php │ │ ├── AbstractView.php │ │ ├── Product │ │ │ ├── AbstractGrid.php │ │ │ ├── AbstractView.php │ │ │ └── View │ │ │ │ ├── Grouped │ │ │ │ └── AbstractGrid.php │ │ │ │ └── Separated │ │ │ │ └── AbstractGrid.php │ │ └── View │ │ │ └── Switcher.php │ ├── Order │ │ ├── AbstractContainer.php │ │ └── AbstractGrid.php │ └── UniqueMessageFilter.php │ ├── Magento │ ├── AbstractBlock.php │ ├── AbstractContainer.php │ ├── Button.php │ ├── Button │ │ ├── DropDown.php │ │ ├── MagentoAttribute.php │ │ ├── ProductTypeSwitchButton.php │ │ └── SplitButton.php │ ├── Category │ │ └── AbstractCategory.php │ ├── Context │ │ ├── Block.php │ │ ├── Template.php │ │ └── Widget.php │ ├── Form │ │ ├── AbstractContainer.php │ │ ├── AbstractForm.php │ │ ├── Element │ │ │ ├── Boolean.php │ │ │ ├── CustomContainer.php │ │ │ ├── HelpBlock.php │ │ │ ├── Messages.php │ │ │ ├── Multiselect.php │ │ │ ├── Select.php │ │ │ ├── Separator.php │ │ │ └── StoreSwitcher.php │ │ └── Renderer │ │ │ ├── Element.php │ │ │ └── Fieldset.php │ ├── Grid │ │ ├── AbstractContainer.php │ │ ├── AbstractGrid.php │ │ ├── Column │ │ │ ├── Filter │ │ │ │ ├── AbstractFilter.php │ │ │ │ ├── AttributesOptions.php │ │ │ │ ├── Datetime.php │ │ │ │ ├── Price.php │ │ │ │ └── Range.php │ │ │ └── Renderer │ │ │ │ ├── Action.php │ │ │ │ └── ProductId.php │ │ └── Massaction.php │ ├── Payment │ │ └── Info.php │ ├── Product │ │ ├── Grid.php │ │ ├── Rule.php │ │ └── Rule │ │ │ ├── Chooser │ │ │ └── Sku.php │ │ │ ├── Renderer │ │ │ └── Editable.php │ │ │ ├── ViewState.php │ │ │ ├── ViewState │ │ │ └── Manager.php │ │ │ └── ViewStateFactory.php │ ├── Renderer │ │ ├── AbstractRenderer.php │ │ ├── CssRenderer.php │ │ ├── JsPhpRenderer.php │ │ ├── JsRenderer.php │ │ ├── JsTranslatorRenderer.php │ │ └── JsUrlRenderer.php │ └── Tabs │ │ ├── AbstractHorizontalStaticTabs.php │ │ ├── AbstractHorizontalTabs.php │ │ ├── AbstractTabs.php │ │ └── AbstractVerticalTabs.php │ ├── Marketplace │ └── Switcher.php │ ├── Messages.php │ ├── MsiNotificationPopup.php │ ├── Order │ ├── Debug.php │ ├── Edit │ │ └── ShippingAddress.php │ ├── Item │ │ ├── Edit.php │ │ └── Product │ │ │ ├── Mapping.php │ │ │ ├── Mapping │ │ │ └── Grid.php │ │ │ └── Options │ │ │ └── Mapping.php │ ├── Log │ │ └── Grid │ │ │ └── LastActions.php │ ├── NotCreatedFilter.php │ ├── Note │ │ ├── Grid.php │ │ └── Popup.php │ ├── UploadByUser │ │ ├── Grid.php │ │ └── Popup.php │ └── View │ │ └── Log │ │ └── Grid.php │ ├── PageHelpLink.php │ ├── Renderer │ ├── Description.php │ └── Description │ │ ├── Gallery.php │ │ └── Image.php │ ├── RequirementsPopup.php │ ├── Settings │ └── Tabs.php │ ├── StoreSwitcher.php │ ├── Support.php │ ├── Switcher.php │ ├── Synchronization │ ├── Log.php │ └── Log │ │ └── Grid.php │ ├── System │ └── Config │ │ ├── Form │ │ └── Element │ │ │ ├── AbstractElementTrait.php │ │ │ ├── Button.php │ │ │ ├── Link.php │ │ │ ├── Select.php │ │ │ ├── StateControlButton.php │ │ │ └── Text.php │ │ ├── Popup │ │ ├── MigrationPopup.php │ │ └── ModuleControlPopup.php │ │ ├── Sections.php │ │ └── Sections │ │ ├── InterfaceAndMagentoInventory.php │ │ ├── License.php │ │ ├── License │ │ ├── Change.php │ │ └── Create.php │ │ ├── LogsClearing.php │ │ ├── Migration.php │ │ ├── MigrationWizard.php │ │ └── ModuleAndChannels.php │ ├── Template │ ├── Messages.php │ └── SellingFormat │ │ ├── Messages.php │ │ └── PriceChange.php │ ├── Traits │ ├── BlockTrait.php │ └── RendererTrait.php │ ├── Walmart │ ├── Account.php │ ├── Account │ │ ├── AddAccountPopup.php │ │ ├── CredentialsFormFactory.php │ │ ├── Edit.php │ │ ├── Edit │ │ │ ├── CredentialsPopup.php │ │ │ ├── Form.php │ │ │ ├── Tabs.php │ │ │ └── Tabs │ │ │ │ ├── General.php │ │ │ │ ├── InvoicesAndShipments.php │ │ │ │ ├── ListingOther.php │ │ │ │ ├── Order.php │ │ │ │ └── Order │ │ │ │ └── PrefixesTable.php │ │ ├── Grid.php │ │ └── Switcher.php │ ├── Dashboard │ │ ├── Errors │ │ │ └── UrlStorage.php │ │ └── Shipments │ │ │ └── UrlStorage.php │ ├── Grid │ │ └── Column │ │ │ ├── Filter │ │ │ └── Status.php │ │ │ └── Renderer │ │ │ ├── Gtin.php │ │ │ ├── Qty.php │ │ │ ├── Sku.php │ │ │ ├── Status.php │ │ │ └── ViewLogIcon │ │ │ └── Listing.php │ ├── Listing │ │ ├── AllItems.php │ │ ├── AllItems │ │ │ └── Grid.php │ │ ├── AutoAction │ │ │ ├── Mode.php │ │ │ └── Mode │ │ │ │ ├── Category.php │ │ │ │ ├── Category │ │ │ │ ├── Form.php │ │ │ │ └── Group │ │ │ │ │ └── Grid.php │ │ │ │ ├── GlobalMode.php │ │ │ │ └── Website.php │ │ ├── Create.php │ │ ├── Create │ │ │ └── Form.php │ │ ├── Edit.php │ │ ├── Edit │ │ │ └── Form.php │ │ ├── ItemsByListing.php │ │ ├── ItemsByListing │ │ │ └── Grid.php │ │ ├── Log │ │ │ └── Grid │ │ │ │ └── LastActions.php │ │ ├── Moving │ │ │ └── Grid.php │ │ ├── Product │ │ │ ├── Add │ │ │ │ ├── ProductType.php │ │ │ │ ├── ProductType │ │ │ │ │ ├── Category.php │ │ │ │ │ ├── Category │ │ │ │ │ │ └── Grid.php │ │ │ │ │ ├── Form.php │ │ │ │ │ ├── Manual.php │ │ │ │ │ ├── Manual │ │ │ │ │ │ ├── Grid.php │ │ │ │ │ │ └── SkipPopup.php │ │ │ │ │ └── WarningPopup.php │ │ │ │ ├── Review.php │ │ │ │ ├── SourceMode.php │ │ │ │ └── SourceMode │ │ │ │ │ ├── Category.php │ │ │ │ │ ├── Category │ │ │ │ │ ├── Grid.php │ │ │ │ │ ├── Summary │ │ │ │ │ │ └── Grid.php │ │ │ │ │ └── Tree.php │ │ │ │ │ ├── Form.php │ │ │ │ │ ├── Product.php │ │ │ │ │ └── Product │ │ │ │ │ └── Grid.php │ │ │ ├── Identifiers │ │ │ │ └── Form.php │ │ │ ├── ProductType.php │ │ │ ├── ProductType │ │ │ │ ├── Grid.php │ │ │ │ └── GridFactory.php │ │ │ ├── Sku │ │ │ │ └── Form.php │ │ │ ├── Template.php │ │ │ └── Variation │ │ │ │ ├── Individual.php │ │ │ │ ├── Individual │ │ │ │ ├── Edit.php │ │ │ │ └── Manage.php │ │ │ │ ├── Manage │ │ │ │ ├── Tabs.php │ │ │ │ └── Tabs │ │ │ │ │ ├── Settings │ │ │ │ │ └── Form.php │ │ │ │ │ ├── Variations.php │ │ │ │ │ ├── Variations │ │ │ │ │ ├── Grid.php │ │ │ │ │ └── NewChild │ │ │ │ │ │ └── Form.php │ │ │ │ │ ├── Vocabulary.php │ │ │ │ │ └── Vocabulary │ │ │ │ │ └── Form.php │ │ │ │ ├── SwitchToIndividualPopup.php │ │ │ │ ├── SwitchToParentPopup.php │ │ │ │ ├── VocabularyAttributesPopup.php │ │ │ │ └── VocabularyOptionsPopup.php │ │ ├── Tabs.php │ │ ├── Unmanaged.php │ │ ├── Unmanaged │ │ │ ├── Grid.php │ │ │ └── PageActions.php │ │ ├── View.php │ │ └── View │ │ │ ├── Magento │ │ │ └── Grid.php │ │ │ ├── Settings │ │ │ └── Grid.php │ │ │ ├── Switcher.php │ │ │ └── Walmart │ │ │ └── Grid.php │ ├── Log │ │ ├── Listing │ │ │ └── Product │ │ │ │ ├── View.php │ │ │ │ └── View │ │ │ │ ├── Grouped │ │ │ │ └── Grid.php │ │ │ │ └── Separated │ │ │ │ └── Grid.php │ │ ├── Order.php │ │ └── Order │ │ │ └── Grid.php │ ├── Marketplace.php │ ├── Marketplace │ │ ├── Edit │ │ │ └── Form.php │ │ └── Switcher.php │ ├── Order.php │ ├── Order │ │ ├── Edit │ │ │ ├── ShippingAddress.php │ │ │ └── ShippingAddress │ │ │ │ └── Form.php │ │ ├── Grid.php │ │ ├── View.php │ │ └── View │ │ │ ├── Form.php │ │ │ └── Item.php │ ├── ProductType.php │ ├── ProductType │ │ ├── Edit.php │ │ ├── Edit │ │ │ ├── Data.php │ │ │ ├── FieldTemplates.php │ │ │ ├── Form.php │ │ │ ├── Tabs.php │ │ │ └── Tabs │ │ │ │ ├── General.php │ │ │ │ ├── General │ │ │ │ └── SearchPopup.php │ │ │ │ └── Template.php │ │ └── Grid.php │ ├── Settings.php │ ├── Settings │ │ ├── Tabs.php │ │ └── Tabs │ │ │ ├── AttributeMapping.php │ │ │ ├── AttributeMapping │ │ │ └── VariationAttributesFieldsetFill.php │ │ │ ├── General.php │ │ │ └── Synchronization.php │ ├── Template.php │ └── Template │ │ ├── Description │ │ ├── Edit.php │ │ └── Edit │ │ │ └── Form.php │ │ ├── Edit.php │ │ ├── Grid.php │ │ ├── SellingFormat │ │ ├── Edit.php │ │ └── Edit │ │ │ ├── Form.php │ │ │ └── Form │ │ │ ├── Promotions.php │ │ │ ├── RepricerFieldset.php │ │ │ └── RepricerStrategy.php │ │ └── Synchronization │ │ ├── Edit.php │ │ └── Edit │ │ ├── Data.php │ │ ├── Form.php │ │ ├── Tabs.php │ │ └── Tabs │ │ ├── ListRules.php │ │ ├── RelistRules.php │ │ ├── ReviseRules.php │ │ └── StopRules.php │ ├── Widget │ ├── Breadcrumb.php │ ├── Dialog │ │ └── Confirm.php │ ├── Grid │ │ ├── AdvancedFilter │ │ │ ├── Collection.php │ │ │ ├── FilterFactory.php │ │ │ └── Filters │ │ │ │ ├── DropDown.php │ │ │ │ ├── DropDown │ │ │ │ ├── Option.php │ │ │ │ ├── OptionCollection.php │ │ │ │ ├── OptionCollectionFactory.php │ │ │ │ └── OptionFactory.php │ │ │ │ └── FilterInterface.php │ │ └── Column │ │ │ └── Extended │ │ │ └── Rewrite.php │ └── Info.php │ └── Wizard │ ├── AbstractWizard.php │ ├── AmazonMigrationToProductTypes │ └── Content.php │ ├── Congratulation.php │ ├── Installation.php │ ├── Installation │ ├── ListingTutorial │ │ └── Content.php │ └── Registration │ │ └── Content.php │ ├── InstallationAmazon │ ├── Breadcrumb.php │ ├── Installation.php │ └── Installation │ │ ├── Account.php │ │ ├── Account │ │ └── Content.php │ │ ├── ListingTutorial.php │ │ ├── ListingTutorial │ │ └── Content.php │ │ ├── Registration.php │ │ ├── Registration │ │ └── Content.php │ │ ├── Settings.php │ │ └── Settings │ │ └── Content.php │ ├── InstallationEbay │ ├── Breadcrumb.php │ ├── Installation.php │ └── Installation │ │ ├── Account.php │ │ ├── Account │ │ └── Content.php │ │ ├── ListingTutorial.php │ │ ├── ListingTutorial │ │ └── Content.php │ │ ├── Registration.php │ │ ├── Registration │ │ └── Content.php │ │ ├── Settings.php │ │ └── Settings │ │ └── Content.php │ ├── InstallationWalmart │ ├── Breadcrumb.php │ ├── Installation.php │ └── Installation │ │ ├── Account.php │ │ ├── Account │ │ ├── Content.php │ │ └── MarketplaceSelector.php │ │ ├── ListingTutorial.php │ │ ├── ListingTutorial │ │ └── Content.php │ │ ├── Registration.php │ │ ├── Registration │ │ └── Content.php │ │ ├── Settings.php │ │ └── Settings │ │ └── Content.php │ ├── MigrationFromMagento1 │ ├── Breadcrumb.php │ ├── Installation.php │ └── Installation │ │ ├── Congratulation.php │ │ ├── Congratulation │ │ ├── Content.php │ │ └── Content │ │ │ └── Form.php │ │ ├── Database.php │ │ ├── Database │ │ ├── Content.php │ │ └── Content │ │ │ └── Form.php │ │ ├── DisableModule.php │ │ └── DisableModule │ │ └── Content.php │ ├── MigrationToInnodb │ ├── Installation.php │ ├── Installation │ │ ├── MarketplacesSynchronization.php │ │ └── MarketplacesSynchronization │ │ │ └── Content.php │ └── Notification.php │ ├── VersionDowngrade │ └── Content.php │ └── WalmartMigrationToProductTypes │ └── Content.php ├── Controller ├── Adminhtml │ ├── Amazon │ │ ├── Account.php │ │ ├── Account │ │ │ ├── AccountGrid.php │ │ │ ├── AfterGetToken.php │ │ │ ├── BeforeGetToken.php │ │ │ ├── Check.php │ │ │ ├── Create.php │ │ │ ├── Delete.php │ │ │ ├── Edit.php │ │ │ ├── GetExcludedCountriesPopupHtml.php │ │ │ ├── GetExcludedStatesPopupHtml.php │ │ │ ├── Index.php │ │ │ ├── IsReadyForDocumentGeneration.php │ │ │ ├── NewAction.php │ │ │ └── Save.php │ │ ├── Dashboard │ │ │ └── Index.php │ │ ├── GetGlobalMessages.php │ │ ├── GlobalSettings.php │ │ ├── Listing.php │ │ ├── Listing │ │ │ ├── ActionAbstract.php │ │ │ ├── AllItems.php │ │ │ ├── AllItems │ │ │ │ └── Actions │ │ │ │ │ ├── RunListProducts.php │ │ │ │ │ ├── RunRelistProducts.php │ │ │ │ │ ├── RunReviseProducts.php │ │ │ │ │ ├── RunStopAndRemoveProducts.php │ │ │ │ │ └── RunStopProducts.php │ │ │ ├── AutoAction.php │ │ │ ├── AutoAction │ │ │ │ ├── DeleteCategory.php │ │ │ │ ├── DeleteCategoryGroup.php │ │ │ │ ├── GetAutoCategoryFormHtml.php │ │ │ │ ├── GetCategoryGroupGrid.php │ │ │ │ ├── GetProductTypesList.php │ │ │ │ ├── Index.php │ │ │ │ ├── IsCategoryGroupTitleUnique.php │ │ │ │ ├── Reset.php │ │ │ │ └── Save.php │ │ │ ├── Create │ │ │ │ └── Index.php │ │ │ ├── Delete.php │ │ │ ├── DuplicateProducts.php │ │ │ ├── Edit.php │ │ │ ├── Edit │ │ │ │ ├── SaveStoreView.php │ │ │ │ └── SelectStoreView.php │ │ │ ├── ExportCsvAllItemsGrid.php │ │ │ ├── ExportCsvListingGrid.php │ │ │ ├── Index.php │ │ │ ├── ItemsByIssue.php │ │ │ ├── MapToAsin.php │ │ │ ├── Product │ │ │ │ ├── Add.php │ │ │ │ ├── Add │ │ │ │ │ ├── Add.php │ │ │ │ │ ├── CheckNewAsinCategoryProducts.php │ │ │ │ │ ├── CheckNewAsinManualProducts.php │ │ │ │ │ ├── CheckSearchResults.php │ │ │ │ │ ├── ExitToListing.php │ │ │ │ │ ├── GetCategoriesJson.php │ │ │ │ │ ├── GetCategoriesSummaryHtml.php │ │ │ │ │ ├── GetSessionProductsIds.php │ │ │ │ │ ├── GetTreeInfo.php │ │ │ │ │ ├── Index.php │ │ │ │ │ ├── ProductTypeAssignByMagentoCategory.php │ │ │ │ │ ├── ProductTypeAssignManually.php │ │ │ │ │ ├── ProductTypeAssignType.php │ │ │ │ │ ├── RemoveAddedProducts.php │ │ │ │ │ ├── RemoveSessionProductsByCategory.php │ │ │ │ │ ├── ResetProductTypeTemplate.php │ │ │ │ │ ├── SaveProductsToSessionAndGetInfo.php │ │ │ │ │ ├── SaveSearchSettings.php │ │ │ │ │ ├── ShowNewAsinStep.php │ │ │ │ │ ├── ViewListing.php │ │ │ │ │ ├── ViewListingAndList.php │ │ │ │ │ └── ViewSearchSettings.php │ │ │ │ ├── Fulfillment │ │ │ │ │ ├── SwitchToAFN.php │ │ │ │ │ └── SwitchToMFN.php │ │ │ │ ├── MapToNewAsin.php │ │ │ │ ├── Repricing │ │ │ │ │ └── GetUpdatedPriceBySkus.php │ │ │ │ ├── Search │ │ │ │ │ ├── GetProductsSearchStatus.php │ │ │ │ │ ├── GetSearchAsinMenu.php │ │ │ │ │ ├── SearchAsinAuto.php │ │ │ │ │ ├── SearchAsinManual.php │ │ │ │ │ └── SuggestedAsinGrid.php │ │ │ │ ├── Template.php │ │ │ │ ├── Template │ │ │ │ │ ├── ProductTaxCode.php │ │ │ │ │ ├── ProductTaxCode │ │ │ │ │ │ ├── Assign.php │ │ │ │ │ │ ├── Unassign.php │ │ │ │ │ │ ├── ViewGrid.php │ │ │ │ │ │ └── ViewPopup.php │ │ │ │ │ ├── ProductType.php │ │ │ │ │ ├── ProductType │ │ │ │ │ │ ├── Assign.php │ │ │ │ │ │ ├── Unassign.php │ │ │ │ │ │ ├── ValidateProductsForAssign.php │ │ │ │ │ │ └── ViewGrid.php │ │ │ │ │ ├── Shipping.php │ │ │ │ │ └── Shipping │ │ │ │ │ │ ├── Assign.php │ │ │ │ │ │ ├── Unassign.php │ │ │ │ │ │ ├── ViewGrid.php │ │ │ │ │ │ └── ViewPopup.php │ │ │ │ ├── UnmapFromAsin.php │ │ │ │ ├── Variation │ │ │ │ │ ├── GetSwitchToIndividualModePopUp.php │ │ │ │ │ ├── GetSwitchToParentModePopUp.php │ │ │ │ │ ├── Individual │ │ │ │ │ │ ├── Edit.php │ │ │ │ │ │ ├── Generate.php │ │ │ │ │ │ ├── GetEditPopup.php │ │ │ │ │ │ ├── GetManagePopup.php │ │ │ │ │ │ └── Manage.php │ │ │ │ │ ├── Manage.php │ │ │ │ │ ├── Manage │ │ │ │ │ │ ├── CreateNewChild.php │ │ │ │ │ │ ├── GetNewChildForm.php │ │ │ │ │ │ ├── GetSkuPopup.php │ │ │ │ │ │ ├── SaveAutoActionSettings.php │ │ │ │ │ │ ├── SetChildListingProductOptions.php │ │ │ │ │ │ ├── SetGeneralIdOwner.php │ │ │ │ │ │ ├── SetListingProductSku.php │ │ │ │ │ │ ├── SetMatchedAttributes.php │ │ │ │ │ │ ├── SetVariationTheme.php │ │ │ │ │ │ ├── ViewVariationsGridAjax.php │ │ │ │ │ │ └── ViewVariationsSettingsAjax.php │ │ │ │ │ └── Vocabulary │ │ │ │ │ │ ├── AddAttributes.php │ │ │ │ │ │ ├── AddOptions.php │ │ │ │ │ │ ├── GetAttributesPopup.php │ │ │ │ │ │ ├── GetOptionsPopup.php │ │ │ │ │ │ ├── RemoveAttribute.php │ │ │ │ │ │ ├── RemoveOption.php │ │ │ │ │ │ └── ViewVocabularyAjax.php │ │ │ │ └── VariationReset.php │ │ │ ├── RunDeleteAndRemoveProducts.php │ │ │ ├── RunListProducts.php │ │ │ ├── RunRelistProducts.php │ │ │ ├── RunReviseProducts.php │ │ │ ├── RunStopAndRemoveProducts.php │ │ │ ├── RunStopProducts.php │ │ │ ├── Save.php │ │ │ ├── Transferring.php │ │ │ ├── Transferring │ │ │ │ ├── AddProducts.php │ │ │ │ ├── GetListings.php │ │ │ │ └── GetMarketplace.php │ │ │ ├── Unmanaged │ │ │ │ ├── ExportCsvUnmanagedGrid.php │ │ │ │ ├── Grid.php │ │ │ │ ├── Index.php │ │ │ │ ├── MoveToListing.php │ │ │ │ ├── Removing.php │ │ │ │ └── Reset.php │ │ │ └── View.php │ │ ├── Log │ │ │ ├── Listing.php │ │ │ ├── Listing │ │ │ │ └── Product │ │ │ │ │ ├── Grid.php │ │ │ │ │ └── Index.php │ │ │ ├── Order.php │ │ │ └── Order │ │ │ │ ├── Grid.php │ │ │ │ └── Index.php │ │ ├── Main.php │ │ ├── Mapping.php │ │ ├── Mapping │ │ │ ├── AttributeMapping │ │ │ │ └── Save.php │ │ │ ├── Index.php │ │ │ └── ShippingMap │ │ │ │ └── Save.php │ │ ├── Marketplace.php │ │ ├── Marketplace │ │ │ ├── Sync │ │ │ │ ├── GetMarketplaceList.php │ │ │ │ ├── GetProductTypeList.php │ │ │ │ ├── MarketplaceLoader.php │ │ │ │ ├── UpdateDetails.php │ │ │ │ └── UpdateProductType.php │ │ │ └── SynchGetExecutingInfo.php │ │ ├── Order.php │ │ ├── Order │ │ │ ├── CreateMagentoOrder.php │ │ │ ├── GoToAmazon.php │ │ │ ├── Grid.php │ │ │ ├── Index.php │ │ │ ├── MerchantFulfillment │ │ │ │ ├── CancelShippingOffer.php │ │ │ │ ├── CreateShippingOffer.php │ │ │ │ ├── GetLabel.php │ │ │ │ ├── GetPopup.php │ │ │ │ ├── GetShippingServices.php │ │ │ │ ├── MarkAsShipped.php │ │ │ │ ├── RefreshData.php │ │ │ │ └── ResetData.php │ │ │ ├── OrderItemGrid.php │ │ │ ├── ResendInvoice.php │ │ │ ├── ResendInvoiceCreditmemo.php │ │ │ ├── ShippingAddress │ │ │ │ ├── Edit.php │ │ │ │ └── Save.php │ │ │ ├── UpdateShippingStatus.php │ │ │ └── View.php │ │ ├── ProductType │ │ │ ├── GetListingProductIdsByProductType.php │ │ │ └── Validation │ │ │ │ ├── Modal │ │ │ │ ├── Close.php │ │ │ │ ├── ListingProductStorage.php │ │ │ │ └── Open.php │ │ │ │ └── Validate.php │ │ ├── Repricer.php │ │ ├── Repricer │ │ │ ├── Link.php │ │ │ ├── LinkOrRegister.php │ │ │ ├── OpenUnlinkPage.php │ │ │ ├── Settings │ │ │ │ ├── Edit.php │ │ │ │ ├── Index.php │ │ │ │ └── Save.php │ │ │ ├── Source.php │ │ │ └── Unlink.php │ │ ├── Settings.php │ │ ├── Settings │ │ │ ├── Index.php │ │ │ └── Save.php │ │ ├── Simple.php │ │ ├── Synchronization │ │ │ ├── Index.php │ │ │ ├── Log │ │ │ │ ├── Grid.php │ │ │ │ └── Index.php │ │ │ └── Save.php │ │ ├── Template.php │ │ ├── Template │ │ │ ├── Delete.php │ │ │ ├── Edit.php │ │ │ ├── Grid.php │ │ │ ├── Index.php │ │ │ ├── NewAction.php │ │ │ ├── ProductTaxCode │ │ │ │ ├── Delete.php │ │ │ │ ├── Edit.php │ │ │ │ ├── Index.php │ │ │ │ ├── NewAction.php │ │ │ │ └── Save.php │ │ │ ├── ProductType.php │ │ │ ├── ProductType │ │ │ │ ├── Delete.php │ │ │ │ ├── Edit.php │ │ │ │ ├── GetCategories.php │ │ │ │ ├── GetProductTypeInfo.php │ │ │ │ ├── Grid.php │ │ │ │ ├── Index.php │ │ │ │ ├── IsUniqueTitle.php │ │ │ │ ├── Save.php │ │ │ │ ├── SearchProductTypePopup.php │ │ │ │ └── UpdateAttributeMapping.php │ │ │ ├── SellingFormat │ │ │ │ ├── Delete.php │ │ │ │ ├── Edit.php │ │ │ │ ├── Index.php │ │ │ │ ├── NewAction.php │ │ │ │ └── Save.php │ │ │ ├── Shipping │ │ │ │ ├── Delete.php │ │ │ │ ├── Edit.php │ │ │ │ ├── GetTemplates.php │ │ │ │ ├── Index.php │ │ │ │ ├── NewAction.php │ │ │ │ ├── Refresh.php │ │ │ │ └── Save.php │ │ │ └── Synchronization │ │ │ │ ├── Delete.php │ │ │ │ ├── Edit.php │ │ │ │ ├── Index.php │ │ │ │ ├── NewAction.php │ │ │ │ └── Save.php │ │ └── Wizard.php │ ├── Base.php │ ├── Context.php │ ├── ControlPanel │ │ ├── ChangeTracker │ │ │ └── ChangeStatus.php │ │ ├── Command.php │ │ ├── Cron │ │ │ └── Run.php │ │ ├── Database │ │ │ ├── AddTableRow.php │ │ │ ├── DatabaseTableGrid.php │ │ │ ├── DeleteTableRows.php │ │ │ ├── GetTableCellsPopupHtml.php │ │ │ ├── ManageTable.php │ │ │ ├── ShowOperationHistoryExecutionTreeDown.php │ │ │ ├── ShowOperationHistoryExecutionTreeUp.php │ │ │ ├── Table.php │ │ │ └── UpdateTableCells.php │ │ ├── DatabaseTab.php │ │ ├── Debug │ │ │ └── Debug.php │ │ ├── Index.php │ │ ├── Inspection │ │ │ ├── ChangeMaintenanceMode.php │ │ │ ├── CheckInspection.php │ │ │ ├── PhpInfo.php │ │ │ └── SetMagentoCoreSetupValue.php │ │ ├── InspectionTab.php │ │ ├── Main.php │ │ ├── Module │ │ │ ├── Integration.php │ │ │ └── Integration │ │ │ │ ├── Amazon.php │ │ │ │ ├── Ebay.php │ │ │ │ └── Walmart.php │ │ ├── OverviewTab.php │ │ └── Tools │ │ │ ├── M2ePro │ │ │ ├── General.php │ │ │ └── Install.php │ │ │ └── Magento.php │ ├── Ebay │ │ ├── Account.php │ │ ├── Account │ │ │ ├── AccountGrid.php │ │ │ ├── AfterGetSellApiToken.php │ │ │ ├── BeforeGetSellApiToken.php │ │ │ ├── Delete.php │ │ │ ├── Edit.php │ │ │ ├── Feedback │ │ │ │ ├── GetGrid.php │ │ │ │ ├── GetPopup.php │ │ │ │ ├── GetSendResponseForm.php │ │ │ │ ├── GoToItem.php │ │ │ │ ├── GoToOrder.php │ │ │ │ ├── SendResponse.php │ │ │ │ ├── Template │ │ │ │ │ ├── Delete.php │ │ │ │ │ ├── GetForm.php │ │ │ │ │ ├── GetGrid.php │ │ │ │ │ └── Save.php │ │ │ │ └── TemplateCheck.php │ │ │ ├── Index.php │ │ │ ├── NewAction.php │ │ │ ├── Save.php │ │ │ └── Store │ │ │ │ └── Category │ │ │ │ ├── GetTree.php │ │ │ │ └── Refresh.php │ │ ├── Category.php │ │ ├── Category │ │ │ ├── Delete.php │ │ │ ├── GetCategorySpecificHtml.php │ │ │ ├── GetChildCategories.php │ │ │ ├── GetChooserEditHtml.php │ │ │ ├── GetChooserHtml.php │ │ │ ├── GetJsonSpecificsFromPost.php │ │ │ ├── GetRecent.php │ │ │ ├── GetSelectedCategoryDetails.php │ │ │ ├── GetSpecificHtml.php │ │ │ ├── Grid.php │ │ │ ├── Index.php │ │ │ ├── SaveTemplateCategorySpecifics.php │ │ │ ├── Search.php │ │ │ ├── Specific │ │ │ │ └── Validation │ │ │ │ │ ├── GetListingProductIdsByCategoryId.php │ │ │ │ │ ├── Modal │ │ │ │ │ ├── Close.php │ │ │ │ │ ├── ListingProductStorage.php │ │ │ │ │ └── Open.php │ │ │ │ │ └── Validate.php │ │ │ ├── View.php │ │ │ ├── ViewPrimaryGrid.php │ │ │ └── ViewSecondaryGrid.php │ │ ├── Dashboard │ │ │ └── Index.php │ │ ├── GetGlobalMessages.php │ │ ├── GlobalSettings.php │ │ ├── Listing.php │ │ ├── Listing │ │ │ ├── ActionAbstract.php │ │ │ ├── AllItems.php │ │ │ ├── AllItems │ │ │ │ └── Actions │ │ │ │ │ ├── RunListProducts.php │ │ │ │ │ ├── RunRelistProducts.php │ │ │ │ │ ├── RunReviseProducts.php │ │ │ │ │ ├── RunStopAndRemoveProducts.php │ │ │ │ │ └── RunStopProducts.php │ │ │ ├── AutoAction.php │ │ │ ├── AutoAction │ │ │ │ ├── DeleteCategory.php │ │ │ │ ├── DeleteCategoryGroup.php │ │ │ │ ├── GetAutoCategoryFormHtml.php │ │ │ │ ├── GetCategoryChooserHtml.php │ │ │ │ ├── GetCategoryGroupGrid.php │ │ │ │ ├── Index.php │ │ │ │ ├── IsCategoryGroupTitleUnique.php │ │ │ │ ├── Reset.php │ │ │ │ └── Save.php │ │ │ ├── Create │ │ │ │ └── Index.php │ │ │ ├── Delete.php │ │ │ ├── Edit.php │ │ │ ├── Edit │ │ │ │ ├── Categories.php │ │ │ │ ├── General.php │ │ │ │ ├── Policies.php │ │ │ │ ├── SaveCategory.php │ │ │ │ ├── SaveStoreView.php │ │ │ │ ├── SaveTitle.php │ │ │ │ └── SelectStoreView.php │ │ │ ├── ExportCsvAllItemsGrid.php │ │ │ ├── ExportCsvListingGrid.php │ │ │ ├── GetCategoryChooserHtml.php │ │ │ ├── GetChangePartsCompatibilityModePopupHtml.php │ │ │ ├── GetEstimatedFees.php │ │ │ ├── GetListingProductBids.php │ │ │ ├── GoToEbay.php │ │ │ ├── Index.php │ │ │ ├── ItemsByIssue.php │ │ │ ├── PreviewItems.php │ │ │ ├── Product │ │ │ │ ├── Add.php │ │ │ │ ├── Add │ │ │ │ │ ├── DeleteAll.php │ │ │ │ │ ├── SetAutoActionPopupShown.php │ │ │ │ │ └── SourceMode.php │ │ │ │ ├── Category │ │ │ │ │ ├── Settings.php │ │ │ │ │ └── Settings │ │ │ │ │ │ ├── Index.php │ │ │ │ │ │ ├── OtherCategories.php │ │ │ │ │ │ └── OtherCategoriesGrid.php │ │ │ │ └── Duplicate │ │ │ │ │ ├── GetPopup.php │ │ │ │ │ └── Solve.php │ │ │ ├── ResetSpecificsToDefault.php │ │ │ ├── Review.php │ │ │ ├── RunListProducts.php │ │ │ ├── RunRelistProducts.php │ │ │ ├── RunReviseProducts.php │ │ │ ├── RunStopAndRemoveProducts.php │ │ │ ├── RunStopProducts.php │ │ │ ├── Save.php │ │ │ ├── SaveCategoryTemplate.php │ │ │ ├── SavePartsCompatibilityMode.php │ │ │ ├── Settings │ │ │ │ └── Motors │ │ │ │ │ ├── AddFilterGrid.php │ │ │ │ │ ├── AddGroupGrid.php │ │ │ │ │ ├── AddItemGrid.php │ │ │ │ │ ├── AddView.php │ │ │ │ │ ├── CloseInstruction.php │ │ │ │ │ ├── GetAddCustomItemForm.php │ │ │ │ │ ├── GetGroupContentView.php │ │ │ │ │ ├── GetNoteForm.php │ │ │ │ │ ├── GetSaveAsGroupForm.php │ │ │ │ │ ├── GetSaveFilterForm.php │ │ │ │ │ ├── RemoveCustomItem.php │ │ │ │ │ ├── RemoveFilter.php │ │ │ │ │ ├── RemoveFilterFromGroup.php │ │ │ │ │ ├── RemoveFilterFromProduct.php │ │ │ │ │ ├── RemoveGroup.php │ │ │ │ │ ├── RemoveGroupFromListingProduct.php │ │ │ │ │ ├── RemoveItemFromGroup.php │ │ │ │ │ ├── RemoveItemFromProduct.php │ │ │ │ │ ├── SaveAsGroup.php │ │ │ │ │ ├── SaveCustomItem.php │ │ │ │ │ ├── SaveFilter.php │ │ │ │ │ ├── SetNoteToFilters.php │ │ │ │ │ ├── UpdateMotorsData.php │ │ │ │ │ ├── ViewFilter.php │ │ │ │ │ ├── ViewFilterGrid.php │ │ │ │ │ ├── ViewGroup.php │ │ │ │ │ ├── ViewGroupGrid.php │ │ │ │ │ ├── ViewItem.php │ │ │ │ │ └── ViewItemGrid.php │ │ │ ├── Transferring.php │ │ │ ├── Transferring │ │ │ │ ├── AddProducts.php │ │ │ │ └── GetListings.php │ │ │ ├── Unmanaged │ │ │ │ ├── CreateProductAndMap.php │ │ │ │ ├── ExportCsvUnmanagedGrid.php │ │ │ │ ├── Index.php │ │ │ │ ├── MoveToListing.php │ │ │ │ ├── Removing.php │ │ │ │ └── Reset.php │ │ │ ├── Variation │ │ │ │ └── Product │ │ │ │ │ └── Manage │ │ │ │ │ ├── GetGridHtml.php │ │ │ │ │ ├── Index.php │ │ │ │ │ └── SetIdentifiers.php │ │ │ ├── View.php │ │ │ └── Wizard │ │ │ │ ├── Back.php │ │ │ │ ├── Cancel.php │ │ │ │ ├── Category │ │ │ │ ├── AssignModeCategory.php │ │ │ │ ├── AssignModeManually.php │ │ │ │ ├── AssignModeSame.php │ │ │ │ ├── CompleteModeManually.php │ │ │ │ ├── GetCategorySpecificHtml.php │ │ │ │ ├── GetChildCategories.php │ │ │ │ ├── GetChooserBlockHtml.php │ │ │ │ ├── GetSelectedCategoriesDetails.php │ │ │ │ ├── ModeChooser.php │ │ │ │ ├── ModeCompleteStep.php │ │ │ │ ├── ModeView.php │ │ │ │ ├── ResetModeCategory.php │ │ │ │ ├── ResetModeManually.php │ │ │ │ ├── SetCategoryByEbayRecommendation.php │ │ │ │ ├── Unmanaged │ │ │ │ │ └── View.php │ │ │ │ ├── ValidateModeManually.php │ │ │ │ └── View.php │ │ │ │ ├── Create.php │ │ │ │ ├── CreateUnmanaged.php │ │ │ │ ├── Index.php │ │ │ │ ├── Product │ │ │ │ ├── Add.php │ │ │ │ ├── CompleteStep.php │ │ │ │ ├── GetCategoriesJson.php │ │ │ │ ├── GetCategoriesSummaryHtml.php │ │ │ │ ├── GetProductsIds.php │ │ │ │ ├── GetTreeInfo.php │ │ │ │ ├── RemoveProductsByCategory.php │ │ │ │ ├── SaveProductsAndGetInfo.php │ │ │ │ └── View.php │ │ │ │ ├── ProductSource │ │ │ │ ├── Select.php │ │ │ │ └── View.php │ │ │ │ ├── Review │ │ │ │ ├── Complete.php │ │ │ │ └── View.php │ │ │ │ ├── StepAbstract.php │ │ │ │ ├── Validation │ │ │ │ ├── CompleteStep.php │ │ │ │ ├── Validate.php │ │ │ │ └── View.php │ │ │ │ └── WizardTrait.php │ │ ├── Log.php │ │ ├── Log │ │ │ ├── Listing.php │ │ │ ├── Listing │ │ │ │ └── Product │ │ │ │ │ ├── Grid.php │ │ │ │ │ └── Index.php │ │ │ ├── Order.php │ │ │ └── Order │ │ │ │ ├── Grid.php │ │ │ │ └── Index.php │ │ ├── Main.php │ │ ├── Marketplace.php │ │ ├── Marketplace │ │ │ ├── Index.php │ │ │ ├── RunSynchNow.php │ │ │ ├── Save.php │ │ │ ├── SynchGetExecutingInfo.php │ │ │ └── isExistDeletedCategories.php │ │ ├── Order.php │ │ ├── Order │ │ │ ├── CreateMagentoOrder.php │ │ │ ├── FinalFee │ │ │ │ └── Update.php │ │ │ ├── GoToPaypal.php │ │ │ ├── Grid.php │ │ │ ├── Index.php │ │ │ ├── OrderItemGrid.php │ │ │ ├── ProcessBuyerCancellationRequest │ │ │ │ ├── Approve.php │ │ │ │ └── Reject.php │ │ │ ├── ProcessBuyerReturnRequest │ │ │ │ ├── Approve.php │ │ │ │ └── Decline.php │ │ │ ├── ShippingAddress │ │ │ │ ├── Edit.php │ │ │ │ └── Save.php │ │ │ ├── UpdatePaymentStatus.php │ │ │ ├── UpdateShippingStatus.php │ │ │ └── View.php │ │ ├── PromotedListing │ │ │ ├── AddItemsToCampaign.php │ │ │ ├── CreateCampaign.php │ │ │ ├── DeleteCampaign.php │ │ │ ├── DeleteItemsFromCampaign.php │ │ │ ├── GetCampaignGrid.php │ │ │ ├── GetCreateCampaignForm.php │ │ │ ├── GetUpdateCampaignForm.php │ │ │ ├── RefreshCampaigns.php │ │ │ └── UpdateCampaign.php │ │ ├── Promotion │ │ │ ├── OpenGridDiscount.php │ │ │ ├── OpenGridPromotion.php │ │ │ ├── SynchronizePromotions.php │ │ │ └── UpdateItemPromotion.php │ │ ├── Settings.php │ │ ├── Settings │ │ │ ├── AttributeMapping │ │ │ │ ├── Save.php │ │ │ │ └── SetGpsrToCategory.php │ │ │ ├── Index.php │ │ │ ├── Motors │ │ │ │ ├── ClearAddedMotorsData.php │ │ │ │ ├── GetManagePopup.php │ │ │ │ ├── ImportMotorsData.php │ │ │ │ └── Save.php │ │ │ └── Save.php │ │ ├── Simple.php │ │ ├── Synchronization │ │ │ ├── Index.php │ │ │ ├── Log │ │ │ │ ├── Grid.php │ │ │ │ └── Index.php │ │ │ └── Save.php │ │ ├── Template.php │ │ ├── Template │ │ │ ├── Delete.php │ │ │ ├── Description.php │ │ │ ├── Description │ │ │ │ ├── CheckMagentoProductId.php │ │ │ │ ├── GetRandomMagentoProductId.php │ │ │ │ ├── Preview.php │ │ │ │ └── SaveWatermarkImage.php │ │ │ ├── Edit.php │ │ │ ├── EditListingProductsPolicy.php │ │ │ ├── GetTemplateHtml.php │ │ │ ├── Index.php │ │ │ ├── IsTitleUnique.php │ │ │ ├── NewAction.php │ │ │ ├── NewTemplateHtml.php │ │ │ ├── Save.php │ │ │ ├── SaveListingProductsPolicy.php │ │ │ ├── Shipping │ │ │ │ ├── GetRateTableData.php │ │ │ │ └── UpdateDiscountProfiles.php │ │ │ └── TemplateGrid.php │ │ └── Wizard.php │ ├── General.php │ ├── General │ │ ├── CheckCustomerId.php │ │ ├── CreateAttribute.php │ │ ├── GenerateAttributeCodeByLabel.php │ │ ├── GetAccounts.php │ │ ├── GetCreateAttributeHtmlPopup.php │ │ ├── GetRuleConditionChooserHtml.php │ │ ├── IsAttributeCodeUnique.php │ │ ├── IsMarketplaceEnabled.php │ │ ├── MagentoRuleGetNewConditionHtml.php │ │ ├── ModelGetAll.php │ │ ├── MsiNotificationPopupClose.php │ │ ├── RequirementsPopupClose.php │ │ ├── SkipStaticContentValidationMessage.php │ │ └── ValidationCheckRepetitionValue.php │ ├── HealthStatus.php │ ├── HealthStatus │ │ ├── Index.php │ │ └── Save.php │ ├── Listing.php │ ├── Listing │ │ ├── ClearLog.php │ │ ├── Edit.php │ │ ├── GetErrorsSummary.php │ │ ├── Mapping │ │ │ ├── MapGrid.php │ │ │ ├── MapProductPopupHtml.php │ │ │ └── Remap.php │ │ ├── Moving │ │ │ ├── MoveToListing.php │ │ │ ├── MoveToListingGrid.php │ │ │ └── PrepareMoveToListing.php │ │ ├── Other │ │ │ ├── Mapping │ │ │ │ ├── AutoMap.php │ │ │ │ ├── Map.php │ │ │ │ ├── MapGrid.php │ │ │ │ ├── MapProductPopupHtml.php │ │ │ │ └── Unmapping.php │ │ │ └── Moving │ │ │ │ ├── MoveToListingGrid.php │ │ │ │ └── PrepareMoveToListing.php │ │ ├── Product │ │ │ └── AdvancedFilter │ │ │ │ ├── Delete.php │ │ │ │ ├── Save.php │ │ │ │ └── Update.php │ │ └── SaveListingAdditionalData.php │ ├── Main.php │ ├── Maintenance │ │ └── Index.php │ ├── MigrationFromMagento1 │ │ ├── Base.php │ │ ├── Complete.php │ │ ├── Finish.php │ │ ├── InitUnexpectedlyCopied.php │ │ └── Prepare.php │ ├── Order.php │ ├── Order │ │ ├── AssignProduct.php │ │ ├── AssignProductDetails.php │ │ ├── CheckProductOptionStockAvailability.php │ │ ├── Delete.php │ │ ├── DeleteNote.php │ │ ├── EditItem.php │ │ ├── GetCountryRegions.php │ │ ├── GetDebugInformation.php │ │ ├── GetNotePopupHtml.php │ │ ├── NoteGrid.php │ │ ├── ProductMappingGrid.php │ │ ├── ReservationCancel.php │ │ ├── ReservationPlace.php │ │ ├── ResubmitShippingInfo.php │ │ ├── SaveNote.php │ │ ├── UnassignProduct.php │ │ ├── UploadByUser │ │ │ ├── Configure.php │ │ │ ├── GetPopupGrid.php │ │ │ ├── GetPopupHtml.php │ │ │ └── Reset.php │ │ └── ViewLogGrid.php │ ├── Settings │ │ ├── InterfaceAndMagentoInventory │ │ │ └── RestoreRememberedChoices.php │ │ ├── License │ │ │ ├── Change.php │ │ │ ├── RefreshStatus.php │ │ │ └── Section.php │ │ └── LogsClearing │ │ │ └── Save.php │ ├── Support.php │ ├── Support │ │ ├── Index.php │ │ ├── TestExecutionTime.php │ │ ├── TestExecutionTimeResult.php │ │ ├── TestMemoryLimit.php │ │ └── TestMemoryLimitResult.php │ ├── Synchronization │ │ ├── Log.php │ │ └── Log │ │ │ ├── Grid.php │ │ │ └── Index.php │ ├── Template │ │ ├── CheckMessages.php │ │ ├── SetDefaultValuesInSyncPolicy.php │ │ └── SkipDefaultValuesInSyncPolicy.php │ ├── Walmart │ │ ├── AbstractProductType.php │ │ ├── Account.php │ │ ├── Account │ │ │ ├── AccountGrid.php │ │ │ ├── Canada │ │ │ │ ├── Create.php │ │ │ │ └── UpdateCredentials.php │ │ │ ├── CheckAuth.php │ │ │ ├── Delete.php │ │ │ ├── Edit.php │ │ │ ├── Index.php │ │ │ ├── Save.php │ │ │ └── UnitedStates │ │ │ │ ├── AfterGetToken.php │ │ │ │ └── BeforeGetToken.php │ │ ├── Dashboard │ │ │ └── Index.php │ │ ├── GetGlobalMessages.php │ │ ├── GlobalSettings.php │ │ ├── Listing.php │ │ ├── Listing │ │ │ ├── ActionAbstract.php │ │ │ ├── AllItems.php │ │ │ ├── AutoAction.php │ │ │ ├── AutoAction │ │ │ │ ├── DeleteCategory.php │ │ │ │ ├── DeleteCategoryGroup.php │ │ │ │ ├── GetAutoCategoryFormHtml.php │ │ │ │ ├── GetCategoryGroupGrid.php │ │ │ │ ├── GetProductTypesList.php │ │ │ │ ├── Index.php │ │ │ │ ├── IsCategoryGroupTitleUnique.php │ │ │ │ ├── Reset.php │ │ │ │ └── Save.php │ │ │ ├── Create │ │ │ │ └── Index.php │ │ │ ├── Delete.php │ │ │ ├── DuplicateProducts.php │ │ │ ├── Edit.php │ │ │ ├── Edit │ │ │ │ ├── SaveStoreView.php │ │ │ │ └── SelectStoreView.php │ │ │ ├── ExportCsvAllItemsGrid.php │ │ │ ├── ExportCsvListingGrid.php │ │ │ ├── GetEditIdentifiersPopup.php │ │ │ ├── GetEditSkuPopup.php │ │ │ ├── Index.php │ │ │ ├── Product │ │ │ │ ├── AbstractAdd.php │ │ │ │ ├── Add │ │ │ │ │ ├── Add.php │ │ │ │ │ ├── AssignByMagentoCategorySaveCategory.php │ │ │ │ │ ├── CheckProductTypeProducts.php │ │ │ │ │ ├── ExitToListing.php │ │ │ │ │ ├── GetCategoriesJson.php │ │ │ │ │ ├── GetCategoriesSummaryHtml.php │ │ │ │ │ ├── GetSessionProductsIds.php │ │ │ │ │ ├── GetTreeInfo.php │ │ │ │ │ ├── Index.php │ │ │ │ │ ├── ProductTypeAssignByMagentoCategory.php │ │ │ │ │ ├── ProductTypeAssignManually.php │ │ │ │ │ ├── ProductTypeAssignType.php │ │ │ │ │ ├── RemoveAddedProducts.php │ │ │ │ │ ├── RemoveSessionProductsByCategory.php │ │ │ │ │ ├── ResetProductType.php │ │ │ │ │ ├── SaveProductsToSessionAndGetInfo.php │ │ │ │ │ ├── ViewListing.php │ │ │ │ │ └── ViewListingAndList.php │ │ │ │ ├── EditIdentifier.php │ │ │ │ ├── EditSku.php │ │ │ │ ├── GetEditIdentifiersPopup.php │ │ │ │ ├── GetEditSkuPopup.php │ │ │ │ ├── ProductType │ │ │ │ │ ├── Assign.php │ │ │ │ │ ├── Unassign.php │ │ │ │ │ ├── ValidateProductsForAssign.php │ │ │ │ │ ├── ViewGrid.php │ │ │ │ │ └── ViewPopup.php │ │ │ │ ├── Variation │ │ │ │ │ ├── GetSwitchToIndividualModePopUp.php │ │ │ │ │ ├── GetSwitchToParentModePopUp.php │ │ │ │ │ ├── Individual │ │ │ │ │ │ ├── Edit.php │ │ │ │ │ │ ├── Generate.php │ │ │ │ │ │ ├── GetEditPopup.php │ │ │ │ │ │ ├── GetManagePopup.php │ │ │ │ │ │ └── Manage.php │ │ │ │ │ ├── Manage.php │ │ │ │ │ ├── Manage │ │ │ │ │ │ ├── CreateNewChild.php │ │ │ │ │ │ ├── GetNewChildForm.php │ │ │ │ │ │ ├── SaveAutoActionSettings.php │ │ │ │ │ │ ├── SetChannelAttributes.php │ │ │ │ │ │ ├── SetChildListingProductOptions.php │ │ │ │ │ │ ├── SetMatchedAttributes.php │ │ │ │ │ │ ├── SetSwatchImagesAttribute.php │ │ │ │ │ │ ├── ViewVariationsGridAjax.php │ │ │ │ │ │ └── ViewVariationsSettingsAjax.php │ │ │ │ │ └── Vocabulary │ │ │ │ │ │ ├── AddAttributes.php │ │ │ │ │ │ ├── AddOptions.php │ │ │ │ │ │ ├── GetAttributesPopup.php │ │ │ │ │ │ ├── GetOptionsPopup.php │ │ │ │ │ │ ├── RemoveAttribute.php │ │ │ │ │ │ ├── RemoveOption.php │ │ │ │ │ │ └── ViewVocabularyAjax.php │ │ │ │ └── VariationReset.php │ │ │ ├── RunDeleteAndRemoveProducts.php │ │ │ ├── RunListProducts.php │ │ │ ├── RunRelistProducts.php │ │ │ ├── RunReviseProducts.php │ │ │ ├── RunStopAndRemoveProducts.php │ │ │ ├── RunStopProducts.php │ │ │ ├── Save.php │ │ │ ├── Unmanaged.php │ │ │ ├── Unmanaged │ │ │ │ ├── ExportCsvUnmanagedGrid.php │ │ │ │ ├── Grid.php │ │ │ │ ├── Index.php │ │ │ │ ├── MoveToListing.php │ │ │ │ ├── Removing.php │ │ │ │ └── Reset.php │ │ │ └── View.php │ │ ├── Log │ │ │ ├── Listing.php │ │ │ ├── Listing │ │ │ │ └── Product │ │ │ │ │ ├── Grid.php │ │ │ │ │ └── Index.php │ │ │ ├── Order.php │ │ │ └── Order │ │ │ │ ├── Grid.php │ │ │ │ └── Index.php │ │ ├── Main.php │ │ ├── Marketplace.php │ │ ├── Marketplace │ │ │ ├── Index.php │ │ │ ├── RunSynchNow.php │ │ │ ├── Save.php │ │ │ ├── SynchGetExecutingInfo.php │ │ │ └── WithProductType │ │ │ │ ├── RunSynchNow.php │ │ │ │ └── SynchGetExecutingInfo.php │ │ ├── Order.php │ │ ├── Order │ │ │ ├── CreateMagentoOrder.php │ │ │ ├── GoToWalmart.php │ │ │ ├── Grid.php │ │ │ ├── Index.php │ │ │ ├── OrderItemGrid.php │ │ │ ├── ShippingAddress │ │ │ │ ├── Edit.php │ │ │ │ └── Save.php │ │ │ ├── UpdateShippingStatus.php │ │ │ └── View.php │ │ ├── ProductType │ │ │ ├── Delete.php │ │ │ ├── Edit.php │ │ │ ├── GetCategories.php │ │ │ ├── GetListingProductIdsByProductType.php │ │ │ ├── GetProductTypeInfo.php │ │ │ ├── Grid.php │ │ │ ├── Index.php │ │ │ ├── IsUniqueTitle.php │ │ │ ├── Save.php │ │ │ └── SearchProductTypePopup.php │ │ ├── Settings.php │ │ ├── Settings │ │ │ ├── AttributeMapping │ │ │ │ └── Save.php │ │ │ ├── Index.php │ │ │ └── Save.php │ │ ├── Synchronization │ │ │ ├── Index.php │ │ │ ├── Log │ │ │ │ ├── Grid.php │ │ │ │ └── Index.php │ │ │ └── Save.php │ │ ├── Template.php │ │ ├── Template │ │ │ ├── Delete.php │ │ │ ├── Description │ │ │ │ ├── Delete.php │ │ │ │ ├── Edit.php │ │ │ │ ├── Index.php │ │ │ │ ├── NewAction.php │ │ │ │ └── Save.php │ │ │ ├── Edit.php │ │ │ ├── Grid.php │ │ │ ├── Index.php │ │ │ ├── NewAction.php │ │ │ ├── SellingFormat │ │ │ │ ├── Delete.php │ │ │ │ ├── Edit.php │ │ │ │ ├── GetRepricerStrategies.php │ │ │ │ ├── Index.php │ │ │ │ ├── NewAction.php │ │ │ │ └── Save.php │ │ │ └── Synchronization │ │ │ │ ├── Delete.php │ │ │ │ ├── Edit.php │ │ │ │ ├── Index.php │ │ │ │ ├── NewAction.php │ │ │ │ └── Save.php │ │ └── Wizard.php │ ├── Wizard.php │ └── Wizard │ │ ├── AbstractWalmartMigrationToProductTypes.php │ │ ├── AmazonMigrationToProductTypes.php │ │ ├── AmazonMigrationToProductTypes │ │ ├── Accept.php │ │ └── Index.php │ │ ├── InstallationAmazon.php │ │ ├── InstallationAmazon │ │ ├── Account.php │ │ ├── AfterToken.php │ │ ├── BeforeToken.php │ │ ├── Congratulation.php │ │ ├── Index.php │ │ ├── Installation.php │ │ ├── ListingGeneral.php │ │ ├── ListingSearch.php │ │ ├── ListingSelling.php │ │ ├── ListingTutorial.php │ │ ├── NewAsin.php │ │ ├── ProductSelection.php │ │ ├── Registration.php │ │ ├── SearchAsin.php │ │ ├── SetStatus.php │ │ ├── SetStep.php │ │ ├── Settings.php │ │ ├── SettingsContinue.php │ │ ├── Skip.php │ │ └── SourceMode.php │ │ ├── InstallationEbay.php │ │ ├── InstallationEbay │ │ ├── Account.php │ │ ├── AfterGetSellApiToken.php │ │ ├── BeforeGetSellApiToken.php │ │ ├── Congratulation.php │ │ ├── Index.php │ │ ├── Installation.php │ │ ├── ListingAccount.php │ │ ├── ListingGeneral.php │ │ ├── ListingTutorial.php │ │ ├── ProductSettings.php │ │ ├── Registration.php │ │ ├── SetStatus.php │ │ ├── SetStep.php │ │ ├── Settings.php │ │ ├── SettingsContinue.php │ │ └── Skip.php │ │ ├── InstallationWalmart.php │ │ ├── InstallationWalmart │ │ ├── Account.php │ │ ├── AccountContinue.php │ │ ├── AfterGetToken.php │ │ ├── BeforeGetToken.php │ │ ├── Congratulation.php │ │ ├── Index.php │ │ ├── Installation.php │ │ ├── ListingTutorial.php │ │ ├── ListingTutorialContinue.php │ │ ├── Registration.php │ │ ├── SetStatus.php │ │ ├── SetStep.php │ │ ├── Settings.php │ │ ├── SettingsContinue.php │ │ └── Skip.php │ │ ├── MigrationFromMagento1.php │ │ ├── MigrationFromMagento1 │ │ ├── Congratulation.php │ │ ├── Database.php │ │ ├── DisableModule.php │ │ ├── Index.php │ │ ├── Installation.php │ │ ├── SetStatus.php │ │ └── SetStep.php │ │ ├── MigrationToInnodb.php │ │ ├── MigrationToInnodb │ │ ├── Index.php │ │ ├── MarketplacesSynchronization.php │ │ ├── RunSynchNow.php │ │ └── SetStatus.php │ │ ├── Registration.php │ │ ├── Registration │ │ └── CreateLicense.php │ │ ├── VersionDowngrade │ │ └── Index.php │ │ └── WalmartMigrationToProductTypes │ │ ├── Index.php │ │ └── Sync.php └── Cron │ ├── Index.php │ ├── Reset.php │ └── Test.php ├── Helper ├── Analytics.php ├── Client.php ├── Client │ └── Cache.php ├── Component.php ├── Component │ ├── Amazon.php │ ├── Amazon │ │ ├── Configuration.php │ │ ├── MerchantFulfillment.php │ │ ├── ProductType.php │ │ ├── Repricing.php │ │ ├── Variation.php │ │ └── Vocabulary.php │ ├── Ebay.php │ ├── Ebay │ │ ├── Category.php │ │ ├── Category │ │ │ ├── Ebay.php │ │ │ └── Store.php │ │ ├── Configuration.php │ │ ├── Listing │ │ │ └── Product │ │ │ │ └── ScheduledStopAction.php │ │ ├── Motors.php │ │ └── Template │ │ │ └── Switcher │ │ │ └── DataLoader.php │ ├── Walmart.php │ └── Walmart │ │ ├── Configuration.php │ │ ├── Variation.php │ │ └── Vocabulary.php ├── Data.php ├── Data │ ├── Cache │ │ ├── BaseInterface.php │ │ ├── Permanent.php │ │ └── Runtime.php │ ├── FileExport.php │ ├── GlobalData.php │ ├── Product │ │ └── Identifier.php │ └── Session.php ├── Date.php ├── Factory.php ├── Json.php ├── Magento.php ├── Magento │ ├── AbstractHelper.php │ ├── Admin.php │ ├── Attribute.php │ ├── AttributeSet.php │ ├── Category.php │ ├── Plugin.php │ ├── Product.php │ ├── Staging.php │ ├── Stock.php │ ├── Store.php │ └── Store │ │ ├── Group.php │ │ ├── View.php │ │ └── Website.php ├── Module.php ├── Module │ ├── ChangeTracker.php │ ├── Configuration.php │ ├── Cron.php │ ├── Database │ │ ├── Repair.php │ │ ├── Structure.php │ │ └── Tables.php │ ├── Debugger.php │ ├── Exception.php │ ├── License.php │ ├── Log.php │ ├── Logger.php │ ├── Maintenance.php │ ├── Product │ │ └── Variation │ │ │ └── Vocabulary.php │ ├── Renderer │ │ └── Description.php │ ├── Support.php │ ├── Translation.php │ └── Wizard.php ├── Server.php ├── Server │ ├── Maintenance.php │ └── Request.php ├── Url.php ├── View.php └── View │ ├── Amazon.php │ ├── Amazon │ └── Controller.php │ ├── Configuration.php │ ├── ControlPanel.php │ ├── ControlPanel │ └── Command.php │ ├── Ebay.php │ ├── Ebay │ └── Controller.php │ ├── Walmart.php │ └── Walmart │ └── Controller.php ├── Model ├── AbstractModel.php ├── Account.php ├── AccountFactory.php ├── ActiveRecord │ ├── AbstractBuilder.php │ ├── AbstractModel.php │ ├── ActiveRecordAbstract.php │ ├── Component │ │ ├── AbstractModel.php │ │ ├── Child │ │ │ ├── AbstractModel.php │ │ │ ├── Amazon │ │ │ │ └── AbstractModel.php │ │ │ ├── Ebay │ │ │ │ └── AbstractModel.php │ │ │ └── Walmart │ │ │ │ └── AbstractModel.php │ │ └── Parent │ │ │ ├── AbstractFactory.php │ │ │ ├── AbstractModel.php │ │ │ ├── Amazon │ │ │ └── Factory.php │ │ │ ├── Ebay │ │ │ └── Factory.php │ │ │ ├── Factory.php │ │ │ └── Walmart │ │ │ └── Factory.php │ ├── Diff.php │ ├── Factory.php │ ├── LockManager.php │ ├── Relation.php │ ├── Relation │ │ ├── Amazon │ │ │ ├── AmazonAbstract.php │ │ │ └── Factory.php │ │ ├── ChildAbstract.php │ │ ├── Ebay │ │ │ ├── EbayAbstract.php │ │ │ └── Factory.php │ │ ├── Factory.php │ │ ├── FactoryInterface.php │ │ ├── ParentAbstract.php │ │ └── Walmart │ │ │ ├── Factory.php │ │ │ └── WalmartAbstract.php │ ├── Serializer.php │ └── SnapshotBuilder.php ├── Amazon │ ├── Account.php │ ├── Account │ │ ├── Builder.php │ │ ├── DeleteManager.php │ │ ├── EventDispatcher.php │ │ ├── FbaInventory │ │ │ └── MagentoSourceUpdater.php │ │ ├── MagentoOrderCreateService.php │ │ ├── Repository.php │ │ ├── Repricing.php │ │ ├── Repricing │ │ │ ├── AffectedListingsProducts.php │ │ │ ├── Builder.php │ │ │ ├── ChangeProcessor.php │ │ │ ├── Diff.php │ │ │ └── SnapshotBuilder.php │ │ └── Server │ │ │ ├── Create.php │ │ │ ├── Create │ │ │ └── Result.php │ │ │ └── Update.php │ ├── AdvancedFilter │ │ ├── AllItemsOptions.php │ │ └── AllOrdersOptions.php │ ├── Api │ │ └── OrderManagement.php │ ├── Connector │ │ ├── Account │ │ │ ├── Add │ │ │ │ └── EntityRequester.php │ │ │ ├── Check │ │ │ │ └── EntityRequester.php │ │ │ ├── Delete │ │ │ │ └── EntityRequester.php │ │ │ ├── Get │ │ │ │ └── AuthUrlRequester.php │ │ │ └── Update │ │ │ │ └── EntityRequester.php │ │ ├── Command │ │ │ ├── Pending │ │ │ │ └── Requester.php │ │ │ └── RealTime.php │ │ ├── Dispatcher.php │ │ ├── DispatcherFactory.php │ │ ├── Inventory │ │ │ └── Get │ │ │ │ ├── AfnQty │ │ │ │ ├── ItemsRequester.php │ │ │ │ └── ItemsResponser.php │ │ │ │ ├── Defected │ │ │ │ ├── ItemsRequester.php │ │ │ │ └── ItemsResponser.php │ │ │ │ ├── ItemsRequester.php │ │ │ │ └── ItemsResponser.php │ │ ├── Marketplace │ │ │ └── Get │ │ │ │ └── InfoWithDetails.php │ │ ├── Orders │ │ │ ├── Cancel │ │ │ │ ├── ItemsRequester.php │ │ │ │ └── ItemsResponser.php │ │ │ ├── Get │ │ │ │ ├── DeliveryPreferences │ │ │ │ │ ├── ItemsRequester.php │ │ │ │ │ └── ItemsResponser.php │ │ │ │ ├── Details │ │ │ │ │ ├── ItemsRequester.php │ │ │ │ │ └── ItemsResponser.php │ │ │ │ ├── InvoiceData │ │ │ │ │ ├── ItemsRequester.php │ │ │ │ │ └── ItemsResponser.php │ │ │ │ ├── InvoiceDataReport │ │ │ │ │ ├── ItemsRequester.php │ │ │ │ │ └── ItemsResponser.php │ │ │ │ └── Items.php │ │ │ ├── ProcessingRunner.php │ │ │ ├── Refund │ │ │ │ ├── ItemsRequester.php │ │ │ │ └── ItemsResponser.php │ │ │ ├── SendInvoice │ │ │ │ ├── ItemsRequester.php │ │ │ │ └── ItemsResponser.php │ │ │ └── Update │ │ │ │ ├── ItemsRequester.php │ │ │ │ └── ItemsResponser.php │ │ ├── Product │ │ │ ├── Delete │ │ │ │ ├── Requester.php │ │ │ │ └── Responser.php │ │ │ ├── Dispatcher.php │ │ │ ├── ListAction │ │ │ │ ├── ProcessingRunner.php │ │ │ │ ├── Requester.php │ │ │ │ └── Responser.php │ │ │ ├── ProcessingRunner.php │ │ │ ├── Relist │ │ │ │ ├── Requester.php │ │ │ │ └── Responser.php │ │ │ ├── Requester.php │ │ │ ├── Responser.php │ │ │ ├── Revise │ │ │ │ ├── Requester.php │ │ │ │ └── Responser.php │ │ │ └── Stop │ │ │ │ ├── Requester.php │ │ │ │ └── Responser.php │ │ ├── ProductType │ │ │ ├── Get │ │ │ │ └── Info.php │ │ │ └── SearchByCriteria │ │ │ │ ├── Command.php │ │ │ │ ├── Processor.php │ │ │ │ ├── Request.php │ │ │ │ └── Response.php │ │ ├── Protocol.php │ │ ├── Search │ │ │ ├── ByAsin │ │ │ │ ├── ItemsRequester.php │ │ │ │ └── ItemsResponser.php │ │ │ └── ByIdentifier │ │ │ │ ├── ItemsRequester.php │ │ │ │ └── ItemsResponser.php │ │ └── Template │ │ │ └── Get │ │ │ └── EntityRequester.php │ ├── Dashboard │ │ ├── Errors │ │ │ ├── CachedCalculator.php │ │ │ └── Calculator.php │ │ ├── ListingProductIssues │ │ │ ├── CachedCalculator.php │ │ │ └── Calculator.php │ │ ├── Products │ │ │ ├── CachedCalculator.php │ │ │ └── Calculator.php │ │ ├── Sales │ │ │ ├── CachedCalculator.php │ │ │ └── Calculator.php │ │ └── Shipments │ │ │ ├── CachedCalculator.php │ │ │ └── Calculator.php │ ├── Dictionary │ │ ├── Marketplace.php │ │ ├── Marketplace │ │ │ └── Repository.php │ │ ├── MarketplaceFactory.php │ │ ├── MarketplaceService.php │ │ ├── ProductType.php │ │ ├── ProductType │ │ │ └── Repository.php │ │ ├── ProductTypeFactory.php │ │ ├── ProductTypeService.php │ │ └── TemplateShipping.php │ ├── Inventory │ │ └── Sku.php │ ├── Item.php │ ├── Listing.php │ ├── Listing │ │ ├── AffectedListingsProducts.php │ │ ├── Auto │ │ │ ├── Actions │ │ │ │ └── Listing.php │ │ │ └── Category │ │ │ │ └── Group.php │ │ ├── ChangeProcessor.php │ │ ├── ChangeStoreService.php │ │ ├── Diff.php │ │ ├── Log.php │ │ ├── LogFactory.php │ │ ├── OfferImagesFormService.php │ │ ├── Other.php │ │ ├── Other │ │ │ └── Mapping.php │ │ ├── Product.php │ │ ├── Product │ │ │ ├── Action │ │ │ │ ├── Configurator.php │ │ │ │ ├── ConfiguratorFactory.php │ │ │ │ ├── DataBuilder │ │ │ │ │ ├── AbstractModel.php │ │ │ │ │ ├── Details.php │ │ │ │ │ ├── Price │ │ │ │ │ │ ├── Business.php │ │ │ │ │ │ └── Regular.php │ │ │ │ │ └── Qty.php │ │ │ │ ├── Logger.php │ │ │ │ ├── Processing.php │ │ │ │ ├── ProcessingListSku.php │ │ │ │ ├── Processor.php │ │ │ │ ├── Request.php │ │ │ │ ├── RequestData.php │ │ │ │ ├── TagManager.php │ │ │ │ └── Type │ │ │ │ │ ├── Delete │ │ │ │ │ ├── Request.php │ │ │ │ │ ├── Response.php │ │ │ │ │ └── Validator.php │ │ │ │ │ ├── ListAction │ │ │ │ │ ├── Linking.php │ │ │ │ │ ├── Request.php │ │ │ │ │ ├── Response.php │ │ │ │ │ └── Validator │ │ │ │ │ │ ├── General.php │ │ │ │ │ │ ├── ListType.php │ │ │ │ │ │ └── Sku │ │ │ │ │ │ ├── Existence.php │ │ │ │ │ │ ├── General.php │ │ │ │ │ │ └── Search.php │ │ │ │ │ ├── Relist │ │ │ │ │ ├── Request.php │ │ │ │ │ ├── Response.php │ │ │ │ │ └── Validator.php │ │ │ │ │ ├── Request.php │ │ │ │ │ ├── Response.php │ │ │ │ │ ├── Revise │ │ │ │ │ ├── Request.php │ │ │ │ │ ├── Response.php │ │ │ │ │ └── Validator.php │ │ │ │ │ ├── Stop │ │ │ │ │ ├── Request.php │ │ │ │ │ ├── Response.php │ │ │ │ │ └── Validator.php │ │ │ │ │ └── Validator.php │ │ │ ├── EventDispatcher.php │ │ │ ├── Indexer │ │ │ │ └── VariationParent.php │ │ │ ├── Instruction │ │ │ │ ├── AutoActions │ │ │ │ │ └── Handler.php │ │ │ │ ├── ProcessorFactory.php │ │ │ │ ├── Repricing │ │ │ │ │ └── Handler.php │ │ │ │ └── SynchronizationTemplate │ │ │ │ │ ├── Checker │ │ │ │ │ ├── AbstractModel.php │ │ │ │ │ ├── Active.php │ │ │ │ │ ├── Inactive.php │ │ │ │ │ └── NotListed.php │ │ │ │ │ └── Handler.php │ │ │ ├── PriceCalculator.php │ │ │ ├── PriceCalculatorFactory.php │ │ │ ├── QtyCalculator.php │ │ │ ├── RemoveHandler.php │ │ │ ├── Repricing.php │ │ │ ├── Repricing │ │ │ │ └── PriceCalculator.php │ │ │ ├── RetrieveIdentifiers.php │ │ │ ├── RetrieveIdentifiers │ │ │ │ ├── AbstractIdentifier.php │ │ │ │ ├── GeneralIdentifier.php │ │ │ │ ├── Identifiers.php │ │ │ │ └── WorldwideIdentifier.php │ │ │ ├── Variation.php │ │ │ └── Variation │ │ │ │ ├── Manager.php │ │ │ │ ├── Manager │ │ │ │ ├── AbstractModel.php │ │ │ │ ├── LogicalUnit.php │ │ │ │ ├── PhysicalUnit.php │ │ │ │ └── Type │ │ │ │ │ ├── Individual.php │ │ │ │ │ └── Relation │ │ │ │ │ ├── ChildRelation.php │ │ │ │ │ ├── ParentRelation.php │ │ │ │ │ └── ParentRelation │ │ │ │ │ ├── Processor.php │ │ │ │ │ └── Processor │ │ │ │ │ ├── Mass.php │ │ │ │ │ └── Sub │ │ │ │ │ ├── AbstractModel.php │ │ │ │ │ ├── Attributes.php │ │ │ │ │ ├── GeneralIdOwner.php │ │ │ │ │ ├── MatchedAttributes.php │ │ │ │ │ ├── Options.php │ │ │ │ │ ├── Selling.php │ │ │ │ │ ├── Status.php │ │ │ │ │ ├── Template.php │ │ │ │ │ └── Theme.php │ │ │ │ ├── Matcher │ │ │ │ ├── Attribute.php │ │ │ │ ├── Attribute │ │ │ │ │ └── Resolver.php │ │ │ │ ├── Option.php │ │ │ │ ├── Option │ │ │ │ │ └── Resolver.php │ │ │ │ └── Theme.php │ │ │ │ ├── Option.php │ │ │ │ └── Updater.php │ │ ├── ProductIdentifiersConfig.php │ │ ├── Repository.php │ │ ├── SnapshotBuilder.php │ │ ├── Source.php │ │ └── Transferring.php │ ├── Magento │ │ ├── Order │ │ │ ├── Item │ │ │ │ └── UpdateCustomizationDetails.php │ │ │ └── UpdateAddressVatIdService.php │ │ └── Product │ │ │ ├── ChangeProcessor.php │ │ │ ├── Rule.php │ │ │ ├── Rule │ │ │ ├── Condition │ │ │ │ ├── Combine.php │ │ │ │ └── Product.php │ │ │ └── Custom │ │ │ │ ├── AmazonGeneralId.php │ │ │ │ ├── AmazonGeneralIdOwner.php │ │ │ │ ├── AmazonGeneralIdState.php │ │ │ │ ├── AmazonIsAfnChanel.php │ │ │ │ ├── AmazonIsRepricing.php │ │ │ │ ├── AmazonOnlinePrice.php │ │ │ │ ├── AmazonOnlineQty.php │ │ │ │ ├── AmazonOnlineSalePrice.php │ │ │ │ ├── AmazonSku.php │ │ │ │ └── AmazonStatus.php │ │ │ └── RuleFactory.php │ ├── Marketplace.php │ ├── Marketplace │ │ ├── Issue │ │ │ ├── ProductTypeOutOfDate.php │ │ │ └── ProductTypeOutOfDate │ │ │ │ └── Cache.php │ │ └── Repository.php │ ├── Order.php │ ├── Order │ │ ├── Action │ │ │ ├── Processing.php │ │ │ ├── Processor.php │ │ │ └── TimeManager.php │ │ ├── Builder.php │ │ ├── Creditmemo │ │ │ └── Handler.php │ │ ├── Helper.php │ │ ├── Invoice.php │ │ ├── Invoice │ │ │ └── Pdf │ │ │ │ ├── AbstractPdf.php │ │ │ │ ├── CreditNote.php │ │ │ │ └── Invoice.php │ │ ├── Item.php │ │ ├── Item │ │ │ ├── Builder.php │ │ │ ├── CustomizationDetails │ │ │ │ └── TextPrintingCustomization.php │ │ │ └── ProxyObject.php │ │ ├── ProxyObject.php │ │ ├── Repository.php │ │ ├── Shipment │ │ │ ├── Handler.php │ │ │ └── ItemToShipLoader │ │ │ │ ├── DefaultObject.php │ │ │ │ └── PretendedToBeSimple.php │ │ ├── ShippingAddress.php │ │ ├── Tax │ │ │ ├── PriceTaxRateFactory.php │ │ │ ├── ProductPriceTaxRate.php │ │ │ └── ShippingPriceTaxRate.php │ │ └── UkTaxService.php │ ├── ProductType │ │ ├── AttributeMapping.php │ │ ├── AttributeMapping │ │ │ ├── Manager.php │ │ │ ├── ManagerFactory.php │ │ │ └── Suggester.php │ │ ├── AttributeMappingFactory.php │ │ ├── AttributesValidator.php │ │ ├── CategoryFinder.php │ │ ├── CategoryFinder │ │ │ ├── Category.php │ │ │ ├── ProductType.php │ │ │ └── Repository.php │ │ ├── Validation.php │ │ ├── ValidationFactory.php │ │ └── Validator │ │ │ ├── BooleanValidator.php │ │ │ ├── IntegerValidator.php │ │ │ ├── NumberValidator.php │ │ │ ├── SelectValidator.php │ │ │ ├── StringValidator.php │ │ │ ├── ValidatorBuilder.php │ │ │ └── ValidatorInterface.php │ ├── Repricing │ │ ├── AbstractModel.php │ │ ├── Action │ │ │ └── Account.php │ │ ├── Issue │ │ │ └── InvalidToken.php │ │ ├── ResponseMessage.php │ │ ├── Synchronization │ │ │ ├── AbstractModel.php │ │ │ ├── ActualInfo.php │ │ │ ├── ActualPrice.php │ │ │ └── General.php │ │ └── Updating.php │ ├── Search │ │ ├── Custom.php │ │ ├── Custom │ │ │ ├── ByAsin │ │ │ │ ├── Requester.php │ │ │ │ └── Responser.php │ │ │ ├── ByIdentifier │ │ │ │ ├── Requester.php │ │ │ │ └── Responser.php │ │ │ ├── Factory.php │ │ │ ├── Query.php │ │ │ └── Result.php │ │ ├── Dispatcher.php │ │ ├── Settings.php │ │ └── Settings │ │ │ ├── ByAsin │ │ │ ├── Requester.php │ │ │ └── Responser.php │ │ │ ├── ByIdentifier │ │ │ ├── Requester.php │ │ │ └── Responser.php │ │ │ ├── CounterOfFind.php │ │ │ └── ProcessingRunner.php │ ├── ShippingMap.php │ ├── ShippingMapFactory.php │ ├── TagFactory.php │ ├── Template │ │ ├── ChangeProcessor │ │ │ └── ChangeProcessorAbstract.php │ │ ├── Manager.php │ │ ├── ProductTaxCode.php │ │ ├── ProductTaxCode │ │ │ ├── AffectedListingsProducts.php │ │ │ ├── Builder.php │ │ │ ├── ChangeProcessor.php │ │ │ ├── Diff.php │ │ │ ├── SnapshotBuilder.php │ │ │ └── Source.php │ │ ├── ProductType.php │ │ ├── ProductType │ │ │ ├── AffectedListingsProducts.php │ │ │ ├── Builder.php │ │ │ ├── ChangeProcessor.php │ │ │ ├── Diff.php │ │ │ ├── Repository.php │ │ │ └── SnapshotBuilder.php │ │ ├── ProductTypeFactory.php │ │ ├── SellingFormat.php │ │ ├── SellingFormat │ │ │ ├── AffectedListingsProducts.php │ │ │ ├── Builder.php │ │ │ ├── BusinessDiscount.php │ │ │ ├── ChangeProcessor.php │ │ │ ├── Diff.php │ │ │ └── SnapshotBuilder.php │ │ ├── Shipping.php │ │ ├── Shipping │ │ │ ├── AffectedListingsProducts.php │ │ │ ├── Builder.php │ │ │ ├── ChangeProcessor.php │ │ │ ├── Diff.php │ │ │ ├── SnapshotBuilder.php │ │ │ ├── Source.php │ │ │ └── Update.php │ │ ├── Synchronization.php │ │ └── Synchronization │ │ │ ├── AffectedListingsProducts.php │ │ │ ├── Builder.php │ │ │ ├── ChangeProcessor.php │ │ │ ├── Diff.php │ │ │ └── SnapshotBuilder.php │ └── ThrottlingManager.php ├── AmazonMcf │ └── Amazon │ │ ├── Connector │ │ ├── CommandExecutor.php │ │ ├── CreateFulfillmentOrder │ │ │ ├── Command.php │ │ │ └── Processor.php │ │ ├── GetFulfillmentOrder │ │ │ ├── Command.php │ │ │ └── Processor.php │ │ ├── GetPackageDetails │ │ │ ├── Command.php │ │ │ └── Processor.php │ │ └── MessagesTrait.php │ │ └── Provider │ │ ├── Account │ │ └── Repository.php │ │ ├── Order │ │ └── Repository.php │ │ └── Product │ │ └── Repository.php ├── ArchivedEntity.php ├── AttributeMapping │ ├── Pair.php │ ├── PairFactory.php │ └── Repository.php ├── AttributeOptionMapping │ ├── Pair.php │ ├── PairFactory.php │ └── Repository.php ├── ChangeTracker │ ├── Amazon │ │ ├── InventoryTracker.php │ │ └── PriceTracker.php │ ├── Base │ │ ├── AbstractInventoryTracker.php │ │ └── AbstractPriceTracker.php │ ├── ChangeHolder.php │ ├── ChangeHolderFactory.php │ ├── ChangeTrackerProcessor.php │ ├── Common │ │ ├── Helpers │ │ │ ├── EnterpriseChecker.php │ │ │ ├── MagentoAttributes.php │ │ │ ├── Profiler.php │ │ │ └── TrackerLogger.php │ │ ├── PriceCondition │ │ │ ├── AbstractPriceCondition.php │ │ │ ├── Amazon.php │ │ │ ├── Ebay.php │ │ │ ├── PriceConditionFactory.php │ │ │ └── Walmart.php │ │ └── QueryBuilder │ │ │ ├── InventoryStock.php │ │ │ ├── Join.php │ │ │ ├── ProductAttributesQueryBuilder.php │ │ │ ├── QueryBuilderFactory.php │ │ │ └── SelectQueryBuilder.php │ ├── Ebay │ │ ├── BestOfferTracker.php │ │ ├── InventoryTracker.php │ │ └── PriceTracker.php │ ├── Exceptions │ │ └── ChangeTrackerException.php │ ├── PartManager.php │ ├── TrackerConfiguration.php │ ├── TrackerFactory.php │ ├── TrackerInterface.php │ ├── TrackerRepository.php │ ├── Traits │ │ ├── AffectedMagentoProductLoaderTrait.php │ │ └── TableNameReplacerTrait.php │ └── Walmart │ │ ├── InventoryTracker.php │ │ └── PriceTracker.php ├── Config.php ├── Config │ ├── ListingSynchronization.php │ └── Manager.php ├── Connector │ ├── Command │ │ ├── AbstractModel.php │ │ ├── Pending │ │ │ ├── Processing │ │ │ │ ├── Partial.php │ │ │ │ ├── Partial │ │ │ │ │ └── Runner.php │ │ │ │ ├── Runner.php │ │ │ │ ├── Single.php │ │ │ │ └── Single │ │ │ │ │ └── Runner.php │ │ │ ├── Requester.php │ │ │ └── Responser.php │ │ ├── RealTime.php │ │ └── RealTime │ │ │ └── Virtual.php │ ├── Connection │ │ ├── AbstractModel.php │ │ ├── Multiple.php │ │ ├── Multiple │ │ │ └── RequestContainer.php │ │ ├── Request.php │ │ ├── Response.php │ │ ├── Response │ │ │ ├── Message.php │ │ │ ├── Message │ │ │ │ ├── Set.php │ │ │ │ └── SetFactory.php │ │ │ └── MessageFactory.php │ │ └── Single.php │ └── ProtocolInterface.php ├── ControlPanel │ ├── Database │ │ └── TableModel.php │ └── Inspection │ │ ├── Definition.php │ │ ├── FixerInterface.php │ │ ├── HandlerFactory.php │ │ ├── Inspector │ │ ├── AmazonProductWithoutVariations.php │ │ ├── BrokenTables.php │ │ ├── ConfigsValidity.php │ │ ├── EbayItemIdStructure.php │ │ ├── ExtensionCron.php │ │ ├── FilesPermissions.php │ │ ├── FilesValidity.php │ │ ├── ListingProductStructure.php │ │ ├── MagentoSettings.php │ │ ├── NonexistentTemplates.php │ │ ├── OrderItemStructure.php │ │ ├── RemovedStores.php │ │ ├── ServerConnection.php │ │ ├── ShowM2eProLoggers.php │ │ ├── SystemRequirements.php │ │ └── TablesStructureValidity.php │ │ ├── InspectorInterface.php │ │ ├── Issue.php │ │ ├── Issue │ │ └── Factory.php │ │ ├── Processor.php │ │ ├── Repository.php │ │ ├── Repository │ │ └── DefinitionProvider.php │ │ ├── Result.php │ │ └── Result │ │ └── Factory.php ├── Cron │ ├── Manager.php │ ├── OperationHistory.php │ ├── Runner │ │ ├── AbstractModel.php │ │ ├── Developer.php │ │ ├── Magento.php │ │ ├── Service │ │ │ ├── AbstractModel.php │ │ │ ├── Controller.php │ │ │ ├── Pub.php │ │ │ └── Pub │ │ │ │ └── Application.php │ │ └── Switcher.php │ ├── Strategy │ │ ├── AbstractModel.php │ │ ├── Observer │ │ │ ├── KeepAlive.php │ │ │ └── Progress.php │ │ ├── Parallel.php │ │ └── Serial.php │ └── Task │ │ ├── AbstractModel.php │ │ ├── Amazon │ │ ├── Listing │ │ │ ├── Other │ │ │ │ └── ResolveTitle.php │ │ │ ├── Product │ │ │ │ ├── Channel │ │ │ │ │ └── SynchronizeData │ │ │ │ │ │ ├── AfnQty.php │ │ │ │ │ │ ├── AfnQty │ │ │ │ │ │ ├── AccountUpdateIntervalManager.php │ │ │ │ │ │ ├── ProcessingRunner.php │ │ │ │ │ │ ├── Requester.php │ │ │ │ │ │ └── Responser.php │ │ │ │ │ │ ├── Defected.php │ │ │ │ │ │ └── Defected │ │ │ │ │ │ ├── ProcessingRunner.php │ │ │ │ │ │ ├── Requester.php │ │ │ │ │ │ └── Responser.php │ │ │ │ ├── ProcessActions.php │ │ │ │ ├── ProcessActionsResults.php │ │ │ │ ├── ProcessInstructions.php │ │ │ │ └── RunVariationParentProcessors.php │ │ │ ├── SynchronizeInventory.php │ │ │ └── SynchronizeInventory │ │ │ │ ├── ProcessingRunner.php │ │ │ │ ├── Requester.php │ │ │ │ └── Responser.php │ │ ├── Order │ │ │ ├── Action │ │ │ │ ├── ProcessCancel.php │ │ │ │ ├── ProcessRefund.php │ │ │ │ ├── ProcessResults.php │ │ │ │ └── ProcessUpdate.php │ │ │ ├── Cancel.php │ │ │ ├── Cancel │ │ │ │ ├── Requester.php │ │ │ │ └── Responser.php │ │ │ ├── CreateFailed.php │ │ │ ├── Creator.php │ │ │ ├── DeliveryPreferences.php │ │ │ ├── DeliveryPreferences │ │ │ │ ├── ProcessingRunner.php │ │ │ │ ├── Requester.php │ │ │ │ └── Responser.php │ │ │ ├── Get │ │ │ │ └── Fees.php │ │ │ ├── Receive.php │ │ │ ├── Receive │ │ │ │ ├── Details.php │ │ │ │ ├── Details │ │ │ │ │ ├── Requester.php │ │ │ │ │ └── Responser.php │ │ │ │ ├── InvoiceData.php │ │ │ │ ├── InvoiceData │ │ │ │ │ ├── MerchantIntervalManager.php │ │ │ │ │ ├── Requester.php │ │ │ │ │ └── Responser.php │ │ │ │ ├── InvoiceDataReport.php │ │ │ │ └── InvoiceDataReport │ │ │ │ │ ├── Requester.php │ │ │ │ │ └── Responser.php │ │ │ ├── Refund.php │ │ │ ├── Refund │ │ │ │ ├── Requester.php │ │ │ │ └── Responser.php │ │ │ ├── ReserveCancel.php │ │ │ ├── SendInvoice.php │ │ │ ├── SendInvoice │ │ │ │ ├── Requester.php │ │ │ │ └── Responser.php │ │ │ ├── Update.php │ │ │ ├── Update │ │ │ │ ├── Requester.php │ │ │ │ ├── Responser.php │ │ │ │ └── SellerOrderId.php │ │ │ ├── UploadByUser.php │ │ │ └── UploadByUser │ │ │ │ └── Manager.php │ │ └── Repricing │ │ │ ├── InspectProducts.php │ │ │ ├── Synchronize.php │ │ │ └── UpdateSettings.php │ │ ├── Ebay │ │ ├── Channel │ │ │ ├── SynchronizeChanges.php │ │ │ └── SynchronizeChanges │ │ │ │ ├── ItemsProcessor.php │ │ │ │ ├── ItemsProcessor │ │ │ │ └── StatusResolver.php │ │ │ │ └── OrdersProcessor.php │ │ ├── ComplianceDocumentsUpload.php │ │ ├── Feedbacks │ │ │ ├── DownloadNew.php │ │ │ └── SendResponse.php │ │ ├── Listing │ │ │ ├── Other │ │ │ │ ├── Channel │ │ │ │ │ ├── SynchronizeData.php │ │ │ │ │ └── SynchronizeData │ │ │ │ │ │ ├── ProcessingRunner.php │ │ │ │ │ │ ├── Requester.php │ │ │ │ │ │ └── Responser.php │ │ │ │ └── ResolveNonReceivedData.php │ │ │ └── Product │ │ │ │ ├── KTypes │ │ │ │ └── UpdateFromTecDoc.php │ │ │ │ ├── ProcessActions.php │ │ │ │ ├── ProcessInstructions.php │ │ │ │ ├── ProcessScheduledActions.php │ │ │ │ ├── ProcessScheduledStopActions.php │ │ │ │ └── RemovePotentialDuplicates.php │ │ ├── Order │ │ │ ├── Cancel.php │ │ │ ├── CreateFailed.php │ │ │ ├── Creator.php │ │ │ ├── Refund.php │ │ │ ├── ReserveCancel.php │ │ │ ├── RetrieveFinalFee.php │ │ │ ├── Update.php │ │ │ ├── UploadByUser.php │ │ │ └── UploadByUser │ │ │ │ └── Manager.php │ │ ├── SynchronizePromotedListingCampaigns.php │ │ ├── SynchronizePromotions.php │ │ ├── Template │ │ │ └── RemoveUnused.php │ │ ├── UpdateAccountsPreferences.php │ │ └── VideoUpload.php │ │ ├── Listing │ │ └── Product │ │ │ ├── ChangeTracker.php │ │ │ ├── InspectDirectChanges.php │ │ │ └── StopQueue.php │ │ ├── Magento │ │ ├── GlobalNotifications.php │ │ └── Product │ │ │ ├── BulkWebsiteUpdated.php │ │ │ ├── DetectDirectlyAdded.php │ │ │ ├── DetectDirectlyDeleted.php │ │ │ └── DetectSpecialPriceStartEndDate.php │ │ ├── Repository.php │ │ ├── System │ │ ├── ArchiveOldOrders.php │ │ ├── ClearOldLogs.php │ │ ├── ConnectorCommandPending │ │ │ ├── ProcessPartial.php │ │ │ └── ProcessSingle.php │ │ ├── FixItemTables.php │ │ ├── HealthStatus.php │ │ ├── Processing │ │ │ └── ProcessResult.php │ │ ├── RequestPending │ │ │ ├── ProcessPartial.php │ │ │ └── ProcessSingle.php │ │ └── Servicing │ │ │ ├── Statistic │ │ │ └── InstructionType.php │ │ │ └── Synchronize.php │ │ └── Walmart │ │ ├── Listing │ │ ├── Product │ │ │ ├── ProcessActions.php │ │ │ ├── ProcessActionsResults.php │ │ │ ├── ProcessInstructions.php │ │ │ ├── ProcessListActions.php │ │ │ └── RunVariationParentProcessors.php │ │ ├── SynchronizeInventory.php │ │ └── SynchronizeInventory │ │ │ ├── ProcessingRunner.php │ │ │ ├── Requester.php │ │ │ └── Responser.php │ │ └── Order │ │ ├── Acknowledge.php │ │ ├── Cancel.php │ │ ├── CreateFailed.php │ │ ├── Creator.php │ │ ├── Receive.php │ │ ├── ReceiveWfs.php │ │ ├── ReceiveWithCancellationRequested.php │ │ ├── Refund.php │ │ ├── ReserveCancel.php │ │ ├── Shipping.php │ │ ├── UploadByUser.php │ │ └── UploadByUser │ │ └── Manager.php ├── Currency.php ├── Dashboard │ ├── Date │ │ ├── DateRange.php │ │ └── DateRangeFactory.php │ ├── Errors │ │ └── CalculatorInterface.php │ ├── ListingProductIssues │ │ ├── Cache.php │ │ ├── CalculatorInterface.php │ │ ├── Issue.php │ │ ├── IssueFactory.php │ │ ├── IssueSet.php │ │ ├── Repository.php │ │ └── Repository │ │ │ ├── Mapper.php │ │ │ └── Record.php │ ├── Products │ │ └── CalculatorInterface.php │ ├── Sales │ │ ├── Cache.php │ │ ├── CalculatorInterface.php │ │ ├── Point.php │ │ ├── PointFactory.php │ │ └── PointSet.php │ └── Shipments │ │ └── CalculatorInterface.php ├── Ebay │ ├── Account.php │ ├── Account │ │ ├── Builder.php │ │ ├── BuilderFactory.php │ │ ├── Create.php │ │ ├── DeleteManager.php │ │ ├── Issue │ │ │ ├── ExistTokens.php │ │ │ ├── ExpiredTokens.php │ │ │ └── ValidTokens.php │ │ ├── MagentoOrderCreateService.php │ │ ├── Repository.php │ │ ├── Store │ │ │ ├── Category.php │ │ │ └── Category │ │ │ │ └── Update.php │ │ └── Update.php │ ├── AdvancedFilter │ │ ├── AllItemsOptions.php │ │ └── AllOrdersOptions.php │ ├── Api │ │ ├── Data │ │ │ ├── Order.php │ │ │ └── Order │ │ │ │ ├── Buyer.php │ │ │ │ ├── OrderItem.php │ │ │ │ ├── OrderItem │ │ │ │ ├── TaxDetails.php │ │ │ │ ├── TaxDetails │ │ │ │ │ └── CollectAndRemit.php │ │ │ │ └── TrackingDetails.php │ │ │ │ ├── PaymentDetails.php │ │ │ │ ├── ShippingDetails.php │ │ │ │ ├── ShippingDetails │ │ │ │ ├── Address.php │ │ │ │ ├── ClickAndCollectDetails.php │ │ │ │ ├── GlobalShippingDetails.php │ │ │ │ └── InStorePickupDetails.php │ │ │ │ └── TaxDetails.php │ │ ├── DataSources │ │ │ ├── Orders.php │ │ │ └── OrdersFactory.php │ │ ├── OrderManagement.php │ │ ├── OrderRepository.php │ │ ├── OrderSearchCriteria.php │ │ └── OrderSearchResult.php │ ├── AttributeMapping │ │ ├── Gpsr │ │ │ ├── CategoryModifier.php │ │ │ ├── CategoryModifier │ │ │ │ └── CategoryDiffStub.php │ │ │ ├── Provider.php │ │ │ └── Update.php │ │ ├── GpsrService.php │ │ ├── Grouped │ │ │ ├── Provider.php │ │ │ └── Update.php │ │ ├── GroupedService.php │ │ └── Pair.php │ ├── Bundle │ │ └── Options │ │ │ ├── Mapping.php │ │ │ ├── Mapping │ │ │ ├── ChangeHandler.php │ │ │ ├── ChangeHandler │ │ │ │ └── AffectedProducts.php │ │ │ ├── FormDataLoader.php │ │ │ ├── FormDataLoader │ │ │ │ ├── FormOption.php │ │ │ │ └── FormOptionFactory.php │ │ │ ├── Instructions.php │ │ │ ├── Manager.php │ │ │ ├── ObserverHandler.php │ │ │ ├── ObserverHandler │ │ │ │ ├── BundleOptionsCollector.php │ │ │ │ ├── OptionDifference.php │ │ │ │ └── OptionDifferenceFactory.php │ │ │ ├── Replacer.php │ │ │ ├── ReplacerFactory.php │ │ │ └── Repository.php │ │ │ └── MappingFactory.php │ ├── Category │ │ ├── Specific │ │ │ └── Validation │ │ │ │ ├── Result.php │ │ │ │ └── ResultFactory.php │ │ └── SpecificValidator.php │ ├── ComplianceDocuments.php │ ├── ComplianceDocuments │ │ ├── Channel │ │ │ └── Document.php │ │ ├── ListingProductRelation.php │ │ ├── ListingProductRelation │ │ │ └── Repository.php │ │ ├── ListingProductRelationFactory.php │ │ ├── PendingStatusProcessor.php │ │ ├── Product │ │ │ └── ComplianceDocumentCalculator.php │ │ ├── ProductDocumentUrlFinder.php │ │ ├── ProductDocumentUrlFinder │ │ │ ├── Result.php │ │ │ └── ResultCollection.php │ │ ├── ProductProcessor.php │ │ ├── ProductProcessor │ │ │ ├── Result.php │ │ │ └── ResultCollection.php │ │ ├── Repository.php │ │ └── UploadingStatusProcessor.php │ ├── ComplianceDocumentsFactory.php │ ├── Connector │ │ ├── Account │ │ │ ├── Add │ │ │ │ └── Entity.php │ │ │ ├── Get │ │ │ │ ├── AuthInfo.php │ │ │ │ └── GrantAccessUrl.php │ │ │ └── Update │ │ │ │ └── Entity.php │ │ ├── Category │ │ │ └── Get │ │ │ │ └── Suggested.php │ │ ├── Command │ │ │ ├── Pending │ │ │ │ └── Requester.php │ │ │ └── RealTime.php │ │ ├── Dispatcher.php │ │ ├── DispatcherFactory.php │ │ ├── Documents │ │ │ └── Upload │ │ │ │ ├── ItemsRequester.php │ │ │ │ ├── ItemsResponser.php │ │ │ │ └── ProcessingRunner.php │ │ ├── Inventory │ │ │ └── Get │ │ │ │ ├── ItemsRequester.php │ │ │ │ └── ItemsResponser.php │ │ ├── Item │ │ │ ├── Dispatcher.php │ │ │ ├── ListAction │ │ │ │ ├── Requester.php │ │ │ │ └── Responser.php │ │ │ ├── ProcessingRunner.php │ │ │ ├── Relist │ │ │ │ ├── Requester.php │ │ │ │ └── Responser.php │ │ │ ├── Requester.php │ │ │ ├── Responser.php │ │ │ ├── Revise │ │ │ │ ├── Requester.php │ │ │ │ └── Responser.php │ │ │ ├── Stop │ │ │ │ ├── Requester.php │ │ │ │ └── Responser.php │ │ │ └── Verify │ │ │ │ ├── Requester.php │ │ │ │ └── Responser.php │ │ ├── Order │ │ │ ├── Cancellation │ │ │ │ ├── AbstractModel.php │ │ │ │ ├── ByBuyer.php │ │ │ │ ├── BySeller.php │ │ │ │ └── Refund.php │ │ │ ├── Dispatcher.php │ │ │ ├── Get │ │ │ │ ├── Fees.php │ │ │ │ ├── FinalFee.php │ │ │ │ └── FinalFee │ │ │ │ │ └── Response.php │ │ │ ├── Receive │ │ │ │ └── Items.php │ │ │ ├── ReturnRequest │ │ │ │ └── Decide.php │ │ │ └── Update │ │ │ │ ├── AbstractModel.php │ │ │ │ ├── Payment.php │ │ │ │ └── Shipping.php │ │ ├── OrderItem │ │ │ ├── Dispatcher.php │ │ │ └── Update │ │ │ │ ├── Request.php │ │ │ │ ├── Request │ │ │ │ └── Item.php │ │ │ │ └── Status.php │ │ ├── Other │ │ │ └── Delete.php │ │ ├── PromotedListing │ │ │ └── Campaign │ │ │ │ ├── AddItemsConnector.php │ │ │ │ ├── AddItemsConnectorResult.php │ │ │ │ ├── CreateConnector.php │ │ │ │ ├── CreateConnectorResult.php │ │ │ │ ├── DeleteConnector.php │ │ │ │ ├── DeleteConnectorResult.php │ │ │ │ ├── DeleteItemsConnector.php │ │ │ │ ├── DeleteItemsConnectorResult.php │ │ │ │ ├── GetItemsConnector.php │ │ │ │ ├── GetItemsConnectorResult.php │ │ │ │ ├── Item │ │ │ │ └── ChannelItemResult.php │ │ │ │ ├── ListConnector.php │ │ │ │ ├── ListConnectorResult.php │ │ │ │ ├── UpdateConnector.php │ │ │ │ └── UpdateConnectorResult.php │ │ ├── Promotion │ │ │ ├── Get │ │ │ │ └── ItemsConnector.php │ │ │ └── Update │ │ │ │ └── ItemConnector.php │ │ ├── Protocol.php │ │ ├── TecDoc │ │ │ └── Get │ │ │ │ └── Ktypes.php │ │ └── Video │ │ │ └── Upload │ │ │ ├── ItemsRequester.php │ │ │ ├── ItemsResponser.php │ │ │ └── ProcessingRunner.php │ ├── Dashboard │ │ ├── Errors │ │ │ ├── CachedCalculator.php │ │ │ └── Calculator.php │ │ ├── ListingProductIssues │ │ │ ├── CachedCalculator.php │ │ │ └── Calculator.php │ │ ├── Products │ │ │ ├── CachedCalculator.php │ │ │ └── Calculator.php │ │ ├── Sales │ │ │ ├── CachedCalculator.php │ │ │ └── Calculator.php │ │ └── Shipments │ │ │ ├── CachedCalculator.php │ │ │ └── Calculator.php │ ├── Dictionary │ │ ├── Category.php │ │ ├── Marketplace.php │ │ ├── Motor │ │ │ ├── Epid.php │ │ │ └── Ktype.php │ │ └── Shipping.php │ ├── Feedback.php │ ├── Feedback │ │ ├── Issue │ │ │ └── NegativeReceived.php │ │ ├── Manager.php │ │ └── Template.php │ ├── Item.php │ ├── Listing.php │ ├── Listing │ │ ├── AffectedListingsProducts.php │ │ ├── Auto │ │ │ ├── Actions │ │ │ │ └── Listing.php │ │ │ └── Category │ │ │ │ └── Group.php │ │ ├── ChangeStoreService.php │ │ ├── Log.php │ │ ├── Other.php │ │ ├── Other │ │ │ ├── Mapping.php │ │ │ ├── ProductCreate │ │ │ │ ├── AttributesProcessor.php │ │ │ │ ├── AttributesProcessor │ │ │ │ │ ├── CreateService.php │ │ │ │ │ └── UpdateService.php │ │ │ │ ├── ChannelAttributeItem.php │ │ │ │ ├── ChannelItem.php │ │ │ │ ├── ChannelItemProvideUnmanaged.php │ │ │ │ └── ProviderInterface.php │ │ │ ├── ProductCreateService.php │ │ │ ├── Remover.php │ │ │ └── Updating.php │ │ ├── Product.php │ │ ├── Product │ │ │ ├── Action │ │ │ │ ├── Configurator.php │ │ │ │ ├── DataBuilder │ │ │ │ │ ├── AbstractModel.php │ │ │ │ │ ├── Categories.php │ │ │ │ │ ├── Condition.php │ │ │ │ │ ├── Description.php │ │ │ │ │ ├── General.php │ │ │ │ │ ├── GeneralFactory.php │ │ │ │ │ ├── Images.php │ │ │ │ │ ├── Other.php │ │ │ │ │ ├── Parts.php │ │ │ │ │ ├── Price.php │ │ │ │ │ ├── PriceFactory.php │ │ │ │ │ ├── Qty.php │ │ │ │ │ ├── ReturnPolicy.php │ │ │ │ │ ├── Shipping.php │ │ │ │ │ ├── Subtitle.php │ │ │ │ │ ├── Title.php │ │ │ │ │ └── Variations.php │ │ │ │ ├── DataHasher.php │ │ │ │ ├── DescriptionHasher.php │ │ │ │ ├── Logger.php │ │ │ │ ├── Manual │ │ │ │ │ ├── AbstractManual.php │ │ │ │ │ ├── Realtime │ │ │ │ │ │ ├── AbstractRealtime.php │ │ │ │ │ │ ├── ListAction.php │ │ │ │ │ │ ├── RelistAction.php │ │ │ │ │ │ ├── ReviseAction.php │ │ │ │ │ │ ├── StopAction.php │ │ │ │ │ │ └── StopAndRemoveAction.php │ │ │ │ │ ├── Result.php │ │ │ │ │ └── Schedule │ │ │ │ │ │ ├── AbstractSchedule.php │ │ │ │ │ │ ├── ListAction.php │ │ │ │ │ │ ├── RelistAction.php │ │ │ │ │ │ ├── ReviseAction.php │ │ │ │ │ │ ├── StopAction.php │ │ │ │ │ │ └── StopAndRemoveAction.php │ │ │ │ ├── Processing.php │ │ │ │ ├── Processor.php │ │ │ │ ├── Processor │ │ │ │ │ └── Connector │ │ │ │ │ │ └── Multiple │ │ │ │ │ │ ├── Command │ │ │ │ │ │ └── VirtualWithoutCall.php │ │ │ │ │ │ └── Dispatcher.php │ │ │ │ ├── Request.php │ │ │ │ ├── RequestData.php │ │ │ │ ├── TagManager.php │ │ │ │ └── Type │ │ │ │ │ ├── ListAction │ │ │ │ │ ├── Request.php │ │ │ │ │ ├── Response.php │ │ │ │ │ └── Validator.php │ │ │ │ │ ├── Relist │ │ │ │ │ ├── Request.php │ │ │ │ │ ├── Response.php │ │ │ │ │ └── Validator.php │ │ │ │ │ ├── Request.php │ │ │ │ │ ├── Response.php │ │ │ │ │ ├── Revise │ │ │ │ │ ├── Checker.php │ │ │ │ │ ├── Checker │ │ │ │ │ │ └── Result.php │ │ │ │ │ ├── Request.php │ │ │ │ │ ├── Response.php │ │ │ │ │ └── Validator.php │ │ │ │ │ ├── Stop │ │ │ │ │ ├── Request.php │ │ │ │ │ ├── Response.php │ │ │ │ │ └── Validator.php │ │ │ │ │ └── Validator.php │ │ │ ├── ChangeIdentifierTracker.php │ │ │ ├── ChangeIdentifierTracker │ │ │ │ └── Repository.php │ │ │ ├── ChangeIdentifierTrackerFactory.php │ │ │ ├── Description │ │ │ │ └── Renderer.php │ │ │ ├── Image │ │ │ │ └── RemoveEpcHostedImagesWithWatermarkService.php │ │ │ ├── Indexer │ │ │ │ └── VariationParent.php │ │ │ ├── Instruction │ │ │ │ ├── AutoActions │ │ │ │ │ └── Handler.php │ │ │ │ ├── ComplianceDocuments │ │ │ │ │ └── Handler.php │ │ │ │ ├── ProcessorFactory.php │ │ │ │ ├── SynchronizationTemplate │ │ │ │ │ ├── Checker │ │ │ │ │ │ ├── AbstractModel.php │ │ │ │ │ │ ├── Active.php │ │ │ │ │ │ ├── Inactive.php │ │ │ │ │ │ └── NotListed.php │ │ │ │ │ └── Handler.php │ │ │ │ └── Video │ │ │ │ │ └── CollectHandler.php │ │ │ ├── PriceCalculator.php │ │ │ ├── Promotion.php │ │ │ ├── PromotionFactory.php │ │ │ ├── QtyCalculator.php │ │ │ ├── Repository.php │ │ │ ├── ScheduledStopAction.php │ │ │ ├── ScheduledStopAction │ │ │ │ └── Factory.php │ │ │ ├── SnapshotBuilder.php │ │ │ ├── Variation.php │ │ │ ├── Variation │ │ │ │ ├── Option.php │ │ │ │ ├── Resolver.php │ │ │ │ ├── Updater.php │ │ │ │ └── Updater │ │ │ │ │ └── GroupedModifier.php │ │ │ └── VariationService.php │ │ ├── Repository.php │ │ ├── SnapshotBuilder.php │ │ ├── Transferring.php │ │ ├── Wizard.php │ │ └── Wizard │ │ │ ├── CategoryRecommendationsProcessor.php │ │ │ ├── CompleteProcessor.php │ │ │ ├── Create.php │ │ │ ├── DeleteService.php │ │ │ ├── Exception │ │ │ └── NotFoundException.php │ │ │ ├── ListingMagentoCategoriesDataProcessor.php │ │ │ ├── Manager.php │ │ │ ├── ManagerFactory.php │ │ │ ├── Product.php │ │ │ ├── Provider │ │ │ └── Category │ │ │ │ ├── Details.php │ │ │ │ └── MagentoCategoriesMode.php │ │ │ ├── RememberedCategoriesService.php │ │ │ ├── Repository.php │ │ │ ├── Step.php │ │ │ ├── Step │ │ │ ├── BackHandler │ │ │ │ ├── Products.php │ │ │ │ └── Validation.php │ │ │ ├── BackHandlerFactory.php │ │ │ └── BackHandlerInterface.php │ │ │ ├── StepDeclaration.php │ │ │ ├── StepDeclarationCollection.php │ │ │ ├── StepDeclarationCollectionFactory.php │ │ │ ├── TemplateCategoryLinkProcessor.php │ │ │ ├── TemplateCategoryLinkProcessorResult.php │ │ │ ├── Ui │ │ │ └── RuntimeStorage.php │ │ │ ├── ValidationErrorsProcessor.php │ │ │ └── Validator │ │ │ ├── PrimaryCategoryValidator.php │ │ │ ├── SpecificValidator.php │ │ │ ├── ValidatorComposite.php │ │ │ └── ValidatorInterface.php │ ├── ListingFactory.php │ ├── Magento │ │ └── Product │ │ │ ├── ChangeProcessor.php │ │ │ ├── Rule.php │ │ │ ├── Rule │ │ │ ├── Condition │ │ │ │ ├── Combine.php │ │ │ │ └── Product.php │ │ │ └── Custom │ │ │ │ ├── EbayAvailableQty.php │ │ │ │ ├── EbayBuyItNowPrice.php │ │ │ │ ├── EbayCategoryId.php │ │ │ │ ├── EbayCategoryPath.php │ │ │ │ ├── EbayEndDate.php │ │ │ │ ├── EbayItemId.php │ │ │ │ ├── EbayPrice.php │ │ │ │ ├── EbayReservePrice.php │ │ │ │ ├── EbaySku.php │ │ │ │ ├── EbaySoldQty.php │ │ │ │ ├── EbayStartDate.php │ │ │ │ ├── EbayStartPrice.php │ │ │ │ ├── EbayStatus.php │ │ │ │ └── EbayTitle.php │ │ │ └── RuleFactory.php │ ├── Marketplace.php │ ├── Marketplace │ │ ├── Issue │ │ │ └── NotUpdated.php │ │ ├── Repository.php │ │ └── Synchronization.php │ ├── Motor │ │ ├── Filter.php │ │ ├── Filter │ │ │ └── To │ │ │ │ └── Group.php │ │ └── Group.php │ ├── Order.php │ ├── Order │ │ ├── Builder.php │ │ ├── Cancellation │ │ │ └── ByBuyer │ │ │ │ ├── Manager.php │ │ │ │ ├── MassManager.php │ │ │ │ └── MassManager │ │ │ │ └── Result.php │ │ ├── Creditmemo │ │ │ └── Handler.php │ │ ├── ExternalTransaction.php │ │ ├── ExternalTransaction │ │ │ └── Builder.php │ │ ├── FinalFee │ │ │ ├── Exception │ │ │ │ └── OldOrderId.php │ │ │ └── Fill.php │ │ ├── Helper.php │ │ ├── Item.php │ │ ├── Item │ │ │ ├── Builder.php │ │ │ ├── Importer.php │ │ │ ├── OptionsFinder │ │ │ │ └── MagentoOption │ │ │ │ │ └── Modifier.php │ │ │ └── ProxyObject.php │ │ ├── ProxyObject.php │ │ ├── Repository.php │ │ ├── ReturnRequest │ │ │ └── Decide │ │ │ │ ├── Manager.php │ │ │ │ ├── MassManager.php │ │ │ │ └── MassManager │ │ │ │ └── Result.php │ │ ├── Shipment │ │ │ ├── Handler.php │ │ │ └── ItemToShipLoader │ │ │ │ ├── DefaultObject.php │ │ │ │ └── PretendedToBeSimple.php │ │ └── ShippingAddress.php │ ├── OrderFactory.php │ ├── PromotedListing │ │ ├── AddItemsToCampaign.php │ │ ├── Campaign.php │ │ ├── Campaign │ │ │ ├── ItemsService.php │ │ │ ├── Logger.php │ │ │ └── Repository.php │ │ ├── CampaignException.php │ │ ├── CampaignFactory.php │ │ ├── Channel │ │ │ ├── AddItemsToCampaignOnChannel.php │ │ │ ├── CreateCampaignOnChannel.php │ │ │ ├── DeleteCampaignOnChannel.php │ │ │ ├── DeleteItemsFromCampaignOnChannel.php │ │ │ ├── Dto │ │ │ │ ├── AddCampaignItem.php │ │ │ │ ├── Campaign.php │ │ │ │ ├── CampaignItem.php │ │ │ │ ├── CreateCampaign.php │ │ │ │ └── UpdateCampaign.php │ │ │ ├── RetrieveCampaignItemsFromChannel.php │ │ │ ├── RetrieveCampaignsFromChannel.php │ │ │ └── UpdateCampaignOnChannel.php │ │ ├── CreateCampaign.php │ │ ├── DeleteCampaign.php │ │ ├── DeleteItemsFromCampaign.php │ │ ├── RefreshCampaigns.php │ │ └── UpdateCampaign.php │ ├── Promotion.php │ ├── Promotion │ │ ├── Channel │ │ │ ├── Discount.php │ │ │ ├── Promotion.php │ │ │ ├── PromotionCollection.php │ │ │ ├── Retrieve.php │ │ │ └── Update.php │ │ ├── Collection.php │ │ ├── Create.php │ │ ├── DashboardUrlGenerator.php │ │ ├── Delete.php │ │ ├── DeletePromotionProductsWithoutPromotion.php │ │ ├── Discount.php │ │ ├── DiscountFactory.php │ │ ├── ExpiredPromotionsHandler.php │ │ ├── ItemSynchronization.php │ │ ├── Repository.php │ │ ├── Synchronization.php │ │ ├── TimingManager.php │ │ ├── Update.php │ │ └── UpdateFromChannel.php │ ├── PromotionFactory.php │ ├── TagFactory.php │ ├── Template │ │ ├── AbstractBuilder.php │ │ ├── AffectedListingsProducts │ │ │ ├── AffectedListingsProductsAbstract.php │ │ │ └── Processor.php │ │ ├── Category.php │ │ ├── Category │ │ │ ├── AffectedListingsProducts.php │ │ │ ├── AffectedListingsProductsFactory.php │ │ │ ├── Builder.php │ │ │ ├── ChangeProcessor.php │ │ │ ├── ChangeProcessorFactory.php │ │ │ ├── Chooser │ │ │ │ └── Converter.php │ │ │ ├── Diff.php │ │ │ ├── SnapshotBuilder.php │ │ │ ├── Source.php │ │ │ ├── Specific.php │ │ │ └── Specific │ │ │ │ └── Source.php │ │ ├── CategoryFactory.php │ │ ├── CategoryInterface.php │ │ ├── ChangeProcessor │ │ │ └── ChangeProcessorAbstract.php │ │ ├── Description.php │ │ ├── Description │ │ │ ├── AffectedListingsProducts.php │ │ │ ├── Builder.php │ │ │ ├── ChangeProcessor.php │ │ │ ├── Diff.php │ │ │ ├── SnapshotBuilder.php │ │ │ └── Source.php │ │ ├── Manager.php │ │ ├── ReturnPolicy.php │ │ ├── ReturnPolicy │ │ │ ├── AffectedListingsProducts.php │ │ │ ├── Builder.php │ │ │ ├── ChangeProcessor.php │ │ │ ├── Diff.php │ │ │ └── SnapshotBuilder.php │ │ ├── SellingFormat.php │ │ ├── SellingFormat │ │ │ ├── AffectedListingsProducts.php │ │ │ ├── Builder.php │ │ │ ├── ChangeProcessor.php │ │ │ ├── Diff.php │ │ │ ├── SnapshotBuilder.php │ │ │ └── Source.php │ │ ├── Shipping.php │ │ ├── Shipping │ │ │ ├── AffectedListingsProducts.php │ │ │ ├── Builder.php │ │ │ ├── Calculated.php │ │ │ ├── Calculated │ │ │ │ └── Source.php │ │ │ ├── CalculatedFactory.php │ │ │ ├── ChangeProcessor.php │ │ │ ├── Diff.php │ │ │ ├── Service.php │ │ │ ├── Service │ │ │ │ └── Source.php │ │ │ ├── SnapshotBuilder.php │ │ │ └── Source.php │ │ ├── StoreCategory.php │ │ ├── StoreCategory │ │ │ ├── AffectedListingsProducts.php │ │ │ ├── Builder.php │ │ │ ├── ChangeProcessor.php │ │ │ ├── Diff.php │ │ │ ├── SnapshotBuilder.php │ │ │ └── Source.php │ │ ├── StoreCategoryFactory.php │ │ ├── Synchronization.php │ │ └── Synchronization │ │ │ ├── AffectedListingsProducts.php │ │ │ ├── Builder.php │ │ │ ├── ChangeProcessor.php │ │ │ ├── Diff.php │ │ │ └── SnapshotBuilder.php │ ├── Video.php │ ├── Video │ │ ├── Channel │ │ │ └── Video.php │ │ ├── PendingStatusProcessor.php │ │ ├── ProductProcessor.php │ │ ├── ProductProcessor │ │ │ └── Result.php │ │ ├── Repository.php │ │ └── UploadingStatusProcessor.php │ ├── VideoFactory.php │ └── VideoService.php ├── Exception.php ├── Exception │ ├── Connection.php │ ├── Connection │ │ └── InvalidResponse.php │ ├── EntityNotFound.php │ ├── Logic.php │ ├── ProductNotExist.php │ └── Setup.php ├── Factory.php ├── HealthStatus │ ├── CurrentStatus.php │ ├── Manager.php │ ├── Notification │ │ ├── Email │ │ │ └── Sender.php │ │ ├── Magento │ │ │ └── System │ │ │ │ └── Message.php │ │ ├── MessageBuilder.php │ │ └── Settings.php │ └── Task │ │ ├── AbstractModel.php │ │ ├── Database │ │ └── MysqlInfo │ │ │ ├── CrashedTables.php │ │ │ └── TablesStructure.php │ │ ├── InfoType.php │ │ ├── IssueType.php │ │ ├── Orders │ │ ├── IntervalToTheLatest │ │ │ ├── AbstractOrdersSync.php │ │ │ ├── Amazon.php │ │ │ ├── Ebay.php │ │ │ └── Walmart.php │ │ ├── MagentoCreationFailed │ │ │ ├── Amazon.php │ │ │ ├── Ebay.php │ │ │ └── Walmart.php │ │ └── VatChanged │ │ │ └── Amazon.php │ │ ├── Result.php │ │ ├── Result │ │ ├── Factory.php │ │ ├── LocationResolver.php │ │ └── Set.php │ │ └── Server │ │ └── Status │ │ ├── GmtTime.php │ │ └── SystemLogs.php ├── Issue │ ├── DataObject.php │ ├── DataObjectFactory.php │ ├── LocatorInterface.php │ └── Notification │ │ ├── Channel │ │ └── Magento │ │ │ ├── GlobalMessage.php │ │ │ └── Session.php │ │ └── ChannelInterface.php ├── Item.php ├── Listing.php ├── Listing │ ├── Auto │ │ ├── Actions │ │ │ ├── CategoryMode.php │ │ │ ├── CategoryProductRelationProcessor.php │ │ │ ├── CategoryProductRelationProcessor │ │ │ │ └── Repository.php │ │ │ ├── GlobalMode.php │ │ │ ├── Listing.php │ │ │ ├── Listing │ │ │ │ └── Factory.php │ │ │ ├── Mode │ │ │ │ ├── Category │ │ │ │ │ ├── Group.php │ │ │ │ │ ├── GroupSet.php │ │ │ │ │ └── Repository.php │ │ │ │ ├── DuplicateProducts.php │ │ │ │ ├── DuplicateProducts │ │ │ │ │ └── Repository.php │ │ │ │ └── Factory.php │ │ │ └── WebsiteMode.php │ │ ├── Category.php │ │ └── Category │ │ │ └── Group.php │ ├── Log.php │ ├── Log │ │ └── Factory.php │ ├── Other.php │ ├── Product.php │ ├── Product │ │ ├── Action │ │ │ ├── Configurator.php │ │ │ └── RequestData.php │ │ ├── AdvancedFilter.php │ │ ├── AdvancedFilter │ │ │ ├── Manager.php │ │ │ └── Repository.php │ │ ├── Indexer │ │ │ └── VariationParent │ │ │ │ └── Manager.php │ │ ├── Instruction.php │ │ ├── Instruction │ │ │ ├── Factory.php │ │ │ ├── Handler │ │ │ │ ├── HandlerInterface.php │ │ │ │ ├── Input.php │ │ │ │ └── InputFactory.php │ │ │ ├── Processor.php │ │ │ ├── ProcessorFactory.php │ │ │ └── SynchronizationTemplate │ │ │ │ └── Checker │ │ │ │ ├── AbstractModel.php │ │ │ │ └── Input.php │ │ ├── LockManager.php │ │ ├── LockManagerFactory.php │ │ ├── PriceCalculator.php │ │ ├── PriceRounder.php │ │ ├── QtyCalculator.php │ │ ├── RemoveHandler.php │ │ ├── RemoveHandlerFactory.php │ │ ├── ScheduledAction.php │ │ ├── ScheduledAction │ │ │ └── Manager.php │ │ ├── Variation.php │ │ └── Variation │ │ │ ├── Option.php │ │ │ ├── Updater.php │ │ │ └── UpdaterFactory.php │ ├── ProductFactory.php │ ├── SynchronizeInventory │ │ ├── AbstractExistingProductsHandler.php │ │ ├── AbstractHandler.php │ │ ├── Amazon │ │ │ ├── BlockedProductsHandler.php │ │ │ ├── ListingProductsHandler.php │ │ │ └── OtherListingsHandler.php │ │ └── Walmart │ │ │ ├── ListingProductsHandler.php │ │ │ └── OtherListingsHandler.php │ └── Ui │ │ └── RuntimeStorage.php ├── ListingFactory.php ├── Lock │ ├── Item.php │ ├── Item │ │ ├── Manager.php │ │ ├── ManagerFactory.php │ │ └── Progress.php │ ├── Transactional.php │ └── Transactional │ │ └── Manager.php ├── Log │ ├── AbstractModel.php │ ├── Clearing.php │ └── System.php ├── M2ePro │ └── Connector │ │ ├── Dispatcher.php │ │ ├── Files │ │ └── Get │ │ │ └── Info.php │ │ ├── Protocol.php │ │ ├── Server │ │ └── Servicing │ │ │ └── UpdateData.php │ │ └── Tables │ │ └── Get │ │ └── Diff.php ├── MSI │ ├── AffectedProducts.php │ ├── Magento │ │ ├── Order │ │ │ └── Shipment.php │ │ └── Product │ │ │ └── Inventory.php │ └── Order │ │ └── Reserve.php ├── Magento │ ├── Attribute │ │ ├── Builder.php │ │ └── Relation.php │ ├── AttributeSet │ │ ├── Builder.php │ │ └── Group.php │ ├── Backend │ │ └── Model │ │ │ └── Session │ │ │ └── Quote.php │ ├── Config │ │ └── Mutable.php │ ├── Customer.php │ ├── Framework │ │ └── Http │ │ │ └── NotCacheableResponse.php │ ├── Order │ │ ├── Invoice.php │ │ ├── PaymentTransaction.php │ │ ├── Shipment.php │ │ ├── Shipment │ │ │ ├── DocumentFactory.php │ │ │ └── Track.php │ │ ├── ShipmentFactory.php │ │ ├── Updater.php │ │ └── UpdaterFactory.php │ ├── Payment.php │ ├── Product.php │ ├── Product │ │ ├── Builder.php │ │ ├── Cache.php │ │ ├── ChangeProcessor │ │ │ └── AbstractModel.php │ │ ├── Image.php │ │ ├── ImageFactory.php │ │ ├── Index.php │ │ ├── Inventory.php │ │ ├── Inventory │ │ │ ├── AbstractModel.php │ │ │ └── Factory.php │ │ ├── Rule.php │ │ ├── Rule │ │ │ ├── Condition │ │ │ │ ├── AbstractModel.php │ │ │ │ ├── Combine.php │ │ │ │ ├── MsiSource.php │ │ │ │ ├── MsiStock.php │ │ │ │ └── Product.php │ │ │ └── Custom │ │ │ │ ├── AbstractModel.php │ │ │ │ ├── Qty.php │ │ │ │ ├── Stock.php │ │ │ │ └── TypeId.php │ │ ├── RuleFactory.php │ │ ├── Status.php │ │ ├── StockItem.php │ │ ├── Type │ │ │ └── Configurable.php │ │ ├── Variation.php │ │ ├── Variation │ │ │ ├── Cache.php │ │ │ ├── RawSuite.php │ │ │ └── StandardSuite.php │ │ └── Websites │ │ │ └── Update.php │ ├── ProductFactory.php │ ├── Quote │ │ ├── Builder.php │ │ ├── FailDuringEventProcessing.php │ │ ├── Item.php │ │ ├── Manager.php │ │ ├── Store │ │ │ └── Configurator.php │ │ └── Total │ │ │ ├── RoundTaxPercent.php │ │ │ └── WasteRecyclingFee.php │ ├── Shipping.php │ └── Tax │ │ ├── Helper.php │ │ └── Rule │ │ └── Builder.php ├── Marketplace.php ├── MarketplaceFactory.php ├── Module │ └── Issue │ │ └── NewVersion.php ├── OperationHistory.php ├── Order.php ├── Order │ ├── Change.php │ ├── Creditmemo │ │ └── Handler.php │ ├── EventDispatcher.php │ ├── Exception │ │ └── ProductCreationDisabled.php │ ├── Item.php │ ├── Item │ │ ├── OptionsFinder.php │ │ └── ProxyObject.php │ ├── Log.php │ ├── Matching.php │ ├── Note.php │ ├── Note │ │ └── Repository.php │ ├── NoteFactory.php │ ├── ProxyObject.php │ ├── Reserve.php │ ├── Shipment │ │ ├── Handler.php │ │ └── ItemToShipLoaderInterface.php │ ├── ShippingAddress.php │ ├── SyncStatus.php │ ├── SyncStatusManager.php │ ├── Tax │ │ └── PriceTaxRateInterface.php │ ├── UserInfo.php │ └── UserInfoFactory.php ├── Processing.php ├── Processing │ ├── Lock.php │ └── Runner.php ├── Registration │ ├── Info.php │ └── Manager.php ├── Registry.php ├── Registry │ └── Manager.php ├── Request │ └── Pending │ │ ├── Partial.php │ │ ├── Partial │ │ └── Data.php │ │ └── Single.php ├── Requirements │ ├── Checks │ │ ├── AbstractCheck.php │ │ ├── ExecutionTime.php │ │ ├── MagentoVersion.php │ │ ├── MemoryLimit.php │ │ └── PhpVersion.php │ ├── Manager.php │ ├── Reader.php │ └── Renderer │ │ ├── AbstractRenderer.php │ │ ├── ExecutionTime.php │ │ ├── MagentoVersion.php │ │ ├── MemoryLimit.php │ │ └── PhpVersion.php ├── ResourceModel │ ├── Account.php │ ├── Account │ │ ├── Collection.php │ │ └── CollectionFactory.php │ ├── ActiveRecord │ │ ├── AbstractModel.php │ │ ├── ActiveRecordAbstract.php │ │ ├── Collection │ │ │ ├── AbstractModel.php │ │ │ └── Component │ │ │ │ ├── AbstractModel.php │ │ │ │ ├── Child │ │ │ │ └── AbstractModel.php │ │ │ │ └── Parent │ │ │ │ └── AbstractModel.php │ │ ├── CollectionAbstract.php │ │ ├── Component │ │ │ ├── AbstractModel.php │ │ │ ├── Child │ │ │ │ └── AbstractModel.php │ │ │ └── Parent │ │ │ │ └── AbstractModel.php │ │ ├── Relation.php │ │ └── Relation │ │ │ └── Collection.php │ ├── Amazon │ │ ├── Account.php │ │ ├── Account │ │ │ ├── Collection.php │ │ │ ├── CollectionFactory.php │ │ │ ├── Repricing.php │ │ │ └── Repricing │ │ │ │ └── Collection.php │ │ ├── Dictionary │ │ │ ├── Marketplace.php │ │ │ ├── Marketplace │ │ │ │ ├── Collection.php │ │ │ │ └── CollectionFactory.php │ │ │ ├── ProductType.php │ │ │ ├── ProductType │ │ │ │ ├── Collection.php │ │ │ │ └── CollectionFactory.php │ │ │ ├── TemplateShipping.php │ │ │ └── TemplateShipping │ │ │ │ ├── Collection.php │ │ │ │ └── CollectionFactory.php │ │ ├── Inventory │ │ │ ├── Sku.php │ │ │ └── Sku │ │ │ │ └── Collection.php │ │ ├── Item.php │ │ ├── Item │ │ │ └── Collection.php │ │ ├── Listing.php │ │ ├── Listing │ │ │ ├── Auto │ │ │ │ └── Category │ │ │ │ │ ├── Group.php │ │ │ │ │ └── Group │ │ │ │ │ ├── Collection.php │ │ │ │ │ └── CollectionFactory.php │ │ │ ├── Collection.php │ │ │ ├── CollectionFactory.php │ │ │ ├── Other.php │ │ │ ├── Other │ │ │ │ └── Collection.php │ │ │ ├── Product.php │ │ │ └── Product │ │ │ │ ├── Action │ │ │ │ ├── Processing.php │ │ │ │ ├── Processing │ │ │ │ │ └── Collection.php │ │ │ │ ├── ProcessingListSku.php │ │ │ │ └── ProcessingListSku │ │ │ │ │ └── Collection.php │ │ │ │ ├── Collection.php │ │ │ │ ├── CollectionFactory.php │ │ │ │ ├── Indexer │ │ │ │ ├── VariationParent.php │ │ │ │ └── VariationParent │ │ │ │ │ └── Collection.php │ │ │ │ ├── Repricing.php │ │ │ │ ├── Repricing │ │ │ │ └── Collection.php │ │ │ │ ├── Variation.php │ │ │ │ └── Variation │ │ │ │ ├── Collection.php │ │ │ │ ├── Option.php │ │ │ │ └── Option │ │ │ │ └── Collection.php │ │ ├── Marketplace.php │ │ ├── Marketplace │ │ │ └── Collection.php │ │ ├── Order.php │ │ ├── Order │ │ │ ├── Action │ │ │ │ ├── Processing.php │ │ │ │ └── Processing │ │ │ │ │ └── Collection.php │ │ │ ├── Collection.php │ │ │ ├── CollectionFactory.php │ │ │ ├── Invoice.php │ │ │ ├── Invoice │ │ │ │ └── Collection.php │ │ │ ├── Item.php │ │ │ └── Item │ │ │ │ └── Collection.php │ │ ├── ProductType │ │ │ ├── AttributeMapping.php │ │ │ ├── AttributeMapping │ │ │ │ ├── Collection.php │ │ │ │ └── CollectionFactory.php │ │ │ └── Validation.php │ │ ├── ShippingMap.php │ │ ├── ShippingMap │ │ │ ├── Collection.php │ │ │ └── CollectionFactory.php │ │ └── Template │ │ │ ├── ProductTaxCode.php │ │ │ ├── ProductTaxCode │ │ │ ├── Collection.php │ │ │ └── CollectionFactory.php │ │ │ ├── ProductType.php │ │ │ ├── ProductType │ │ │ ├── Collection.php │ │ │ ├── CollectionFactory.php │ │ │ └── Grid │ │ │ │ └── Collection.php │ │ │ ├── SellingFormat.php │ │ │ ├── SellingFormat │ │ │ ├── BusinessDiscount.php │ │ │ ├── BusinessDiscount │ │ │ │ ├── Collection.php │ │ │ │ └── CollectionFactory.php │ │ │ └── Collection.php │ │ │ ├── Shipping.php │ │ │ ├── Shipping │ │ │ ├── Collection.php │ │ │ └── CollectionFactory.php │ │ │ ├── Synchronization.php │ │ │ └── Synchronization │ │ │ └── Collection.php │ ├── ArchivedEntity.php │ ├── ArchivedEntity │ │ └── Collection.php │ ├── AttributeMapping │ │ ├── Pair.php │ │ └── Pair │ │ │ ├── Collection.php │ │ │ └── CollectionFactory.php │ ├── AttributeOptionMapping │ │ ├── Pair.php │ │ └── Pair │ │ │ ├── Collection.php │ │ │ └── CollectionFactory.php │ ├── Collection │ │ ├── Custom.php │ │ └── Wrapper.php │ ├── Config.php │ ├── Config │ │ └── Collection.php │ ├── Connector │ │ └── Command │ │ │ └── Pending │ │ │ └── Processing │ │ │ ├── Partial.php │ │ │ ├── Partial │ │ │ └── Collection.php │ │ │ ├── Single.php │ │ │ └── Single │ │ │ └── Collection.php │ ├── Ebay │ │ ├── Account.php │ │ ├── Account │ │ │ ├── Collection.php │ │ │ └── Store │ │ │ │ ├── Category.php │ │ │ │ └── Category │ │ │ │ └── Collection.php │ │ ├── Bundle │ │ │ └── Options │ │ │ │ ├── Mapping.php │ │ │ │ └── Mapping │ │ │ │ ├── Collection.php │ │ │ │ └── CollectionFactory.php │ │ ├── Category │ │ │ └── Specific │ │ │ │ └── Validation │ │ │ │ ├── Result.php │ │ │ │ └── Result │ │ │ │ ├── Collection.php │ │ │ │ └── CollectionFactory.php │ │ ├── ComplianceDocuments.php │ │ ├── ComplianceDocuments │ │ │ ├── Collection.php │ │ │ ├── CollectionFactory.php │ │ │ ├── ListingProductRelation.php │ │ │ └── ListingProductRelation │ │ │ │ ├── Collection.php │ │ │ │ └── CollectionFactory.php │ │ ├── Dictionary │ │ │ ├── Category.php │ │ │ ├── Category │ │ │ │ ├── Collection.php │ │ │ │ └── CollectionFactory.php │ │ │ ├── Marketplace.php │ │ │ ├── Marketplace │ │ │ │ └── Collection.php │ │ │ ├── Motor │ │ │ │ ├── Epid.php │ │ │ │ ├── Epid │ │ │ │ │ └── Collection.php │ │ │ │ ├── Ktype.php │ │ │ │ └── Ktype │ │ │ │ │ └── Collection.php │ │ │ ├── Shipping.php │ │ │ └── Shipping │ │ │ │ └── Collection.php │ │ ├── Feedback.php │ │ ├── Feedback │ │ │ ├── Collection.php │ │ │ ├── Template.php │ │ │ └── Template │ │ │ │ └── Collection.php │ │ ├── Item.php │ │ ├── Item │ │ │ └── Collection.php │ │ ├── Listing.php │ │ ├── Listing │ │ │ ├── Auto │ │ │ │ └── Category │ │ │ │ │ ├── Group.php │ │ │ │ │ └── Group │ │ │ │ │ └── Collection.php │ │ │ ├── Collection.php │ │ │ ├── CollectionFactory.php │ │ │ ├── Other.php │ │ │ ├── Other │ │ │ │ └── Collection.php │ │ │ ├── Product.php │ │ │ ├── Product │ │ │ │ ├── Action │ │ │ │ │ ├── Processing.php │ │ │ │ │ └── Processing │ │ │ │ │ │ └── Collection.php │ │ │ │ ├── Collection.php │ │ │ │ ├── CollectionFactory.php │ │ │ │ ├── Indexer │ │ │ │ │ ├── VariationParent.php │ │ │ │ │ └── VariationParent │ │ │ │ │ │ └── Collection.php │ │ │ │ ├── Promotion.php │ │ │ │ ├── Promotion │ │ │ │ │ ├── Collection.php │ │ │ │ │ └── CollectionFactory.php │ │ │ │ ├── ScheduledStopAction.php │ │ │ │ ├── ScheduledStopAction │ │ │ │ │ ├── Collection.php │ │ │ │ │ ├── Collection │ │ │ │ │ │ └── Factory.php │ │ │ │ │ └── Factory.php │ │ │ │ ├── Variation.php │ │ │ │ └── Variation │ │ │ │ │ ├── Collection.php │ │ │ │ │ ├── Option.php │ │ │ │ │ └── Option │ │ │ │ │ └── Collection.php │ │ │ ├── Wizard.php │ │ │ └── Wizard │ │ │ │ ├── Collection.php │ │ │ │ ├── Product.php │ │ │ │ ├── Product │ │ │ │ └── Collection.php │ │ │ │ ├── Step.php │ │ │ │ └── Step │ │ │ │ └── Collection.php │ │ ├── Marketplace.php │ │ ├── Marketplace │ │ │ └── Collection.php │ │ ├── Motor │ │ │ ├── Filter.php │ │ │ ├── Filter │ │ │ │ ├── Collection.php │ │ │ │ └── To │ │ │ │ │ ├── Group.php │ │ │ │ │ └── Group │ │ │ │ │ └── Collection.php │ │ │ ├── Group.php │ │ │ ├── Group │ │ │ │ └── Collection.php │ │ │ └── Item │ │ │ │ └── Collection.php │ │ ├── Order.php │ │ ├── Order │ │ │ ├── Collection.php │ │ │ ├── CollectionFactory.php │ │ │ ├── ExternalTransaction.php │ │ │ ├── ExternalTransaction │ │ │ │ └── Collection.php │ │ │ ├── Item.php │ │ │ └── Item │ │ │ │ └── Collection.php │ │ ├── PromotedListing │ │ │ ├── Campaign.php │ │ │ └── Campaign │ │ │ │ ├── Collection.php │ │ │ │ └── CollectionFactory.php │ │ ├── Promotion.php │ │ ├── Promotion │ │ │ ├── Collection.php │ │ │ ├── CollectionFactory.php │ │ │ ├── Discount.php │ │ │ └── Discount │ │ │ │ ├── Collection.php │ │ │ │ └── CollectionFactory.php │ │ ├── Template │ │ │ ├── Category.php │ │ │ ├── Category │ │ │ │ ├── Collection.php │ │ │ │ ├── CollectionFactory.php │ │ │ │ ├── Specific.php │ │ │ │ └── Specific │ │ │ │ │ └── Collection.php │ │ │ ├── Description.php │ │ │ ├── Description │ │ │ │ └── Collection.php │ │ │ ├── ReturnPolicy.php │ │ │ ├── ReturnPolicy │ │ │ │ ├── Collection.php │ │ │ │ └── CollectionFactory.php │ │ │ ├── SellingFormat.php │ │ │ ├── SellingFormat │ │ │ │ └── Collection.php │ │ │ ├── Shipping.php │ │ │ ├── Shipping │ │ │ │ ├── Calculated.php │ │ │ │ ├── Calculated │ │ │ │ │ └── Collection.php │ │ │ │ ├── Collection.php │ │ │ │ ├── CollectionFactory.php │ │ │ │ ├── Service.php │ │ │ │ └── Service │ │ │ │ │ ├── Collection.php │ │ │ │ │ └── CollectionFactory.php │ │ │ ├── StoreCategory.php │ │ │ ├── StoreCategory │ │ │ │ └── Collection.php │ │ │ ├── Synchronization.php │ │ │ └── Synchronization │ │ │ │ ├── Collection.php │ │ │ │ └── CollectionFactory.php │ │ ├── Video.php │ │ └── Video │ │ │ ├── Collection.php │ │ │ └── CollectionFactory.php │ ├── Listing.php │ ├── Listing │ │ ├── Auto │ │ │ ├── Category.php │ │ │ └── Category │ │ │ │ ├── Collection.php │ │ │ │ ├── CollectionFactory.php │ │ │ │ ├── Group.php │ │ │ │ └── Group │ │ │ │ └── Collection.php │ │ ├── Collection.php │ │ ├── CollectionFactory.php │ │ ├── Log.php │ │ ├── Log │ │ │ ├── Collection.php │ │ │ └── CollectionFactory.php │ │ ├── Other.php │ │ ├── Other │ │ │ └── Collection.php │ │ ├── Product.php │ │ ├── Product │ │ │ ├── AdvancedFilter.php │ │ │ ├── AdvancedFilter │ │ │ │ ├── Collection.php │ │ │ │ └── CollectionFactory.php │ │ │ ├── Collection.php │ │ │ ├── Collection │ │ │ │ └── Factory.php │ │ │ ├── CollectionFactory.php │ │ │ ├── Instruction.php │ │ │ ├── Instruction │ │ │ │ ├── Collection.php │ │ │ │ └── CollectionFactory.php │ │ │ ├── ScheduledAction.php │ │ │ ├── ScheduledAction │ │ │ │ ├── Collection.php │ │ │ │ └── CollectionFactory.php │ │ │ ├── Variation.php │ │ │ └── Variation │ │ │ │ ├── Collection.php │ │ │ │ ├── CollectionFactory.php │ │ │ │ ├── Option.php │ │ │ │ ├── Option │ │ │ │ ├── Collection.php │ │ │ │ └── CollectionFactory.php │ │ │ │ └── StockDataResolver.php │ │ └── ProductFactory.php │ ├── Lock │ │ ├── Item.php │ │ ├── Item │ │ │ └── Collection.php │ │ ├── Transactional.php │ │ └── Transactional │ │ │ └── Collection.php │ ├── Log │ │ ├── AbstractModel.php │ │ ├── System.php │ │ └── System │ │ │ └── Collection.php │ ├── MSI │ │ ├── Listing │ │ │ └── Product │ │ │ │ └── Variation │ │ │ │ └── StockDataResolver.php │ │ └── Magento │ │ │ ├── Product │ │ │ └── Collection.php │ │ │ └── SourceItem │ │ │ └── CollectionFactory.php │ ├── Magento │ │ ├── Category │ │ │ └── Collection.php │ │ └── Product │ │ │ ├── Collection.php │ │ │ ├── CollectionFactory.php │ │ │ ├── Filter │ │ │ └── ExcludeSimpleProductsInVariation.php │ │ │ └── Websites │ │ │ ├── Update.php │ │ │ └── Update │ │ │ └── Collection.php │ ├── Marketplace.php │ ├── Marketplace │ │ ├── Collection.php │ │ └── CollectionFactory.php │ ├── MarketplaceFactory.php │ ├── OperationHistory.php │ ├── OperationHistory │ │ └── Collection.php │ ├── Order.php │ ├── Order │ │ ├── Change.php │ │ ├── Change │ │ │ ├── Collection.php │ │ │ └── CollectionFactory.php │ │ ├── Collection.php │ │ ├── CollectionFactory.php │ │ ├── Item.php │ │ ├── Item │ │ │ ├── Collection.php │ │ │ └── CollectionFactory.php │ │ ├── Log.php │ │ ├── Log │ │ │ ├── Collection.php │ │ │ └── CollectionFactory.php │ │ ├── Matching.php │ │ ├── Matching │ │ │ └── Collection.php │ │ ├── Note.php │ │ └── Note │ │ │ ├── Collection.php │ │ │ └── CollectionFactory.php │ ├── Processing.php │ ├── Processing │ │ ├── Collection.php │ │ ├── Lock.php │ │ └── Lock │ │ │ └── Collection.php │ ├── Registry.php │ ├── Registry │ │ └── Collection.php │ ├── Request │ │ └── Pending │ │ │ ├── Partial.php │ │ │ ├── Partial │ │ │ ├── Collection.php │ │ │ ├── Data.php │ │ │ └── Data │ │ │ │ └── Collection.php │ │ │ ├── Single.php │ │ │ └── Single │ │ │ └── Collection.php │ ├── Setup.php │ ├── Setup │ │ └── Collection.php │ ├── StopQueue.php │ ├── StopQueue │ │ ├── Collection.php │ │ └── CollectionFactory.php │ ├── Synchronization │ │ ├── Log.php │ │ └── Log │ │ │ └── Collection.php │ ├── Tag.php │ ├── Tag │ │ ├── Collection.php │ │ ├── CollectionFactory.php │ │ └── ListingProduct │ │ │ ├── Relation.php │ │ │ └── Relation │ │ │ ├── Collection.php │ │ │ └── CollectionFactory.php │ ├── TagFactory.php │ ├── Template │ │ ├── Description.php │ │ ├── Description │ │ │ ├── Collection.php │ │ │ └── CollectionFactory.php │ │ ├── SellingFormat.php │ │ ├── SellingFormat │ │ │ ├── Collection.php │ │ │ └── CollectionFactory.php │ │ ├── Synchronization.php │ │ └── Synchronization │ │ │ ├── Collection.php │ │ │ └── CollectionFactory.php │ ├── Ui │ │ └── Grid │ │ │ └── SearchResultTrait.php │ ├── Walmart │ │ ├── Account.php │ │ ├── Account │ │ │ └── Collection.php │ │ ├── Dictionary │ │ │ ├── Category.php │ │ │ ├── Category │ │ │ │ ├── Collection.php │ │ │ │ └── CollectionFactory.php │ │ │ ├── Marketplace.php │ │ │ ├── Marketplace │ │ │ │ ├── Collection.php │ │ │ │ └── CollectionFactory.php │ │ │ ├── ProductType.php │ │ │ └── ProductType │ │ │ │ ├── Collection.php │ │ │ │ └── CollectionFactory.php │ │ ├── Item.php │ │ ├── Item │ │ │ └── Collection.php │ │ ├── Listing.php │ │ ├── Listing │ │ │ ├── Auto │ │ │ │ └── Category │ │ │ │ │ ├── Group.php │ │ │ │ │ └── Group │ │ │ │ │ ├── Collection.php │ │ │ │ │ └── CollectionFactory.php │ │ │ ├── Collection.php │ │ │ ├── CollectionFactory.php │ │ │ ├── Other.php │ │ │ ├── Other │ │ │ │ └── Collection.php │ │ │ ├── Product.php │ │ │ └── Product │ │ │ │ ├── Action │ │ │ │ ├── Processing.php │ │ │ │ ├── Processing │ │ │ │ │ └── Collection.php │ │ │ │ ├── ProcessingList.php │ │ │ │ └── ProcessingList │ │ │ │ │ └── Collection.php │ │ │ │ ├── Collection.php │ │ │ │ ├── Indexer │ │ │ │ ├── VariationParent.php │ │ │ │ └── VariationParent │ │ │ │ │ └── Collection.php │ │ │ │ ├── Variation.php │ │ │ │ └── Variation │ │ │ │ ├── Collection.php │ │ │ │ ├── Option.php │ │ │ │ └── Option │ │ │ │ └── Collection.php │ │ ├── Marketplace.php │ │ ├── Marketplace │ │ │ └── Collection.php │ │ ├── Order.php │ │ ├── Order │ │ │ ├── Collection.php │ │ │ ├── CollectionFactory.php │ │ │ ├── Item.php │ │ │ └── Item │ │ │ │ └── Collection.php │ │ ├── ProductType.php │ │ ├── ProductType │ │ │ ├── Collection.php │ │ │ └── CollectionFactory.php │ │ └── Template │ │ │ ├── Category.php │ │ │ ├── Category │ │ │ └── Specific.php │ │ │ ├── Description.php │ │ │ ├── Description │ │ │ └── Collection.php │ │ │ ├── SellingFormat.php │ │ │ ├── SellingFormat │ │ │ ├── Collection.php │ │ │ ├── Promotion.php │ │ │ └── Promotion │ │ │ │ ├── Collection.php │ │ │ │ └── CollectionFactory.php │ │ │ ├── Synchronization.php │ │ │ └── Synchronization │ │ │ └── Collection.php │ ├── Wizard.php │ └── Wizard │ │ └── Collection.php ├── Response │ ├── Message.php │ └── Message │ │ └── Set.php ├── Servicing │ ├── Dispatcher.php │ ├── DispatcherFactory.php │ ├── Task │ │ ├── Analytics.php │ │ ├── Analytics │ │ │ ├── Collector │ │ │ │ ├── Amazon │ │ │ │ │ ├── Account.php │ │ │ │ │ ├── AmazonTemplateProductTaxCode.php │ │ │ │ │ ├── AmazonTemplateShipping.php │ │ │ │ │ ├── Listing.php │ │ │ │ │ ├── TemplateSellingFormat.php │ │ │ │ │ └── TemplateSynchronization.php │ │ │ │ ├── Ebay │ │ │ │ │ ├── Account.php │ │ │ │ │ ├── EbayTemplateCategory.php │ │ │ │ │ ├── EbayTemplateReturnPolicy.php │ │ │ │ │ ├── EbayTemplateShipping.php │ │ │ │ │ ├── Listing.php │ │ │ │ │ ├── TemplateDescription.php │ │ │ │ │ ├── TemplateSellingFormat.php │ │ │ │ │ └── TemplateSynchronization.php │ │ │ │ └── Walmart │ │ │ │ │ ├── Account.php │ │ │ │ │ ├── Listing.php │ │ │ │ │ ├── TemplateDescription.php │ │ │ │ │ ├── TemplateSellingFormat.php │ │ │ │ │ └── TemplateSynchronization.php │ │ │ ├── CollectorFactory.php │ │ │ ├── CollectorInterface.php │ │ │ ├── ProgressManager.php │ │ │ ├── ProgressManagerFactory.php │ │ │ ├── Registry.php │ │ │ └── Row.php │ │ ├── Cron.php │ │ ├── License.php │ │ ├── MaintenanceSchedule.php │ │ ├── Marketplaces.php │ │ ├── Messages.php │ │ ├── ProductVariationVocabulary.php │ │ ├── Settings.php │ │ ├── Statistic.php │ │ └── Statistic │ │ │ └── Manager.php │ └── TaskInterface.php ├── Setup.php ├── Setup │ ├── Database │ │ └── Modifier │ │ │ ├── AbstractModifier.php │ │ │ ├── Config.php │ │ │ ├── Config │ │ │ └── Entity.php │ │ │ └── Table.php │ ├── InstallChecker.php │ ├── Installer.php │ ├── Upgrade │ │ ├── Backup.php │ │ ├── Entity │ │ │ ├── AbstractConfig.php │ │ │ ├── AbstractFeature.php │ │ │ └── Factory.php │ │ └── Manager.php │ └── Upgrader.php ├── StopQueue.php ├── Synchronization │ ├── Log.php │ └── LogFactory.php ├── Tag.php ├── Tag │ ├── BlockingErrors.php │ ├── Entity.php │ ├── EntityFactory.php │ ├── ListingProduct │ │ ├── Buffer.php │ │ ├── Buffer │ │ │ └── Item.php │ │ ├── Relation.php │ │ └── Repository.php │ ├── Repository.php │ └── ValidatorIssues.php ├── TagFactory.php ├── Template │ ├── AffectedListingsProductsAbstract.php │ ├── ChangeProcessorAbstract.php │ ├── Description.php │ ├── SellingFormat.php │ ├── SellingFormat │ │ └── BuilderHelper.php │ ├── SellingFormatFactory.php │ ├── Synchronization.php │ └── Synchronization │ │ ├── ChangeProcessorAbstract.php │ │ └── DiffAbstract.php ├── VariablesDir.php ├── Walmart │ ├── Account.php │ ├── Account │ │ ├── AuthCodeSessionStorage.php │ │ ├── Builder.php │ │ ├── Canada │ │ │ ├── Create.php │ │ │ └── Update.php │ │ ├── DeleteManager.php │ │ ├── MagentoOrderCreateService.php │ │ ├── Repository.php │ │ └── UnitedStates │ │ │ ├── Create.php │ │ │ └── Update.php │ ├── AdvancedFilter │ │ ├── AllItemsOptions.php │ │ └── AllOrdersOptions.php │ ├── AttributeMapping │ │ ├── OptionReplacer.php │ │ ├── VariationAttributes │ │ │ ├── MagentoAttributeFinder.php │ │ │ ├── Provider.php │ │ │ ├── Provider │ │ │ │ ├── AttributeOption.php │ │ │ │ ├── MagentoAttributeOptionLoader.php │ │ │ │ ├── ProductType.php │ │ │ │ └── VariationAttribute.php │ │ │ ├── TitleResolver.php │ │ │ └── Update.php │ │ └── VariationAttributesService.php │ ├── Connector │ │ ├── Account │ │ │ ├── Add │ │ │ │ └── EntityRequester.php │ │ │ ├── Delete │ │ │ │ └── EntityRequester.php │ │ │ ├── GetGrantAccessUrl │ │ │ │ ├── Command.php │ │ │ │ ├── Processor.php │ │ │ │ └── Response.php │ │ │ └── Update │ │ │ │ └── EntityRequester.php │ │ ├── Command │ │ │ ├── Pending │ │ │ │ └── Requester.php │ │ │ └── RealTime.php │ │ ├── Dispatcher.php │ │ ├── DispatcherFactory.php │ │ ├── Inventory │ │ │ └── Get │ │ │ │ ├── ItemsRequester.php │ │ │ │ └── ItemsResponser.php │ │ ├── Marketplace │ │ │ ├── GetCategories │ │ │ │ ├── Command.php │ │ │ │ ├── Processor.php │ │ │ │ ├── Response.php │ │ │ │ └── Response │ │ │ │ │ ├── Category.php │ │ │ │ │ ├── Category │ │ │ │ │ └── ProductType.php │ │ │ │ │ └── Part.php │ │ │ └── GetInfoWithDetails │ │ │ │ ├── Command.php │ │ │ │ ├── Processor.php │ │ │ │ └── Response.php │ │ ├── Orders │ │ │ └── Get │ │ │ │ ├── ItemsCancellationRequested.php │ │ │ │ └── WfsItems.php │ │ ├── Product │ │ │ ├── Dispatcher.php │ │ │ ├── ListAction │ │ │ │ ├── Requester.php │ │ │ │ ├── Responser.php │ │ │ │ └── UpdateInventory │ │ │ │ │ ├── Requester.php │ │ │ │ │ └── Responser.php │ │ │ ├── ProcessingRunner.php │ │ │ ├── Relist │ │ │ │ ├── Requester.php │ │ │ │ └── Responser.php │ │ │ ├── Requester.php │ │ │ ├── Responser.php │ │ │ ├── Revise │ │ │ │ ├── Requester.php │ │ │ │ └── Responser.php │ │ │ └── Stop │ │ │ │ ├── Requester.php │ │ │ │ └── Responser.php │ │ ├── ProductType │ │ │ └── GetInfo │ │ │ │ ├── Command.php │ │ │ │ ├── Processor.php │ │ │ │ └── Response.php │ │ ├── Protocol.php │ │ └── Repricer │ │ │ └── Get │ │ │ └── Strategies │ │ │ ├── Command.php │ │ │ ├── Processor.php │ │ │ └── StrategyEntity.php │ ├── Dashboard │ │ ├── Errors │ │ │ ├── CachedCalculator.php │ │ │ └── Calculator.php │ │ ├── Products │ │ │ ├── CachedCalculator.php │ │ │ └── Calculator.php │ │ ├── Sales │ │ │ ├── CachedCalculator.php │ │ │ └── Calculator.php │ │ └── Shipments │ │ │ ├── CachedCalculator.php │ │ │ └── Calculator.php │ ├── Dictionary │ │ ├── Category.php │ │ ├── Category │ │ │ └── Repository.php │ │ ├── CategoryFactory.php │ │ ├── CategoryService.php │ │ ├── Marketplace.php │ │ ├── Marketplace │ │ │ └── Repository.php │ │ ├── MarketplaceFactory.php │ │ ├── MarketplaceService.php │ │ ├── ProductType.php │ │ ├── ProductType │ │ │ └── Repository.php │ │ ├── ProductTypeFactory.php │ │ └── ProductTypeService.php │ ├── Item.php │ ├── Listing.php │ ├── Listing │ │ ├── AffectedListingsProducts.php │ │ ├── Auto │ │ │ ├── Actions │ │ │ │ └── Listing.php │ │ │ └── Category │ │ │ │ └── Group.php │ │ ├── ChangeProcessor.php │ │ ├── ChangeStoreService.php │ │ ├── Diff.php │ │ ├── DiffFactory.php │ │ ├── Log.php │ │ ├── Other.php │ │ ├── Other │ │ │ └── Mapping.php │ │ ├── Product.php │ │ ├── Product │ │ │ ├── Action │ │ │ │ ├── Configurator.php │ │ │ │ ├── DataBuilder │ │ │ │ │ ├── AbstractModel.php │ │ │ │ │ ├── Details.php │ │ │ │ │ ├── LagTime.php │ │ │ │ │ ├── Price.php │ │ │ │ │ ├── Promotions.php │ │ │ │ │ ├── Qty.php │ │ │ │ │ └── Repricer.php │ │ │ │ ├── ListAction │ │ │ │ │ ├── ProcessingRunner.php │ │ │ │ │ └── Processor.php │ │ │ │ ├── Logger.php │ │ │ │ ├── Processing.php │ │ │ │ ├── ProcessingList.php │ │ │ │ ├── Processor.php │ │ │ │ ├── Request.php │ │ │ │ ├── RequestData.php │ │ │ │ └── Type │ │ │ │ │ ├── ListAction │ │ │ │ │ ├── Linking.php │ │ │ │ │ ├── Request.php │ │ │ │ │ ├── Response.php │ │ │ │ │ ├── SkuResolver.php │ │ │ │ │ ├── UpdateInventory │ │ │ │ │ │ ├── Request.php │ │ │ │ │ │ └── Response.php │ │ │ │ │ └── Validator.php │ │ │ │ │ ├── Relist │ │ │ │ │ ├── Request.php │ │ │ │ │ ├── Response.php │ │ │ │ │ └── Validator.php │ │ │ │ │ ├── Request.php │ │ │ │ │ ├── Response.php │ │ │ │ │ ├── Revise │ │ │ │ │ ├── Request.php │ │ │ │ │ ├── Response.php │ │ │ │ │ └── Validator.php │ │ │ │ │ ├── Stop │ │ │ │ │ ├── Request.php │ │ │ │ │ ├── Response.php │ │ │ │ │ └── Validator.php │ │ │ │ │ └── Validator.php │ │ │ ├── Indexer │ │ │ │ └── VariationParent.php │ │ │ ├── Instruction │ │ │ │ ├── AutoActions │ │ │ │ │ └── Handler.php │ │ │ │ ├── ProcessorFactory.php │ │ │ │ └── SynchronizationTemplate │ │ │ │ │ ├── Checker │ │ │ │ │ ├── AbstractModel.php │ │ │ │ │ ├── Active.php │ │ │ │ │ ├── Inactive.php │ │ │ │ │ └── NotListed.php │ │ │ │ │ └── Handler.php │ │ │ ├── PriceCalculator.php │ │ │ ├── ProductTypeRelationService.php │ │ │ ├── Provider.php │ │ │ ├── Provider │ │ │ │ └── Condition.php │ │ │ ├── ProviderFactory.php │ │ │ ├── QtyCalculator.php │ │ │ ├── RemoveHandler.php │ │ │ ├── Repository.php │ │ │ ├── Repricer │ │ │ │ └── IsChangedRepricerData.php │ │ │ ├── Variation.php │ │ │ └── Variation │ │ │ │ ├── Manager.php │ │ │ │ ├── Manager │ │ │ │ ├── AbstractModel.php │ │ │ │ ├── LogicalUnit.php │ │ │ │ ├── PhysicalUnit.php │ │ │ │ └── Type │ │ │ │ │ ├── Individual.php │ │ │ │ │ └── Relation │ │ │ │ │ ├── Child.php │ │ │ │ │ ├── ParentRelation.php │ │ │ │ │ └── ParentRelation │ │ │ │ │ ├── Processor.php │ │ │ │ │ └── Processor │ │ │ │ │ ├── Mass.php │ │ │ │ │ └── Sub │ │ │ │ │ ├── AbstractModel.php │ │ │ │ │ ├── Attributes.php │ │ │ │ │ ├── MatchedAttributes.php │ │ │ │ │ ├── Options.php │ │ │ │ │ ├── Selling.php │ │ │ │ │ ├── Status.php │ │ │ │ │ └── Template.php │ │ │ │ ├── Matcher │ │ │ │ ├── Attribute.php │ │ │ │ ├── Attribute │ │ │ │ │ └── Resolver.php │ │ │ │ ├── Option.php │ │ │ │ └── Option │ │ │ │ │ └── Resolver.php │ │ │ │ ├── Option.php │ │ │ │ └── Updater.php │ │ ├── Repository.php │ │ └── SnapshotBuilder.php │ ├── Magento │ │ └── Product │ │ │ ├── ChangeProcessor.php │ │ │ ├── Rule.php │ │ │ ├── Rule │ │ │ ├── Condition │ │ │ │ ├── Combine.php │ │ │ │ └── Product.php │ │ │ └── Custom │ │ │ │ ├── WalmartEan.php │ │ │ │ ├── WalmartEndDate.php │ │ │ │ ├── WalmartGtin.php │ │ │ │ ├── WalmartIsbn.php │ │ │ │ ├── WalmartItemId.php │ │ │ │ ├── WalmartOnlinePrice.php │ │ │ │ ├── WalmartOnlinePriceInvalid.php │ │ │ │ ├── WalmartOnlineQty.php │ │ │ │ ├── WalmartSku.php │ │ │ │ ├── WalmartStartDate.php │ │ │ │ ├── WalmartStatus.php │ │ │ │ ├── WalmartUpc.php │ │ │ │ └── WalmartWpid.php │ │ │ └── RuleFactory.php │ ├── Marketplace.php │ ├── Marketplace │ │ ├── Issue │ │ │ └── NotUpdated.php │ │ ├── Repository.php │ │ ├── Synchronization.php │ │ ├── SynchronizationFactory.php │ │ └── WithProductType │ │ │ ├── ForceAllSynchronization.php │ │ │ ├── Synchronization.php │ │ │ └── SynchronizationFactory.php │ ├── Order.php │ ├── Order │ │ ├── Action │ │ │ └── Handler │ │ │ │ ├── AbstractModel.php │ │ │ │ ├── Acknowledge.php │ │ │ │ ├── Cancel.php │ │ │ │ ├── Refund.php │ │ │ │ └── Shipping.php │ │ ├── Builder.php │ │ ├── Creditmemo │ │ │ └── Handler.php │ │ ├── Helper.php │ │ ├── Item.php │ │ ├── Item │ │ │ ├── Builder.php │ │ │ └── ProxyObject.php │ │ ├── ProxyObject.php │ │ ├── Repository.php │ │ ├── Shipment │ │ │ ├── Handler.php │ │ │ └── ItemToShipLoader │ │ │ │ ├── DefaultObject.php │ │ │ │ └── PretendedToBeSimple.php │ │ └── ShippingAddress.php │ ├── ProductType.php │ ├── ProductType │ │ ├── AttributeSetting.php │ │ ├── AttributeSetting │ │ │ ├── Provider.php │ │ │ ├── Provider │ │ │ │ └── Item.php │ │ │ └── Value.php │ │ ├── Builder.php │ │ ├── Builder │ │ │ ├── AffectedListingsProducts.php │ │ │ ├── AffectedListingsProductsFactory.php │ │ │ ├── ChangeProcessor.php │ │ │ ├── ChangeProcessorFactory.php │ │ │ ├── Diff.php │ │ │ ├── DiffFactory.php │ │ │ ├── SnapshotBuilder.php │ │ │ └── SnapshotBuilderFactory.php │ │ ├── BuilderFactory.php │ │ ├── Repository.php │ │ ├── Service.php │ │ └── Service │ │ │ └── ResultOfMassDelete.php │ ├── ProductTypeFactory.php │ ├── Template │ │ ├── ChangeProcessor │ │ │ └── ChangeProcessorAbstract.php │ │ ├── Description.php │ │ ├── Description │ │ │ ├── AffectedListingsProducts.php │ │ │ ├── Builder.php │ │ │ ├── ChangeProcessor.php │ │ │ ├── Diff.php │ │ │ ├── SnapshotBuilder.php │ │ │ └── Source.php │ │ ├── SellingFormat.php │ │ ├── SellingFormat │ │ │ ├── AffectedListingsProducts.php │ │ │ ├── AffectedListingsProductsFactory.php │ │ │ ├── Builder.php │ │ │ ├── BuilderFactory.php │ │ │ ├── ChangeProcessor.php │ │ │ ├── ChangeProcessorFactory.php │ │ │ ├── Diff.php │ │ │ ├── DiffFactory.php │ │ │ ├── Promotion.php │ │ │ ├── Promotion │ │ │ │ ├── Builder.php │ │ │ │ ├── BuilderFactory.php │ │ │ │ └── Source.php │ │ │ ├── PromotionFactory.php │ │ │ ├── Repricer │ │ │ │ ├── AccountStrategiesLoader.php │ │ │ │ ├── Serializer.php │ │ │ │ └── Strategy.php │ │ │ ├── SnapshotBuilder.php │ │ │ ├── SnapshotBuilderFactory.php │ │ │ └── Source.php │ │ ├── Synchronization.php │ │ └── Synchronization │ │ │ ├── AffectedListingsProducts.php │ │ │ ├── Builder.php │ │ │ ├── ChangeProcessor.php │ │ │ ├── Diff.php │ │ │ └── SnapshotBuilder.php │ └── ThrottlingManager.php ├── Wizard.php └── Wizard │ ├── AmazonMigrationToProductTypes.php │ ├── InstallationAmazon.php │ ├── InstallationEbay.php │ ├── InstallationWalmart.php │ ├── MigrationFromMagento1.php │ ├── MigrationToInnodb.php │ ├── VersionDowngrade.php │ └── WalmartMigrationToProductTypes.php ├── Observer ├── AbstractModel.php ├── Amazon │ ├── Order.php │ └── Order │ │ └── Item.php ├── Category.php ├── Cms │ └── Block │ │ └── Save │ │ └── After.php ├── Creditmemo.php ├── Creditmemo │ ├── Save │ │ └── After.php │ └── View.php ├── Ebay │ └── Order │ │ └── Item.php ├── Import │ └── Bunch.php ├── Indexes │ ├── Disable.php │ └── Enable.php ├── Invoice.php ├── Invoice │ ├── Save │ │ └── After.php │ └── View.php ├── Listing │ └── Product │ │ ├── Delete │ │ └── Before.php │ │ └── Save │ │ └── After.php ├── Order │ ├── Cancel.php │ ├── Quote.php │ ├── Quote │ │ └── Address │ │ │ └── Collect │ │ │ └── Totals │ │ │ └── After.php │ ├── Save │ │ └── After │ │ │ └── StoreMagentoOrderId.php │ ├── Service │ │ └── Quote │ │ │ └── Submit │ │ │ └── Before.php │ └── View.php ├── Product │ ├── AbstractProduct.php │ ├── AddUpdate │ │ ├── AbstractAddUpdate.php │ │ ├── After.php │ │ ├── Before.php │ │ └── Before │ │ │ ├── Proxy.php │ │ │ └── ProxyFactory.php │ ├── Attribute │ │ └── Update │ │ │ └── Before.php │ ├── Delete.php │ └── Website │ │ └── Update │ │ └── Before.php ├── Shipment │ ├── AbstractShipment.php │ ├── Item.php │ ├── Track.php │ └── View.php ├── StockItem │ ├── AbstractStockItem.php │ └── Save │ │ ├── After.php │ │ └── Before.php └── Walmart │ ├── Order.php │ └── Order │ └── Item.php ├── Plugin ├── AbstractPlugin.php ├── Config │ └── Magento │ │ └── Config │ │ ├── Controller │ │ └── Adminhtml │ │ │ └── System │ │ │ └── Config │ │ │ └── Edit.php │ │ └── Model │ │ ├── Config.php │ │ └── Config │ │ └── Structure │ │ └── Data.php ├── FunctionGetArgsFix │ └── Translation.php ├── HealthStatus │ └── Magento │ │ └── Framework │ │ └── App │ │ └── FrontController.php ├── MSI │ └── Magento │ │ ├── CatalogInventory │ │ └── Model │ │ │ └── Indexer │ │ │ └── Stock │ │ │ └── Processor.php │ │ ├── Inventory │ │ └── Model │ │ │ ├── Source │ │ │ └── Command │ │ │ │ └── Save.php │ │ │ ├── SourceItem │ │ │ └── Command │ │ │ │ ├── Delete.php │ │ │ │ └── Save.php │ │ │ └── StockSourceLink │ │ │ └── Command │ │ │ ├── Delete.php │ │ │ └── Save.php │ │ ├── InventoryCatalog │ │ └── Model │ │ │ └── ResourceModel │ │ │ └── SetDataToLegacyStockItem.php │ │ ├── InventoryReservations │ │ └── Model │ │ │ └── ResourceModel │ │ │ └── GetReservationsQuantityCache.php │ │ ├── InventorySales │ │ └── Model │ │ │ ├── PlaceReservationsForSalesEvent.php │ │ │ └── ResourceModel │ │ │ └── ReplaceSalesChannelsDataForStock.php │ │ └── InventoryShipping │ │ └── Observer │ │ └── SourceDeductionProcessor.php ├── Menu │ └── Magento │ │ └── Backend │ │ └── Model │ │ └── Menu │ │ ├── Config.php │ │ └── Item.php ├── Order │ └── Magento │ │ ├── Framework │ │ └── App │ │ │ └── Config.php │ │ ├── Quote │ │ └── Model │ │ │ └── Quote │ │ │ ├── Item │ │ │ └── ToOrderItem.php │ │ │ └── TotalsCollectorList.php │ │ └── View.php ├── Product │ └── Action │ │ └── BulkUpdate.php └── StockItem │ └── Magento │ └── CatalogInventory │ └── Model │ ├── Quote │ └── Item │ │ └── QuantityValidator │ │ └── QuoteItemQtyList.php │ └── Stock │ └── Item.php ├── PublicServices └── Product │ ├── ObjectChange.php │ └── SqlChange.php ├── README.md ├── Setup ├── LoggerFactory.php ├── MigrationFromMagento1 │ ├── Mapper.php │ ├── MappingTablesDownloader.php │ ├── Modifier.php │ ├── PreconditionsChecker │ │ ├── AbstractModel.php │ │ ├── Factory.php │ │ ├── Prepared.php │ │ └── UnexpectedlyCopied.php │ └── Runner.php ├── RecurringData.php ├── Uninstall.php ├── Update │ ├── Config.php │ ├── dev │ │ ├── AddAmazonCollects.php │ │ ├── ChangeDevelopVersion.php │ │ ├── ModuleConfigs.php │ │ ├── PrimaryConfigs.php │ │ └── ReinstallHookWithFix.php │ ├── y19_m01 │ │ ├── AmazonOrdersUpdateDetails.php │ │ ├── NewCronRunner.php │ │ └── NewUpgradesEngine.php │ ├── y19_m04 │ │ ├── Maintenance.php │ │ ├── MigrationFromMagento1.php │ │ ├── Walmart.php │ │ ├── WalmartAuthenticationForCA.php │ │ ├── WalmartOptionImagesURL.php │ │ └── WalmartOrdersReceiveOn.php │ ├── y19_m05 │ │ └── WalmartAddMissingColumn.php │ ├── y19_m07 │ │ └── WalmartSynchAdvancedConditions.php │ ├── y19_m10 │ │ ├── Configs.php │ │ ├── ConfigsNoticeRemoved.php │ │ ├── CronTaskRemovedFromConfig.php │ │ ├── DropAutoMove.php │ │ ├── EbayInStorePickup.php │ │ ├── EnvironmentToConfigs.php │ │ ├── NewSynchronization.php │ │ ├── ProductVocabulary.php │ │ └── RemoveAmazonShippingOverride.php │ ├── y19_m11 │ │ ├── AddEpidsAu.php │ │ ├── ProductsStatisticsImprovements.php │ │ ├── RemoveListingOtherLog.php │ │ └── WalmartProductIdOverride.php │ ├── y19_m12 │ │ ├── EbayReturnPolicyM1.php │ │ ├── RemoveEbayTranslation.php │ │ ├── RemoveReviseTotal.php │ │ ├── RenameTableIndexerVariationParent.php │ │ ├── SynchDataFromM1.php │ │ └── WalmartReviseDescription.php │ ├── y20_m01 │ │ ├── EbayLotSize.php │ │ ├── EbayOrderUpdates.php │ │ ├── FulfillmentCenter.php │ │ ├── RemoveOutOfStockControl.php │ │ ├── WalmartRemoveChannelUrl.php │ │ └── WebsitesActions.php │ ├── y20_m02 │ │ ├── Configs.php │ │ ├── OrderNote.php │ │ ├── RepricingCount.php │ │ └── ReviewPriorityCoefficients.php │ ├── y20_m03 │ │ ├── AmazonNL.php │ │ ├── AmazonSendInvoice.php │ │ ├── CronStrategy.php │ │ ├── EbayCategories.php │ │ ├── RemoveModePrefixFromChannelAccounts.php │ │ └── RemoveVersionsHistory.php │ ├── y20_m04 │ │ ├── BrowsenodeIdFix.php │ │ └── SaveEbayCategory.php │ ├── y20_m05 │ │ ├── CacheConfigs.php │ │ ├── ConvertIntoInnoDB.php │ │ ├── DisableUploadInvoicesAvailableNl.php │ │ ├── Logs.php │ │ ├── ModuleConfigs.php │ │ ├── PrimaryConfigs.php │ │ ├── RemoveMagentoQtyRules.php │ │ └── RemovePriceDeviationRules.php │ ├── y20_m06 │ │ ├── AmazonConfig.php │ │ ├── EbayConfig.php │ │ ├── GeneralConfig.php │ │ ├── RefundShippingCost.php │ │ ├── RemoveCronDomains.php │ │ └── WalmartConsumerId.php │ ├── y20_m07 │ │ ├── EbayTemplateCustomTemplateId.php │ │ ├── EbayTemplateStoreCategory.php │ │ ├── HashLongtextFields.php │ │ ├── WalmartKeywordsFields.php │ │ └── WalmartOrderItemQty.php │ ├── y20_m08 │ │ ├── AmazonSkipTax.php │ │ ├── AmazonTR.php │ │ ├── EbayManagedPayments.php │ │ ├── EbayShippingSurcharge.php │ │ ├── GroupedProduct.php │ │ └── VCSLiteInvoices.php │ ├── y20_m09 │ │ ├── AmazonSE.php │ │ ├── InventorySynchronization.php │ │ └── SellOnAnotherSite.php │ ├── y20_m10 │ │ ├── AddGermanyInStorePickUp.php │ │ ├── AddITCAShippingRateTable.php │ │ ├── AddInvoiceAndShipment.php │ │ ├── AddShipmentToAmazonListing.php │ │ ├── ChangeSingleItemOption.php │ │ ├── DefaultValuesInSyncPolicy.php │ │ └── SellOnAnotherSite.php │ ├── y20_m11 │ │ ├── AddSkipEvtinSetting.php │ │ ├── AmazonDuplicatedMarketplaceFeature.php │ │ ├── DisableVCSOnNL.php │ │ ├── EbayOrderCancelRefund.php │ │ ├── EbayRemoveCustomTemplates.php │ │ ├── RemoteFulfillmentProgram.php │ │ ├── SynchronizeInventoryConfigs.php │ │ └── WalmartCustomCarrier.php │ ├── y21_m01 │ │ ├── AmazonJP.php │ │ ├── EbayRemoveClickAndCollect.php │ │ └── WalmartCancelRefundOption.php │ ├── y21_m02 │ │ ├── AmazonPL.php │ │ ├── EbayManagedPayments.php │ │ └── MoveAUtoAsiaPacific.php │ ├── y21_m03 │ │ ├── EbayMotorsAddManagedPayments.php │ │ └── IncludeeBayProductDetails.php │ ├── y21_m04 │ │ ├── AddShipByDate.php │ │ └── AmazonRelistPrice.php │ ├── y21_m05 │ │ └── EbayStoreCategoryIDs.php │ ├── y21_m06 │ │ ├── EbayTaxReference.php │ │ └── FixBrokenUrl.php │ ├── y21_m07 │ │ └── AmazonIossNumber.php │ ├── y21_m08 │ │ └── FixedStuckedManualPriceRevise.php │ ├── y21_m10 │ │ ├── PartsCompatibilityImprovement.php │ │ └── UpdateWatermarkImage.php │ ├── y21_m11 │ │ └── EbayAddVatMode.php │ ├── y21_m12 │ │ └── AmazonOrdersFbaStore.php │ ├── y22_m01 │ │ └── ChangeRegistryKey.php │ ├── y22_m02 │ │ ├── ChangeDocumentationUrl.php │ │ ├── ImportTaxRegistrationId.php │ │ └── RemoveForumUrl.php │ ├── y22_m03 │ │ └── SetPrecisionInVatRateColumns.php │ ├── y22_m04 │ │ └── RemoveUnnecessaryConfig.php │ ├── y22_m05 │ │ ├── AddFeeColumnForEbayOrder.php │ │ ├── AmazonOrderCancellationNewFlow.php │ │ ├── DropListingColumns.php │ │ └── RemoveEbayPayment.php │ ├── y22_m06 │ │ ├── EbayFixedPriceModifier.php │ │ ├── FixMistakenConfigs.php │ │ └── WalmartOrderItemBuyerCancellation.php │ ├── y22_m07 │ │ ├── AddEpidsForItaly.php │ │ ├── AmazonAccountRemoveToken.php │ │ ├── AmazonMarketplaceRemoveAutomaticTokenColumn.php │ │ ├── ClearPolicyLinkingToDeletedAccount.php │ │ ├── FixFieldBuyerCancellationRequested.php │ │ ├── FixRemovedPolicyInScheduledActions.php │ │ └── MoveEbayProductIdentifiers.php │ ├── y22_m08 │ │ ├── AddAfnProductActualQty.php │ │ ├── AddAmazonMarketplacesBrSgInAe.php │ │ ├── AddIsReplacementColumnToAmazonOrder.php │ │ ├── ClearPartListingAdditionalData.php │ │ ├── FixDevKeyForJapanAmazonMarketplace.php │ │ ├── FixNullableGroupsInConfigs.php │ │ └── MoveAmazonProductIdentifiers.php │ ├── y22_m09 │ │ ├── AddAmazonMarketplaceBelgium.php │ │ ├── AddIsCriticalErrorReceivedFlag.php │ │ ├── AddWalmartCustomerOrderId.php │ │ ├── RemoveHitCounterFromEbayDescriptionPolicy.php │ │ └── UpdateConfigAttrSupportUrl.php │ ├── y22_m10 │ │ ├── AddIsSoldByAmazonColumnToAmazonOrder.php │ │ ├── AddRepricingAccountTokenValidityField.php │ │ ├── AmazonWalmartSellingPolicyPriceModifier.php │ │ ├── RemoveEpidsForAustralia.php │ │ ├── RemovePickupInStoreTablesAndColumns.php │ │ ├── RemoveRepricingDisablingConfig.php │ │ ├── RemoveWalmartLegacySettings.php │ │ └── UpdateAmazonMarketplace.php │ ├── y22_m11 │ │ └── FixWalmartChildListingId.php │ ├── y23_m01 │ │ ├── AmazonProductTypes.php │ │ ├── AmazonRemoveUnnecessaryData.php │ │ ├── ChangeRepricerBaseUrl.php │ │ ├── EbayListingProductScheduledStopAction.php │ │ ├── FixEbayQtyReservationDays.php │ │ ├── RemoveConfigConvertLinebreaks.php │ │ ├── UpdateConfigSupportUrl.php │ │ └── WalmartTrackingDetails.php │ ├── y23_m02 │ │ ├── AddErrorCodeColumnForTags.php │ │ ├── AddImmediatePaymentColumn.php │ │ ├── AddTags.php │ │ └── AmazonShippingTemplates.php │ ├── y23_m03 │ │ ├── AddColumnIsStoppedManuallyForAmazonAndWalmartProducts.php │ │ ├── AddWizardVersionDowngrade.php │ │ ├── RemoveLicenseStatus.php │ │ ├── RenameClientsToAccounts.php │ │ ├── UpgradeTags.php │ │ └── WalmartProductIdentifiers.php │ ├── y23_m04 │ │ ├── ChangeTypeProductAddIds.php │ │ ├── EbayBuyerInitiatedOrderCancellation.php │ │ ├── RemoveUnavailableDataType.php │ │ ├── SetIsVatEbayMarketplacePL.php │ │ └── UpdateEbayVatMode.php │ ├── y23_m06 │ │ ├── AddEbayBlockingErrorSetting.php │ │ ├── CreateProductTypeValidationTable.php │ │ ├── IgnoreVariationMpnInResolverConfig.php │ │ ├── RemoveBuildLastVersionFromRegistry.php │ │ └── RemoveWalmartInventoryWpid.php │ ├── y23_m07 │ │ ├── ChangeDocumentationUrl.php │ │ ├── ChangeProductTypeValidationTableErrorMessageField.php │ │ ├── DropTemplateDescriptionIdIndex.php │ │ └── RemoveScaleFromWatermarkSetting.php │ ├── y23_m08 │ │ ├── AddAmazonSellingFormatListPrice.php │ │ ├── AddFinalFeesColumnToAmazonOrderTable.php │ │ ├── AddIsGetDeliveryPreferencesColumnToAmazonOrderTable.php │ │ ├── AddNewColumnsToAmazonOrder.php │ │ ├── AddShippingIrregularForEbay.php │ │ ├── CreateAmazonShippingMapTable.php │ │ ├── RemoveAmazonDescriptionPolicyRelatedData.php │ │ └── RemoveCashOnDelivery.php │ ├── y23_m09 │ │ ├── AddAmazonProductTypeAttributeMappingTable.php │ │ ├── AddOnlineBestOfferForEbayProduct.php │ │ ├── AddPriceRoundingToEbayAmazonWalmartSellingTemplate.php │ │ ├── AddProductModeColumnToEbayListing.php │ │ ├── RefactorAmazonOrderColumns.php │ │ └── RemoveLastAccessAndRunFromConfigTable.php │ ├── y23_m10 │ │ ├── AddProductTypeViewModeColumn.php │ │ ├── CreateEbayCategorySpecificValidationResultTable.php │ │ ├── EnableAmazonShippingServiceForSomeMarketplaces.php │ │ ├── EnableEbayShippingRate.php │ │ ├── ImproveAmazonOrderPrefixes.php │ │ ├── ReAddIsSoldByAmazonColumnToAmazonOrder.php │ │ └── RenameSoldByAmazonSetting.php │ ├── y23_m11 │ │ ├── AddAmazonOriginalOrderIdColumn.php │ │ ├── AddWalmartIsWFS.php │ │ ├── AddWalmartOrdersWfsLastSynchronization.php │ │ ├── RemoveSupportUrlFromConfigTable.php │ │ └── RestoreEpidsForAustralia.php │ ├── y23_m12 │ │ ├── AddAmazonInventoryFbaFieldsInAmazonAccountTable.php │ │ ├── AddAmazonMarketplaceSouthAfrica.php │ │ ├── AddCreateShipmentFbaOrdersColumn.php │ │ ├── AddCustomizedInfoToAmazonItems.php │ │ ├── AddEbayBuyerReturnRequested.php │ │ ├── AddProductTypeTitleColumn.php │ │ ├── AddTecdocKtypesIt.php │ │ └── UpdateProductTypeTitleColumn.php │ ├── y24_m01 │ │ ├── AddListingProductAdvancedFilterTable.php │ │ └── ImproveAutoUpdateEbayFinalFees.php │ ├── y24_m02 │ │ ├── AddReviseProductIdentifiersToEbaySyncTemplate.php │ │ ├── ChangeTypeCustomValueFieldOnCategorySpecificTable.php │ │ ├── CleanSettingsInConfigTable.php │ │ ├── CombineInactiveEbayProductStatuses.php │ │ ├── CombineInactiveProductStatuses.php │ │ ├── DisableAmazonMarketplaceWithoutAccounts.php │ │ ├── RemoveEbayTradingToken.php │ │ └── RemoveInstallationKeyFromConfigTable.php │ ├── y24_m03 │ │ ├── AddKtypesResolveAttemptColumn.php │ │ ├── AddOnlineRegularMapPriceToAmazonListingProduct.php │ │ └── CreateAndFillAmazonAccountMerchantSettingTable.php │ ├── y24_m05 │ │ └── AddEbayPromotion.php │ ├── y24_m06 │ │ ├── AddAmazonMarketplaceSaudiArabia.php │ │ ├── AddAmazonShippingPalletDelivery.php │ │ ├── AddEbayBundleOptionMappingTable.php │ │ ├── AddPriceLastUpdateDateColumnToEbayListingProductTable.php │ │ ├── RemoveAuEpidsVisibleFromConfigTable.php │ │ └── RemoveEbayCharity.php │ ├── y24_m07 │ │ ├── AddEbayVideo.php │ │ ├── AddOfferImagesToAmazonListing.php │ │ ├── AddProductIdentifiersSettingsForAmazonListing.php │ │ ├── EnableVatCalculationServiceForPolandAndSweden.php │ │ └── NewListingWizardTables.php │ ├── y24_m08 │ │ ├── AddDateOfInvoiceSendingToAmazonOrder.php │ │ ├── RemoveBlockingErrorsFromConfigTable.php │ │ └── UpdateAmazonDictionaryProductType.php │ ├── y24_m09 │ │ ├── AddInternationalShippingRateTablesForAustralia.php │ │ ├── AddWalmartProductTypes.php │ │ ├── RemoveIsNewAsinAvailableFromAmazonMarketplace.php │ │ └── RemoveUnusedAmazonTables.php │ ├── y24_m10 │ │ ├── AddAttributeMapping.php │ │ ├── AddEbayComplianceDocuments.php │ │ ├── DropTableWalmartDictionarySpecific.php │ │ └── EbayAccountAddSiteColumn.php │ ├── y24_m11 │ │ ├── AddAttributeOptionMapping.php │ │ ├── AddCustomValueToAttributeMapping.php │ │ └── AddDeliveryDateFromColumnToAmazonOrder.php │ ├── y24_m12 │ │ ├── AddAmazonMarketplaceIreland.php │ │ ├── AddLanguageToEbayComplianceDocuments.php │ │ └── ChangeColumnValueSizeInAttributeMappingTable.php │ ├── y25_m01 │ │ └── AddPaymentMethodDetailsColumnToAmazonOrder.php │ ├── y25_m02 │ │ ├── AddConditionDescriptorIntoEbayDescriptionTemplate.php │ │ └── DisableB2BForSomeAmazonMarketplaces.php │ ├── y25_m03 │ │ ├── AddCustomAttributeForConditionDescriptorIntoEbayDescriptionTemplate.php │ │ └── DeleteTemplateDescriptionIdColumnFromAmazonListingProductTable.php │ ├── y25_m04 │ │ ├── AddConditionColumnsIntoWalmartListingTable.php │ │ ├── AddCustomValueToEbayVideoAndDocuments.php │ │ ├── AddCustomizationDetailsToAmazonOrderItem.php │ │ ├── AddIntoWalmartProductIsNotMappedToExistingChannelItemColumn.php │ │ └── AddVariationsToEbayUnmanagedProduct.php │ ├── y25_m05 │ │ ├── AddAmazonInventoryFbaFieldsInAmazonAccountTable.php │ │ ├── AddAmazonOnlineQtyLastUpdateDate.php │ │ ├── DeleteEbayUnmanagedDuplicatesByListingProducts.php │ │ └── EbayPromotedListingCampaigns.php │ ├── y25_m06 │ │ ├── AddReviseConditionsForAmazonTemplateSynchronization.php │ │ ├── EbayListingModifyAddProductModeAndAddAdditionalDataColumn.php │ │ └── FixValueOfProductTypeIdInWalmartListingProduct.php │ ├── y25_m07 │ │ ├── AddOnlineStrikeThroughPriceColumnToEbayListingProductTable.php │ │ ├── DecreaseAmazonProcessingTime.php │ │ └── ModifyWalmartAccountTable.php │ ├── y25_m09 │ │ └── EnableAmazonBusinessForAustralia.php │ ├── y25_m10 │ │ ├── RemoveWalmartShippingOverrides.php │ │ └── RepricerMaxMinPriceUpdateWorkflow.php │ └── y25_m12 │ │ └── AddWalmartRepricer.php └── Upgrade │ ├── v1_0_0__v1_1_0 │ ├── Config.php │ ├── MagentoMarketplaceURL.php │ ├── MaintenanceModeKey.php │ ├── ModuleInPrimaryConfig.php │ ├── RemoveAutocomplete.php │ ├── RemoveKillNow.php │ ├── RemoveUnsupportedAmazonMarketplaces.php │ ├── RenameServerGroup.php │ ├── ServicingMessages.php │ ├── SupportURLs.php │ └── SynchronizationPolicySchedule.php │ ├── v1_10_0__v1_10_1 │ └── Config.php │ ├── v1_10_1__v1_11_0 │ └── Config.php │ ├── v1_11_0__v1_12_0 │ └── Config.php │ ├── v1_12_0__v1_12_1 │ └── Config.php │ ├── v1_12_1__v1_12_2 │ └── Config.php │ ├── v1_12_2__v1_12_3 │ └── Config.php │ ├── v1_12_3__v1_13_0 │ └── Config.php │ ├── v1_13_0__v1_13_1 │ └── Config.php │ ├── v1_13_1__v1_13_2 │ └── Config.php │ ├── v1_13_2__v1_14_0 │ └── Config.php │ ├── v1_14_0__v1_14_1 │ └── Config.php │ ├── v1_14_1__v1_14_2 │ └── Config.php │ ├── v1_14_2__v1_14_3 │ └── Config.php │ ├── v1_14_3_1__v1_15_0 │ └── Config.php │ ├── v1_14_3__v1_14_3_1 │ └── Config.php │ ├── v1_15_0__v1_15_1 │ └── Config.php │ ├── v1_15_1__v1_16_0 │ └── Config.php │ ├── v1_16_0__v1_16_1 │ └── Config.php │ ├── v1_16_1__v1_17_0 │ └── Config.php │ ├── v1_17_0__v1_17_1 │ └── Config.php │ ├── v1_17_1__v1_18_0 │ └── Config.php │ ├── v1_18_0__v1_18_1 │ └── Config.php │ ├── v1_18_1__v1_19_0 │ └── Config.php │ ├── v1_19_0__v1_19_1 │ └── Config.php │ ├── v1_19_1__v1_19_2 │ └── Config.php │ ├── v1_19_2__v1_20_0 │ └── Config.php │ ├── v1_1_0__v1_2_0 │ ├── AdvancedConditionsForSynchronization.php │ ├── CharityMigration.php │ ├── ClearListingOtherLogsFromRemovedActions.php │ ├── Config.php │ ├── EnableRepricingInConfig.php │ ├── InStorePickupGlobalKey.php │ ├── IsAfnChannelZero.php │ ├── LogsImprovements.php │ ├── MoreLogsImprovements.php │ ├── PartialReviseByShippingServices.php │ ├── PartialReviseBySpecifics.php │ ├── ProductCustomTypes.php │ └── PublicVersionsChecker.php │ ├── v1_20_0__v1_20_1 │ └── Config.php │ ├── v1_20_1__v1_20_2 │ └── Config.php │ ├── v1_20_2__v1_21_0 │ └── Config.php │ ├── v1_21_0__v1_21_1 │ └── Config.php │ ├── v1_21_1__v1_21_2 │ └── Config.php │ ├── v1_21_2__v1_21_3 │ └── Config.php │ ├── v1_21_3__v1_22_0_1 │ └── Config.php │ ├── v1_22_0_1__v1_22_1 │ └── Config.php │ ├── v1_22_1__v1_23_0 │ └── Config.php │ ├── v1_23_0__v1_23_1 │ └── Config.php │ ├── v1_23_1__v1_23_2 │ └── Config.php │ ├── v1_23_2__v1_24_0 │ └── Config.php │ ├── v1_24_0__v1_24_1 │ └── Config.php │ ├── v1_24_1__v1_25_0 │ └── Config.php │ ├── v1_25_0__v1_25_1 │ └── Config.php │ ├── v1_25_1__v1_26_0 │ └── Config.php │ ├── v1_26_0__v1_27_0 │ └── Config.php │ ├── v1_27_0__v1_28_0 │ └── Config.php │ ├── v1_28_0__v1_28_1 │ └── Config.php │ ├── v1_28_1__v1_28_2 │ └── Config.php │ ├── v1_28_2__v1_29_0 │ └── Config.php │ ├── v1_29_0__v1_30_0 │ └── Config.php │ ├── v1_2_0__v1_3_0 │ ├── AmazonCanadaMarketplace.php │ ├── AmazonNewAsinAvailable.php │ ├── AmazonNewReportsLogic.php │ ├── AmazonOrdersFulfillmentDetails.php │ ├── AmazonShippingTemplate.php │ ├── Config.php │ ├── CronHosts.php │ ├── EbayItemUUID.php │ ├── EbayItemUrl.php │ ├── EbayManyDuplicatedCategoriesTemplatesFix.php │ ├── GridsPerformance.php │ ├── IncreaseCapacityOfSystemLogMessage.php │ ├── IsDisabledModuleConfig.php │ ├── Orders.php │ ├── RepricingSynchronization.php │ └── WizardMigrationFromMagento1.php │ ├── v1_30_0__v1_31_0 │ └── Config.php │ ├── v1_31_0__v1_31_1 │ └── Config.php │ ├── v1_31_1__v1_31_2 │ └── Config.php │ ├── v1_31_2__v1_32_0 │ └── Config.php │ ├── v1_32_0__v1_32_1 │ └── Config.php │ ├── v1_32_1__v1_33_0 │ └── Config.php │ ├── v1_33_0__v1_33_1 │ └── Config.php │ ├── v1_33_1__v1_34_0 │ └── Config.php │ ├── v1_34_0__v1_35_0 │ └── Config.php │ ├── v1_35_0__v1_35_1 │ └── Config.php │ ├── v1_35_1__v1_36_0 │ └── Config.php │ ├── v1_36_0__v1_37_0 │ └── Config.php │ ├── v1_37_0__v1_38_0 │ └── Config.php │ ├── v1_38_0__v1_38_1 │ └── Config.php │ ├── v1_38_1__v1_39_0 │ └── Config.php │ ├── v1_39_0__v1_40_0 │ └── Config.php │ ├── v1_3_0__v1_3_1 │ ├── Config.php │ ├── HealthStatus.php │ ├── MarketplacesFeatures.php │ └── PartialStatesForAfnRepricingFilters.php │ ├── v1_3_1__v1_3_2 │ ├── ActionConfigurator.php │ ├── ActualizeRequirementsPopup.php │ ├── AdditionalFieldsForListingProduct.php │ ├── AmazonBusiness.php │ ├── AmazonBusinessDataMigration.php │ ├── AmazonShippingTemplateAttributes.php │ ├── AmazonSkusQueue.php │ ├── ArchivedEntity.php │ ├── Config.php │ ├── DownloadableCustomType.php │ ├── EbayEpidsDeUk.php │ ├── EbayKtypesSpain.php │ ├── EbayOldItems.php │ ├── EbayWasteRecyclingFee.php │ ├── HealthStatus.php │ ├── IssuesResolverCronTask.php │ ├── MovingSynchProductLimitToConfig.php │ ├── NewFolderStructureForCronTasks.php │ ├── NewProductActions.php │ ├── OneCurrencyForCanada.php │ ├── OrdersGridIndexes.php │ ├── OtherListingProductUpdate.php │ ├── PriceTypeConverting.php │ ├── RemoveTerapeak.php │ ├── SearchSettingsDataCapacity.php │ ├── TransactionalLocks.php │ └── UUIDRegenerate.php │ ├── v1_3_2__v1_3_3 │ ├── AmazonMarketplaces.php │ └── Config.php │ ├── v1_3_3__v1_3_4 │ ├── CatchMagentoOrdersCreationFailure.php │ ├── Config.php │ ├── EbayVariationsWithASpace.php │ ├── MpnValueCanBeChanged.php │ ├── MsrpRrp.php │ ├── NewLastExecutedSlowTaskConfigValue.php │ ├── RemoveMigrationFromM1.php │ ├── RepricingSynchronizationImprovements.php │ ├── SaveOnlineIdentifiers.php │ ├── ShouldBeUrlsSecureFromConfig.php │ └── TryToCreateMagentoOrderAgainIfInitialCreationWasFailed.php │ ├── v1_3_4__v1_4_0 │ └── Config.php │ ├── v1_40_0__v1_40_1 │ └── Config.php │ ├── v1_40_1__v1_40_2 │ └── Config.php │ ├── v1_40_2__v1_40_3 │ └── Config.php │ ├── v1_40_3__v1_41_0 │ └── Config.php │ ├── v1_41_0__v1_42_0 │ └── Config.php │ ├── v1_42_0__v1_43_0 │ └── Config.php │ ├── v1_43_0__v1_43_1 │ └── Config.php │ ├── v1_43_1__v1_43_2 │ └── Config.php │ ├── v1_43_2__v1_43_3 │ └── Config.php │ ├── v1_43_3__v1_43_4 │ └── Config.php │ ├── v1_43_4__v1_43_5 │ └── Config.php │ ├── v1_43_5__v1_44_0 │ └── Config.php │ ├── v1_44_0__v1_44_1 │ └── Config.php │ ├── v1_44_1__v1_44_2 │ └── Config.php │ ├── v1_44_2__v1_45_0 │ └── Config.php │ ├── v1_45_0__v1_45_1 │ └── Config.php │ ├── v1_45_1__v1_46_0 │ └── Config.php │ ├── v1_46_0__v1_47_0 │ └── Config.php │ ├── v1_47_0__v1_47_1 │ └── Config.php │ ├── v1_47_1__v1_48_0 │ └── Config.php │ ├── v1_48_0__v1_48_1 │ └── Config.php │ ├── v1_48_1__v1_49_0 │ └── Config.php │ ├── v1_49_0__v1_49_1 │ └── Config.php │ ├── v1_49_1__v1_49_2 │ └── Config.php │ ├── v1_49_2__v1_50_0 │ └── Config.php │ ├── v1_4_0__v1_4_1 │ └── Config.php │ ├── v1_4_1__v1_4_2 │ └── Config.php │ ├── v1_4_2__v1_4_3 │ └── Config.php │ ├── v1_4_3__v1_5_0 │ └── Config.php │ ├── v1_50_0__v1_50_1 │ └── Config.php │ ├── v1_50_1__v1_50_2 │ └── Config.php │ ├── v1_50_2__v1_50_3 │ └── Config.php │ ├── v1_50_3__v1_51_0 │ └── Config.php │ ├── v1_51_0__v1_51_1 │ └── Config.php │ ├── v1_51_1__v1_52_0 │ └── Config.php │ ├── v1_52_0__v1_53_0 │ └── Config.php │ ├── v1_53_0__v1_54_0 │ └── Config.php │ ├── v1_54_0__v1_54_1 │ └── Config.php │ ├── v1_54_1__v1_54_2 │ └── Config.php │ ├── v1_54_2__v1_55_0 │ └── Config.php │ ├── v1_55_0__v1_55_1 │ └── Config.php │ ├── v1_55_1__v1_56_0 │ └── Config.php │ ├── v1_56_0__v1_56_1 │ └── Config.php │ ├── v1_56_1__v1_57_0 │ └── Config.php │ ├── v1_57_0__v1_58_0 │ └── Config.php │ ├── v1_58_0__v1_58_1 │ └── Config.php │ ├── v1_58_1__v1_58_2 │ └── Config.php │ ├── v1_58_2__v1_58_4 │ └── Config.php │ ├── v1_58_4__v1_58_5 │ └── Config.php │ ├── v1_58_5__v1_58_6 │ └── Config.php │ ├── v1_58_6__v1_58_7 │ └── Config.php │ ├── v1_58_7__v1_58_8 │ └── Config.php │ ├── v1_58_8__v1_59_0 │ └── Config.php │ ├── v1_59_0__v1_59_1 │ └── Config.php │ ├── v1_59_1__v1_59_2 │ └── Config.php │ ├── v1_59_2__v1_59_3 │ └── Config.php │ ├── v1_59_3__v1_59_4 │ └── Config.php │ ├── v1_59_4__v1_59_5 │ └── Config.php │ ├── v1_59_5__v1_59_6 │ └── Config.php │ ├── v1_59_6__v1_59_7 │ └── Config.php │ ├── v1_59_7__v1_60_0 │ └── Config.php │ ├── v1_5_0__v1_5_1 │ └── Config.php │ ├── v1_5_1__v1_6_0 │ └── Config.php │ ├── v1_60_0__v1_61_0 │ └── Config.php │ ├── v1_61_0__v1_62_0 │ └── Config.php │ ├── v1_62_0__v1_62_1 │ └── Config.php │ ├── v1_62_1__v1_62_2 │ └── Config.php │ ├── v1_62_2__v1_63_0 │ └── Config.php │ ├── v1_63_0__v1_64_0 │ └── Config.php │ ├── v1_64_0__v1_64_1 │ └── Config.php │ ├── v1_64_1__v1_65_0 │ └── Config.php │ ├── v1_65_0__v1_65_1 │ └── Config.php │ ├── v1_65_1__v1_65_2 │ └── Config.php │ ├── v1_65_2__v1_66_0 │ └── Config.php │ ├── v1_66_0__v1_66_1 │ └── Config.php │ ├── v1_66_1__v1_66_2 │ └── Config.php │ ├── v1_66_2__v1_67_0 │ └── Config.php │ ├── v1_67_0__v1_67_1 │ └── Config.php │ ├── v1_67_1__v1_68_0 │ └── Config.php │ ├── v1_68_0__v1_68_1 │ └── Config.php │ ├── v1_68_1__v1_68_2 │ └── Config.php │ ├── v1_68_2__v1_69_0 │ └── Config.php │ ├── v1_69_0__v1_70_0 │ └── Config.php │ ├── v1_6_0__v1_7_0 │ └── Config.php │ ├── v1_70_0__v1_70_1 │ └── Config.php │ ├── v1_70_1__v1_70_2 │ └── Config.php │ ├── v1_70_2__v1_71_0 │ └── Config.php │ ├── v1_71_0__v1_72_0 │ └── Config.php │ ├── v1_72_0__v1_72_1 │ └── Config.php │ ├── v1_72_1__v1_72_2 │ └── Config.php │ ├── v1_72_2__v1_73_0 │ └── Config.php │ ├── v1_73_0__v1_74_0 │ └── Config.php │ ├── v1_74_0__v1_74_1 │ └── Config.php │ ├── v1_74_1__v1_74_2 │ └── Config.php │ ├── v1_74_2__v1_74_3 │ └── Config.php │ ├── v1_74_3__v1_75_0 │ └── Config.php │ ├── v1_75_0__v1_75_1 │ └── Config.php │ ├── v1_75_1__v1_75_2 │ └── Config.php │ ├── v1_75_2__v1_75_3 │ └── Config.php │ ├── v1_75_3__v1_76_0 │ └── Config.php │ ├── v1_76_0__v1_76_1 │ └── Config.php │ ├── v1_76_1__v1_76_2 │ └── Config.php │ ├── v1_76_2__v1_77_0 │ └── Config.php │ ├── v1_77_0__v1_77_1 │ └── Config.php │ ├── v1_77_1__v1_77_2 │ └── Config.php │ ├── v1_77_2__v1_77_3 │ └── Config.php │ ├── v1_77_3__v1_77_4 │ └── Config.php │ ├── v1_77_4__v1_78_0 │ └── Config.php │ ├── v1_78_0__v1_79_0 │ └── Config.php │ ├── v1_79_0__v1_79_1 │ └── Config.php │ ├── v1_79_1__v1_79_2 │ └── Config.php │ ├── v1_79_2__v1_79_3 │ └── Config.php │ ├── v1_79_3__v1_79_4 │ └── Config.php │ ├── v1_79_4__v1_79_5 │ └── Config.php │ ├── v1_79_5__v1_80_0 │ └── Config.php │ ├── v1_7_0__v1_7_1 │ └── Config.php │ ├── v1_7_1__v1_7_2 │ └── Config.php │ ├── v1_7_2__v1_8_0 │ └── Config.php │ ├── v1_80_0__v1_80_1 │ └── Config.php │ ├── v1_80_1__v1_80_2 │ └── Config.php │ ├── v1_80_2__v1_81_0 │ └── Config.php │ ├── v1_81_0__v1_82_0 │ └── Config.php │ ├── v1_82_0__v1_83_0 │ └── Config.php │ ├── v1_83_0__v1_83_1 │ └── Config.php │ ├── v1_83_1__v1_83_2 │ └── Config.php │ ├── v1_83_2__v1_83_3 │ └── Config.php │ ├── v1_83_3__v1_83_4 │ └── Config.php │ ├── v1_83_4__v1_84_0 │ └── Config.php │ ├── v1_84_0__v1_85_0 │ └── Config.php │ ├── v1_85_0__v1_85_1 │ └── Config.php │ ├── v1_85_1__v1_86_0 │ └── Config.php │ ├── v1_86_0__v1_86_1 │ └── Config.php │ ├── v1_86_1__v1_86_2 │ └── Config.php │ ├── v1_86_2__v1_87_0 │ └── Config.php │ ├── v1_8_0__v1_8_1 │ └── Config.php │ ├── v1_8_1__v1_9_0 │ └── Config.php │ ├── v1_9_0__v1_9_1 │ └── Config.php │ ├── v1_9_1__v1_9_2 │ └── Config.php │ ├── v1_9_2__v1_9_3 │ └── Config.php │ ├── v1_9_3__v1_9_4 │ └── Config.php │ ├── v1_9_4__v1_9_5 │ └── Config.php │ └── v1_9_5__v1_10_0 │ └── Config.php ├── Ui ├── DataProvider.php └── Template │ └── ProductType │ └── Component │ └── Listing │ ├── Column │ ├── Marketplace.php │ └── Title.php │ └── Select │ └── Marketplace.php ├── composer.json ├── etc ├── acl.xml ├── adminhtml │ ├── di.xml │ ├── events.xml │ ├── menu.xml │ ├── routes.xml │ └── system.xml ├── config.xml ├── crontab.xml ├── csp_whitelist.xml ├── di.xml ├── email_templates.xml ├── events.xml ├── frontend │ └── routes.xml ├── module.xml ├── sales.xml └── webapi.xml ├── i18n ├── de_AT.csv ├── de_CH.csv ├── de_DE.csv ├── es_ES.csv ├── fr_CA.csv ├── fr_FR.csv ├── it_CH.csv └── it_IT.csv ├── registration.php ├── requirements.json └── view └── adminhtml ├── email └── health_status │ └── notification.html ├── layout ├── 1column.xml ├── 2columns.xml ├── blank.xml ├── m2epro_amazon_listing_view.xml ├── m2epro_amazon_template_producttype_index.xml ├── m2epro_ebay_listing_header_handler.xml ├── m2epro_ebay_listing_view.xml ├── m2epro_ebay_listing_wizard_category_modeview.xml ├── m2epro_ebay_listing_wizard_category_view.xml ├── m2epro_ebay_listing_wizard_product_view.xml ├── m2epro_ebay_listing_wizard_productsource_view.xml ├── m2epro_ebay_listing_wizard_review_view.xml ├── m2epro_ebay_listing_wizard_validation_view.xml ├── m2epro_ebay_show_other_listings_products_filter.xml ├── m2epro_general_handler.xml ├── m2epro_walmart_account_edit.xml ├── m2epro_walmart_account_index.xml ├── m2epro_walmart_listing_create_index.xml └── m2epro_walmart_listing_view.xml ├── requirejs-config.js ├── templates ├── amazon │ ├── account │ │ └── order │ │ │ ├── excludedCountries.phtml │ │ │ ├── excludedStates.phtml │ │ │ └── prefixesTable.phtml │ ├── listing │ │ ├── product │ │ │ ├── add │ │ │ │ ├── category │ │ │ │ │ └── tree.phtml │ │ │ │ ├── new_asin │ │ │ │ │ └── manual │ │ │ │ │ │ └── skip_popup.phtml │ │ │ │ ├── review.phtml │ │ │ │ └── search_asin │ │ │ │ │ └── new_asin_popup.phtml │ │ │ ├── product_type │ │ │ │ └── popup.phtml │ │ │ ├── search │ │ │ │ ├── main.phtml │ │ │ │ └── menu.phtml │ │ │ ├── template │ │ │ │ ├── product_tax_code │ │ │ │ │ └── main.phtml │ │ │ │ └── shipping │ │ │ │ │ └── main.phtml │ │ │ └── variation │ │ │ │ ├── individual │ │ │ │ ├── edit.phtml │ │ │ │ └── manage.phtml │ │ │ │ ├── manage │ │ │ │ └── tabs │ │ │ │ │ └── vocabulary.phtml │ │ │ │ ├── switch_to_individual_popup.phtml │ │ │ │ ├── switch_to_parent_popup.phtml │ │ │ │ ├── vocabulary_attributes_popup.phtml │ │ │ │ └── vocabulary_options_popup.phtml │ │ ├── transferring │ │ │ └── destination.phtml │ │ └── view │ │ │ └── sellercentral │ │ │ └── repricing │ │ │ └── regular_price_popup.phtml │ ├── order.phtml │ ├── order │ │ ├── grid │ │ │ └── invoice_creditmemo_filter.phtml │ │ └── shipping_address.phtml │ ├── settings │ │ └── attribute_mapping.phtml │ └── template │ │ ├── product_type │ │ ├── field_templates.phtml │ │ └── search_popup.phtml │ │ └── selling_format │ │ └── discount_table.phtml ├── control_panel │ ├── info │ │ ├── actual.phtml │ │ ├── license.phtml │ │ └── mysqlTables.phtml │ ├── inspection │ │ ├── cron.phtml │ │ ├── requirements.phtml │ │ └── versionInfo.phtml │ └── tabs │ │ ├── change_tracker │ │ ├── executed_time.phtml │ │ ├── index.phtml │ │ └── logs.phtml │ │ ├── command │ │ └── group.phtml │ │ ├── cron.phtml │ │ ├── database │ │ └── table_cells_popup.phtml │ │ ├── debug.phtml │ │ ├── inspection.phtml │ │ ├── overview.phtml │ │ └── tools_module.phtml ├── dashboard.phtml ├── dashboard │ ├── errors.phtml │ ├── listing_product_issues.phtml │ ├── products.phtml │ ├── sales.phtml │ ├── sales │ │ └── tab.phtml │ └── shipments.phtml ├── ebay │ ├── category │ │ └── view.phtml │ ├── listing │ │ ├── preview.phtml │ │ ├── product │ │ │ ├── add │ │ │ │ └── category │ │ │ │ │ └── tree.phtml │ │ │ ├── category │ │ │ │ └── settings │ │ │ │ │ └── mode │ │ │ │ │ └── warning_popup.phtml │ │ │ └── review.phtml │ │ ├── template │ │ │ └── switcher.phtml │ │ ├── transferring │ │ │ └── destination.phtml │ │ ├── view │ │ │ ├── ebay │ │ │ │ └── fee │ │ │ │ │ ├── details.phtml │ │ │ │ │ ├── errors.phtml │ │ │ │ │ └── product.phtml │ │ │ └── settings │ │ │ │ └── motors │ │ │ │ ├── add.phtml │ │ │ │ ├── instruction.phtml │ │ │ │ └── view │ │ │ │ ├── filter.phtml │ │ │ │ ├── group.phtml │ │ │ │ ├── group │ │ │ │ ├── filters.phtml │ │ │ │ └── items.phtml │ │ │ │ └── item.phtml │ │ └── wizard │ │ │ ├── category │ │ │ └── category_chooser.phtml │ │ │ └── review.phtml │ ├── order.phtml │ ├── order │ │ └── shipping_address.phtml │ └── template │ │ ├── category │ │ ├── chooser.phtml │ │ └── chooser │ │ │ ├── edit.phtml │ │ │ ├── specific │ │ │ └── form │ │ │ │ └── renderer │ │ │ │ ├── custom.phtml │ │ │ │ └── dictionary.phtml │ │ │ └── tabs │ │ │ ├── attribute.phtml │ │ │ ├── browse.phtml │ │ │ ├── recent.phtml │ │ │ └── search.phtml │ │ ├── description │ │ ├── compliance_documents.phtml │ │ ├── preview.phtml │ │ └── preview │ │ │ └── body.phtml │ │ ├── edit │ │ └── form.phtml │ │ ├── shipping │ │ └── form │ │ │ └── data.phtml │ │ └── synchronization │ │ └── form │ │ └── data.phtml ├── general.phtml ├── help_block.phtml ├── listing │ ├── category │ │ └── tree.phtml │ ├── log │ │ └── errors_summary.phtml │ ├── mapping │ │ └── view.phtml │ ├── moving │ │ └── failedProducts.phtml │ ├── other │ │ └── view │ │ │ └── header.phtml │ ├── product │ │ └── show_products_others_listings_filter.phtml │ ├── switcher.phtml │ ├── view │ │ ├── header.phtml │ │ └── switcher.phtml │ └── wizard │ │ └── category │ │ └── tree.phtml ├── log │ ├── last_actions.phtml │ └── uniqueMessageFilter.phtml ├── magento │ ├── button │ │ └── dropdown.phtml │ ├── grid │ │ ├── container │ │ │ └── only_content.phtml │ │ └── extended.phtml │ ├── order │ │ └── payment │ │ │ └── info.phtml │ ├── product │ │ └── rule.phtml │ └── tabs │ │ ├── default.phtml │ │ ├── horizontal_static.phtml │ │ └── vertical.phtml ├── maintenance.phtml ├── messages.phtml ├── order │ ├── debug.phtml │ ├── item │ │ └── product │ │ │ ├── mapping.phtml │ │ │ └── options │ │ │ └── mapping.phtml │ ├── not_created_filter.phtml │ └── note.phtml ├── page_help_link.phtml ├── productTypeToggle.phtml ├── renderer │ └── description │ │ ├── gallery.phtml │ │ └── image.phtml ├── requirements_popup.phtml ├── store_switcher.phtml ├── switcher │ ├── advanced.phtml │ └── simple.phtml ├── template │ ├── 2_column.phtml │ └── selling_format │ │ └── price_change.phtml ├── walmart │ ├── account │ │ └── order │ │ │ └── prefixesTable.phtml │ ├── listing │ │ └── product │ │ │ ├── add │ │ │ ├── category │ │ │ │ └── tree.phtml │ │ │ ├── product_type │ │ │ │ └── warning_popup.phtml │ │ │ └── review.phtml │ │ │ ├── product_type.phtml │ │ │ └── variation │ │ │ ├── individual │ │ │ ├── edit.phtml │ │ │ └── manage.phtml │ │ │ ├── manage │ │ │ └── tabs │ │ │ │ └── vocabulary.phtml │ │ │ ├── switch_to_individual_popup.phtml │ │ │ ├── switch_to_parent_popup.phtml │ │ │ ├── vocabulary_attributes_popup.phtml │ │ │ └── vocabulary_options_popup.phtml │ ├── order.phtml │ ├── order │ │ └── shipping_address.phtml │ ├── product_type │ │ ├── field_templates.phtml │ │ └── search_popup.phtml │ └── template │ │ ├── category │ │ └── categories │ │ │ ├── chooser │ │ │ ├── edit.phtml │ │ │ └── tabs │ │ │ │ ├── browse.phtml │ │ │ │ ├── recent.phtml │ │ │ │ └── search.phtml │ │ │ └── specific │ │ │ └── add.phtml │ │ └── sellingFormat │ │ └── form │ │ ├── promotions.phtml │ │ └── repricer_strategy.phtml ├── widget │ ├── breadcrumb.phtml │ └── info.phtml └── wizard │ ├── amazonMigrationToProductTypes │ └── content.phtml │ ├── installationAmazon │ └── installation │ │ └── listing_tutorial.phtml │ ├── installationEbay │ └── installation │ │ └── listing_tutorial.phtml │ ├── installationWalmart │ └── installation │ │ ├── account │ │ └── marketplace_selector.phtml │ │ └── listing_tutorial.phtml │ ├── migrationFromMagento1 │ └── installation │ │ ├── congratulation.phtml │ │ ├── database.phtml │ │ └── disableModule.phtml │ ├── migrationToInnodb │ ├── installation │ │ └── marketplacesSynchronization.phtml │ └── notification.phtml │ ├── versionDowngrade │ └── content.phtml │ └── walmartMigrationToProductTypes │ └── content.phtml ├── ui_component └── m2epro_amazon_template_product_type_grid.xml └── web ├── css ├── account │ └── grid.css ├── amazon │ ├── listing │ │ ├── product │ │ │ └── variation │ │ │ │ └── grid.css │ │ └── view.css │ ├── order │ │ └── grid.css │ ├── product_type.css │ ├── product_type_validation_grid.css │ ├── style.css │ └── template.css ├── control_panel.css ├── dashboard │ ├── page-actions.css │ └── view.css ├── developers.css ├── ebay │ ├── account │ │ └── feedback.css │ ├── listing │ │ ├── grid.css │ │ ├── preview.css │ │ ├── templates.css │ │ └── view.css │ ├── order │ │ └── grid.css │ ├── style.css │ └── template.css ├── grid.css ├── health_status.css ├── help_block.css ├── jstree │ └── themes │ │ └── default │ │ ├── 32px.png │ │ ├── 40px.png │ │ ├── style.css │ │ ├── style.min.css │ │ └── throbber.gif ├── layout │ └── blank.css ├── listing │ ├── autoAction.css │ ├── grid.css │ ├── itemsByIssue │ │ └── grid.css │ ├── other │ │ └── view │ │ │ └── grid.css │ ├── search │ │ └── grid.css │ └── view │ │ └── grid.css ├── log │ └── grid.css ├── magento │ ├── form │ │ └── datePicker.css │ └── product │ │ └── grid.css ├── marketplace │ └── form.css ├── order.css ├── order │ └── log │ │ └── grid.css ├── plugin │ ├── AreaWrapper.css │ └── ProgressBar.css ├── policy │ └── grid.css ├── settings.css ├── source │ └── _module.less ├── style.css ├── support.css ├── switcher.css ├── synchronization │ └── form.css ├── system │ └── config.css ├── walmart │ ├── account │ │ └── credentials.css │ ├── listing │ │ ├── product │ │ │ └── variation │ │ │ │ └── grid.css │ │ └── view.css │ ├── order │ │ └── grid.css │ ├── product_type.css │ ├── style.css │ └── template.css └── wizard.css ├── external └── js │ ├── ChartJs │ ├── Chart.min.js │ └── es6-shim.min.js │ └── jstree │ └── jstree.min.js ├── fonts ├── WorkSans │ ├── OFL.txt │ ├── WorkSans-Bold.ttf │ └── WorkSans-Regular.ttf ├── amazon.svg ├── ebay.svg ├── external-link.svg ├── m2epro-icons.eot ├── m2epro-icons.svg ├── m2epro-icons.ttf ├── m2epro-icons.woff ├── m2epro-icons.woff2 ├── m2epro.svg └── walmart.svg ├── images ├── add.png ├── amazon-afn-icon.svg ├── amazon-business.png ├── amazon-video-thumbnail.png ├── analytics-logo.svg ├── buy-video-thumbnail.png ├── container-bg.gif ├── delete.png ├── drop_down_bg.png ├── duplicate.png ├── ebay-video-thumbnail.png ├── error.png ├── fam_book_open.png ├── goto_listing.png ├── grid-cal.gif ├── health_status │ ├── error-16-icon.png │ ├── notice-16-icon.png │ └── warning-16-icon.png ├── help.png ├── i_icon.png ├── i_logo.png ├── i_notice.gif ├── icon-enabled.png ├── icon_article.png ├── icon_idea.png ├── icon_promotion.png ├── img_echeck.png ├── invoice-by-amazon.png ├── log_statuses │ ├── error.png │ ├── info.png │ ├── success.png │ └── warning.png ├── logo-multi-channels.svg ├── next.gif ├── note_background.png ├── note_cell_bg.gif ├── pencil.png ├── play-video-thumbnail.png ├── preview_no_images.png ├── prime.png ├── repricing_disabled.png ├── repricing_enabled.png ├── repricing_mixed.png ├── rule_chooser_trigger.gif ├── rule_component_add.gif ├── rule_component_apply.gif ├── rule_component_remove.gif ├── search.gif ├── search_statuses │ ├── error.png │ ├── list.png │ ├── processing.gif │ ├── search.png │ └── unassign.png ├── settings.png ├── tool-tip-icon.png ├── view_amazon.png ├── warning.png └── wizard-note.png └── js ├── Action.js ├── Amazon ├── Account.js ├── Account │ ├── Create.js │ └── Edit │ │ └── Tabs │ │ └── InvoicesAndShipments.js ├── Listing │ ├── AllItems │ │ ├── Action.js │ │ └── Grid.js │ ├── AutoAction.js │ ├── Create │ │ ├── General.js │ │ ├── General │ │ │ └── MarketplaceSynchProgress.js │ │ └── Selling.js │ ├── Other │ │ └── Grid.js │ ├── Product │ │ ├── Add.js │ │ ├── Add │ │ │ ├── NewAsin │ │ │ │ └── Template │ │ │ │ │ └── ProductType │ │ │ │ │ └── Grid.js │ │ │ ├── SearchAsin │ │ │ │ └── Grid.js │ │ │ └── SourceMode │ │ │ │ └── Category │ │ │ │ └── Summary │ │ │ │ └── Grid.js │ │ ├── Repricing │ │ │ └── Price.js │ │ ├── Search.js │ │ ├── Template │ │ │ ├── ProductTaxCode.js │ │ │ ├── ProductType.js │ │ │ └── Shipping.js │ │ ├── Variation.js │ │ └── Variation │ │ │ ├── Manage.js │ │ │ └── Manage │ │ │ └── Tabs │ │ │ └── Variations │ │ │ └── Grid.js │ ├── Settings.js │ ├── Transferring.js │ └── View │ │ ├── Action.js │ │ ├── Fulfillment.js │ │ └── Grid.js ├── Mapping.js ├── Marketplace │ └── Sync.js ├── Order.js ├── Order │ └── MerchantFulfillment.js ├── ProductType │ └── Validator │ │ ├── Grid.js │ │ └── Popup.js ├── Repricer.js ├── Settings │ └── Main.js ├── ShippingMap │ └── ShippingMap.js └── Template │ ├── Edit.js │ ├── ProductTaxCode.js │ ├── ProductType.js │ ├── ProductType │ ├── Content.js │ ├── Finder.js │ ├── Search.js │ └── Tabs.js │ ├── SellingFormat.js │ ├── Shipping.js │ └── Synchronization.js ├── Attribute.js ├── ChartJs ├── Bar.js └── Doughnut.js ├── Common.js ├── Configuration └── Components.js ├── ControlPanel.js ├── ControlPanel ├── Database │ └── Grid.js └── Inspection.js ├── Dashboard ├── ListingProductIssues │ └── Table.js └── Sales │ └── DateSwitcher.js ├── Developers.js ├── Ebay ├── Account.js ├── Account │ └── Grid.js ├── Category │ ├── Grid.js │ └── Specific │ │ └── Validation │ │ ├── Grid.js │ │ └── Popup.js ├── Configuration │ ├── Account │ │ └── ListingOther.js │ └── General.js ├── Listing │ ├── AllItems │ │ ├── Action.js │ │ └── Grid.js │ ├── AutoAction.js │ ├── Category.js │ ├── Create │ │ ├── General.js │ │ └── General │ │ │ └── MarketplaceSynchProgress.js │ ├── EditCompatibilityMode.js │ ├── Grid.js │ ├── Moving.js │ ├── Other │ │ └── Grid.js │ ├── Preview.js │ ├── Product │ │ ├── Add.js │ │ ├── Add │ │ │ └── Category │ │ │ │ └── Summary │ │ │ │ └── Grid.js │ │ ├── Category │ │ │ └── Settings │ │ │ │ ├── Grid.js │ │ │ │ ├── Mode.js │ │ │ │ ├── Mode │ │ │ │ ├── Category │ │ │ │ │ └── Grid.js │ │ │ │ └── Product │ │ │ │ │ ├── Grid.js │ │ │ │ │ └── SuggestedSearch.js │ │ │ │ └── Specific │ │ │ │ └── Grid.js │ │ └── Settings.js │ ├── Removing.js │ ├── Settings.js │ ├── Template │ │ └── Switcher.js │ ├── Transferring.js │ ├── VariationProductManage.js │ ├── VariationProductManageVariationsGrid.js │ ├── View │ │ ├── Action.js │ │ ├── Ebay │ │ │ ├── Bids.js │ │ │ └── Grid.js │ │ ├── Grid.js │ │ └── Settings │ │ │ ├── Grid.js │ │ │ ├── Motors.js │ │ │ └── Motors │ │ │ ├── Add │ │ │ ├── Filter │ │ │ │ └── Grid.js │ │ │ ├── Group │ │ │ │ └── Grid.js │ │ │ └── Item │ │ │ │ └── Grid.js │ │ │ └── View │ │ │ ├── Filter │ │ │ └── Grid.js │ │ │ ├── Group │ │ │ └── Grid.js │ │ │ └── Item │ │ │ └── Grid.js │ └── Wizard │ │ └── Product │ │ ├── Add.js │ │ └── Category │ │ └── Settings │ │ ├── Grid.js │ │ └── Product │ │ └── Mode │ │ └── Grid.js ├── Marketplace │ └── SynchProgress.js ├── PromotedListing │ └── Campaign.js ├── Promotion.js ├── Settings.js ├── Settings │ ├── Main.js │ └── Motors.js └── Template │ ├── Category │ ├── Chooser.js │ ├── Chooser │ │ └── Tabs │ │ │ └── Browse.js │ └── Specifics.js │ ├── Description.js │ ├── Description │ └── ComplianceDocuments.js │ ├── Edit │ └── Form.js │ ├── ReturnPolicy.js │ ├── SellingFormat.js │ ├── Shipping.js │ ├── Shipping │ └── ExcludedLocations.js │ └── Synchronization.js ├── General ├── Common.js ├── Php.js ├── PhpFunctions.js ├── Translator.js └── Url.js ├── Grid.js ├── HealthStatus.js ├── Listing ├── Action │ └── Processor.js ├── AutoAction.js ├── Category │ └── Tree.js ├── EditStoreView.js ├── EditTitle.js ├── Mapping.js ├── Moving.js ├── Other.js ├── Other │ ├── AutoMapping.js │ ├── CreateProduct.js │ ├── Grid.js │ ├── Removing.js │ └── Unmapping.js ├── Product │ ├── AdvancedFilter.js │ ├── AdvancedFilter │ │ ├── Creating.js │ │ ├── Select.js │ │ └── Updating.js │ └── Grid.js └── View │ ├── Action.js │ └── Grid.js ├── Log.js ├── Log └── View.js ├── M2ePro.js ├── Magento └── Product │ └── Grid.js ├── Marketplace.js ├── Order.js ├── Order ├── Debug.js ├── Edit │ ├── Item.js │ └── ShippingAddress.js ├── Note.js └── UploadByUser.js ├── Plugin ├── Alert.js ├── AreaWrapper.js ├── BlockNotice.js ├── Confirm.js ├── Fieldset.js ├── Magento │ ├── Attribute │ │ └── Button.js │ └── AttributeCreator.js ├── Messages.js ├── ProgressBar.js ├── Prototype │ └── Event.Simulate.js ├── RandomColor.js ├── Storage.js └── Validator.js ├── RequirementsPopup.js ├── Settings.js ├── Settings ├── License.js └── LogClearing.js ├── SynchProgress.js ├── Synchronization.js ├── Template ├── Edit.js └── Helper │ └── PriceChange.js ├── TemplateManager.js ├── Walmart ├── Account.js ├── Account │ └── AddButton.js ├── Listing │ ├── AutoAction.js │ ├── Create │ │ ├── General.js │ │ └── General │ │ │ └── MarketplaceSynchProgress.js │ ├── Other │ │ └── Grid.js │ ├── Product │ │ ├── Add.js │ │ ├── Add │ │ │ ├── ProductType │ │ │ │ └── Grid.js │ │ │ └── SourceMode │ │ │ │ └── Category │ │ │ │ └── Summary │ │ │ │ └── Grid.js │ │ ├── EditChannelData.js │ │ ├── ProductType.js │ │ ├── Variation.js │ │ └── Variation │ │ │ ├── Manage.js │ │ │ └── Manage │ │ │ └── Tabs │ │ │ └── Variations │ │ │ └── Grid.js │ ├── Settings.js │ └── View │ │ ├── Action.js │ │ └── Grid.js ├── Marketplace.js ├── Marketplace │ └── WithProductType │ │ ├── Sync.js │ │ └── SyncProgress.js ├── ProductType.js ├── ProductType │ ├── Content.js │ ├── Finder.js │ ├── Search.js │ └── Tabs.js ├── Settings │ └── Main.js └── Template │ ├── Description.js │ ├── Edit.js │ ├── SellingFormat.js │ ├── SellingFormat │ └── RepricerStrategy.js │ └── Synchronization.js ├── Wizard.js └── Wizard ├── AmazonMigrationToProductTypes.js ├── InstallationAmazon.js ├── InstallationEbay.js ├── InstallationWalmart.js ├── MigrationFromMagento1.js ├── MigrationToInnodb.js └── MigrationToInnodb └── MarketplaceSynchProgress.js /Api/Amazon/OrderManagementInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Api/Amazon/OrderManagementInterface.php -------------------------------------------------------------------------------- /Api/DataObject.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Api/DataObject.php -------------------------------------------------------------------------------- /Api/Ebay/Data/Order/BuyerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Api/Ebay/Data/Order/BuyerInterface.php -------------------------------------------------------------------------------- /Api/Ebay/Data/OrderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Api/Ebay/Data/OrderInterface.php -------------------------------------------------------------------------------- /Api/Ebay/OrderManagementInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Api/Ebay/OrderManagementInterface.php -------------------------------------------------------------------------------- /Api/Ebay/OrderRepositoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Api/Ebay/OrderRepositoryInterface.php -------------------------------------------------------------------------------- /Api/Ebay/OrderSearchCriteriaInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Api/Ebay/OrderSearchCriteriaInterface.php -------------------------------------------------------------------------------- /Api/Ebay/OrderSearchResultInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Api/Ebay/OrderSearchResultInterface.php -------------------------------------------------------------------------------- /Api/Exception/ApiException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Api/Exception/ApiException.php -------------------------------------------------------------------------------- /Api/Exception/NotFoundException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Api/Exception/NotFoundException.php -------------------------------------------------------------------------------- /Block/Adminhtml/Account/Grid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Block/Adminhtml/Account/Grid.php -------------------------------------------------------------------------------- /Block/Adminhtml/Account/Switcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Block/Adminhtml/Account/Switcher.php -------------------------------------------------------------------------------- /Block/Adminhtml/Amazon/Account.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Block/Adminhtml/Amazon/Account.php -------------------------------------------------------------------------------- /Block/Adminhtml/Amazon/Account/Create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Block/Adminhtml/Amazon/Account/Create.php -------------------------------------------------------------------------------- /Block/Adminhtml/Amazon/Account/Edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Block/Adminhtml/Amazon/Account/Edit.php -------------------------------------------------------------------------------- /Block/Adminhtml/Amazon/Account/Grid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Block/Adminhtml/Amazon/Account/Grid.php -------------------------------------------------------------------------------- /Block/Adminhtml/Amazon/Listing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Block/Adminhtml/Amazon/Listing.php -------------------------------------------------------------------------------- /Block/Adminhtml/Amazon/Listing/Edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Block/Adminhtml/Amazon/Listing/Edit.php -------------------------------------------------------------------------------- /Block/Adminhtml/Amazon/Listing/Tabs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Block/Adminhtml/Amazon/Listing/Tabs.php -------------------------------------------------------------------------------- /Block/Adminhtml/Amazon/Listing/View.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Block/Adminhtml/Amazon/Listing/View.php -------------------------------------------------------------------------------- /Block/Adminhtml/Amazon/Log/Order.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Block/Adminhtml/Amazon/Log/Order.php -------------------------------------------------------------------------------- /Block/Adminhtml/Amazon/Log/Order/Grid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Block/Adminhtml/Amazon/Log/Order/Grid.php -------------------------------------------------------------------------------- /Block/Adminhtml/Amazon/Mapping.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Block/Adminhtml/Amazon/Mapping.php -------------------------------------------------------------------------------- /Block/Adminhtml/Amazon/Mapping/Tabs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Block/Adminhtml/Amazon/Mapping/Tabs.php -------------------------------------------------------------------------------- /Block/Adminhtml/Amazon/Order.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Block/Adminhtml/Amazon/Order.php -------------------------------------------------------------------------------- /Block/Adminhtml/Amazon/Order/Grid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Block/Adminhtml/Amazon/Order/Grid.php -------------------------------------------------------------------------------- /Block/Adminhtml/Amazon/Order/View.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Block/Adminhtml/Amazon/Order/View.php -------------------------------------------------------------------------------- /Block/Adminhtml/Amazon/Repricer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Block/Adminhtml/Amazon/Repricer.php -------------------------------------------------------------------------------- /Block/Adminhtml/Amazon/Repricer/Edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Block/Adminhtml/Amazon/Repricer/Edit.php -------------------------------------------------------------------------------- /Block/Adminhtml/Amazon/Repricer/Grid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Block/Adminhtml/Amazon/Repricer/Grid.php -------------------------------------------------------------------------------- /Block/Adminhtml/Amazon/Settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Block/Adminhtml/Amazon/Settings.php -------------------------------------------------------------------------------- /Block/Adminhtml/Amazon/Settings/Tabs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Block/Adminhtml/Amazon/Settings/Tabs.php -------------------------------------------------------------------------------- /Block/Adminhtml/Amazon/Template.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Block/Adminhtml/Amazon/Template.php -------------------------------------------------------------------------------- /Block/Adminhtml/Amazon/Template/Edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Block/Adminhtml/Amazon/Template/Edit.php -------------------------------------------------------------------------------- /Block/Adminhtml/Amazon/Template/Grid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Block/Adminhtml/Amazon/Template/Grid.php -------------------------------------------------------------------------------- /Block/Adminhtml/Category/Grid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Block/Adminhtml/Category/Grid.php -------------------------------------------------------------------------------- /Block/Adminhtml/Component/Switcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Block/Adminhtml/Component/Switcher.php -------------------------------------------------------------------------------- /Block/Adminhtml/ControlPanel/Tabs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Block/Adminhtml/ControlPanel/Tabs.php -------------------------------------------------------------------------------- /Block/Adminhtml/Dashboard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Block/Adminhtml/Dashboard.php -------------------------------------------------------------------------------- /Block/Adminhtml/Dashboard/Errors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Block/Adminhtml/Dashboard/Errors.php -------------------------------------------------------------------------------- /Block/Adminhtml/Dashboard/PageActions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Block/Adminhtml/Dashboard/PageActions.php -------------------------------------------------------------------------------- /Block/Adminhtml/Dashboard/Products.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Block/Adminhtml/Dashboard/Products.php -------------------------------------------------------------------------------- /Block/Adminhtml/Dashboard/Sales.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Block/Adminhtml/Dashboard/Sales.php -------------------------------------------------------------------------------- /Block/Adminhtml/Dashboard/Sales/Tabs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Block/Adminhtml/Dashboard/Sales/Tabs.php -------------------------------------------------------------------------------- /Block/Adminhtml/Dashboard/Shipments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Block/Adminhtml/Dashboard/Shipments.php -------------------------------------------------------------------------------- /Block/Adminhtml/DashboardFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Block/Adminhtml/DashboardFactory.php -------------------------------------------------------------------------------- /Block/Adminhtml/Developers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Block/Adminhtml/Developers.php -------------------------------------------------------------------------------- /Block/Adminhtml/Ebay/Account.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Block/Adminhtml/Ebay/Account.php -------------------------------------------------------------------------------- /Block/Adminhtml/Ebay/Account/Edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Block/Adminhtml/Ebay/Account/Edit.php -------------------------------------------------------------------------------- /Block/Adminhtml/Ebay/Account/Feedback.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Block/Adminhtml/Ebay/Account/Feedback.php -------------------------------------------------------------------------------- /Block/Adminhtml/Ebay/Account/Grid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Block/Adminhtml/Ebay/Account/Grid.php -------------------------------------------------------------------------------- /Block/Adminhtml/Ebay/Category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Block/Adminhtml/Ebay/Category.php -------------------------------------------------------------------------------- /Block/Adminhtml/Ebay/Category/Grid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Block/Adminhtml/Ebay/Category/Grid.php -------------------------------------------------------------------------------- /Block/Adminhtml/Ebay/Category/View.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Block/Adminhtml/Ebay/Category/View.php -------------------------------------------------------------------------------- /Block/Adminhtml/Ebay/Listing/AllItems.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Block/Adminhtml/Ebay/Listing/AllItems.php -------------------------------------------------------------------------------- /Block/Adminhtml/Ebay/Listing/Preview.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Block/Adminhtml/Ebay/Listing/Preview.php -------------------------------------------------------------------------------- /Block/Adminhtml/Ebay/Listing/Tabs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Block/Adminhtml/Ebay/Listing/Tabs.php -------------------------------------------------------------------------------- /Block/Adminhtml/Ebay/Listing/View.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Block/Adminhtml/Ebay/Listing/View.php -------------------------------------------------------------------------------- /Block/Adminhtml/Ebay/Log/Order.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Block/Adminhtml/Ebay/Log/Order.php -------------------------------------------------------------------------------- /Block/Adminhtml/Ebay/Log/Order/Grid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Block/Adminhtml/Ebay/Log/Order/Grid.php -------------------------------------------------------------------------------- /Block/Adminhtml/Ebay/Marketplace.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Block/Adminhtml/Ebay/Marketplace.php -------------------------------------------------------------------------------- /Block/Adminhtml/Ebay/Order.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Block/Adminhtml/Ebay/Order.php -------------------------------------------------------------------------------- /Block/Adminhtml/Ebay/Order/Grid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Block/Adminhtml/Ebay/Order/Grid.php -------------------------------------------------------------------------------- /Block/Adminhtml/Ebay/Order/View.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Block/Adminhtml/Ebay/Order/View.php -------------------------------------------------------------------------------- /Block/Adminhtml/Ebay/Order/View/Form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Block/Adminhtml/Ebay/Order/View/Form.php -------------------------------------------------------------------------------- /Block/Adminhtml/Ebay/Order/View/Item.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Block/Adminhtml/Ebay/Order/View/Item.php -------------------------------------------------------------------------------- /Block/Adminhtml/Ebay/Promotion/Grid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Block/Adminhtml/Ebay/Promotion/Grid.php -------------------------------------------------------------------------------- /Block/Adminhtml/Ebay/Settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Block/Adminhtml/Ebay/Settings.php -------------------------------------------------------------------------------- /Block/Adminhtml/Ebay/Settings/Tabs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Block/Adminhtml/Ebay/Settings/Tabs.php -------------------------------------------------------------------------------- /Block/Adminhtml/Ebay/Template.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Block/Adminhtml/Ebay/Template.php -------------------------------------------------------------------------------- /Block/Adminhtml/Ebay/Template/Edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Block/Adminhtml/Ebay/Template/Edit.php -------------------------------------------------------------------------------- /Block/Adminhtml/Ebay/Template/Grid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Block/Adminhtml/Ebay/Template/Grid.php -------------------------------------------------------------------------------- /Block/Adminhtml/General.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Block/Adminhtml/General.php -------------------------------------------------------------------------------- /Block/Adminhtml/HealthStatus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Block/Adminhtml/HealthStatus.php -------------------------------------------------------------------------------- /Block/Adminhtml/HealthStatus/Tabs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Block/Adminhtml/HealthStatus/Tabs.php -------------------------------------------------------------------------------- /Block/Adminhtml/HelpBlock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Block/Adminhtml/HelpBlock.php -------------------------------------------------------------------------------- /Block/Adminhtml/Item/Grid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Block/Adminhtml/Item/Grid.php -------------------------------------------------------------------------------- /Block/Adminhtml/Listing/Category/Tree.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Block/Adminhtml/Listing/Category/Tree.php -------------------------------------------------------------------------------- /Block/Adminhtml/Listing/Edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Block/Adminhtml/Listing/Edit.php -------------------------------------------------------------------------------- /Block/Adminhtml/Listing/Edit/Form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Block/Adminhtml/Listing/Edit/Form.php -------------------------------------------------------------------------------- /Block/Adminhtml/Listing/Grid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Block/Adminhtml/Listing/Grid.php -------------------------------------------------------------------------------- /Block/Adminhtml/Listing/Mapping/Grid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Block/Adminhtml/Listing/Mapping/Grid.php -------------------------------------------------------------------------------- /Block/Adminhtml/Listing/Mapping/View.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Block/Adminhtml/Listing/Mapping/View.php -------------------------------------------------------------------------------- /Block/Adminhtml/Listing/Moving/Grid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Block/Adminhtml/Listing/Moving/Grid.php -------------------------------------------------------------------------------- /Block/Adminhtml/Listing/Product/Rule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Block/Adminhtml/Listing/Product/Rule.php -------------------------------------------------------------------------------- /Block/Adminhtml/Listing/Switcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Block/Adminhtml/Listing/Switcher.php -------------------------------------------------------------------------------- /Block/Adminhtml/Listing/TypeSwitcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Block/Adminhtml/Listing/TypeSwitcher.php -------------------------------------------------------------------------------- /Block/Adminhtml/Listing/View/Grid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Block/Adminhtml/Listing/View/Grid.php -------------------------------------------------------------------------------- /Block/Adminhtml/Listing/View/Header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Block/Adminhtml/Listing/View/Header.php -------------------------------------------------------------------------------- /Block/Adminhtml/Listing/View/Switcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Block/Adminhtml/Listing/View/Switcher.php -------------------------------------------------------------------------------- /Block/Adminhtml/Log/AbstractGrid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Block/Adminhtml/Log/AbstractGrid.php -------------------------------------------------------------------------------- /Block/Adminhtml/Log/Grid/LastActions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Block/Adminhtml/Log/Grid/LastActions.php -------------------------------------------------------------------------------- /Block/Adminhtml/Magento/AbstractBlock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Block/Adminhtml/Magento/AbstractBlock.php -------------------------------------------------------------------------------- /Block/Adminhtml/Magento/Button.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Block/Adminhtml/Magento/Button.php -------------------------------------------------------------------------------- /Block/Adminhtml/Magento/Context/Block.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Block/Adminhtml/Magento/Context/Block.php -------------------------------------------------------------------------------- /Block/Adminhtml/Magento/Payment/Info.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Block/Adminhtml/Magento/Payment/Info.php -------------------------------------------------------------------------------- /Block/Adminhtml/Magento/Product/Grid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Block/Adminhtml/Magento/Product/Grid.php -------------------------------------------------------------------------------- /Block/Adminhtml/Magento/Product/Rule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Block/Adminhtml/Magento/Product/Rule.php -------------------------------------------------------------------------------- /Block/Adminhtml/Marketplace/Switcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Block/Adminhtml/Marketplace/Switcher.php -------------------------------------------------------------------------------- /Block/Adminhtml/Messages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Block/Adminhtml/Messages.php -------------------------------------------------------------------------------- /Block/Adminhtml/MsiNotificationPopup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Block/Adminhtml/MsiNotificationPopup.php -------------------------------------------------------------------------------- /Block/Adminhtml/Order/Debug.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Block/Adminhtml/Order/Debug.php -------------------------------------------------------------------------------- /Block/Adminhtml/Order/Item/Edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Block/Adminhtml/Order/Item/Edit.php -------------------------------------------------------------------------------- /Block/Adminhtml/Order/Note/Grid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Block/Adminhtml/Order/Note/Grid.php -------------------------------------------------------------------------------- /Block/Adminhtml/Order/Note/Popup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Block/Adminhtml/Order/Note/Popup.php -------------------------------------------------------------------------------- /Block/Adminhtml/Order/View/Log/Grid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Block/Adminhtml/Order/View/Log/Grid.php -------------------------------------------------------------------------------- /Block/Adminhtml/PageHelpLink.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Block/Adminhtml/PageHelpLink.php -------------------------------------------------------------------------------- /Block/Adminhtml/Renderer/Description.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Block/Adminhtml/Renderer/Description.php -------------------------------------------------------------------------------- /Block/Adminhtml/RequirementsPopup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Block/Adminhtml/RequirementsPopup.php -------------------------------------------------------------------------------- /Block/Adminhtml/Settings/Tabs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Block/Adminhtml/Settings/Tabs.php -------------------------------------------------------------------------------- /Block/Adminhtml/StoreSwitcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Block/Adminhtml/StoreSwitcher.php -------------------------------------------------------------------------------- /Block/Adminhtml/Support.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Block/Adminhtml/Support.php -------------------------------------------------------------------------------- /Block/Adminhtml/Switcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Block/Adminhtml/Switcher.php -------------------------------------------------------------------------------- /Block/Adminhtml/Synchronization/Log.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Block/Adminhtml/Synchronization/Log.php -------------------------------------------------------------------------------- /Block/Adminhtml/Template/Messages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Block/Adminhtml/Template/Messages.php -------------------------------------------------------------------------------- /Block/Adminhtml/Traits/BlockTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Block/Adminhtml/Traits/BlockTrait.php -------------------------------------------------------------------------------- /Block/Adminhtml/Traits/RendererTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Block/Adminhtml/Traits/RendererTrait.php -------------------------------------------------------------------------------- /Block/Adminhtml/Walmart/Account.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Block/Adminhtml/Walmart/Account.php -------------------------------------------------------------------------------- /Block/Adminhtml/Walmart/Account/Edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Block/Adminhtml/Walmart/Account/Edit.php -------------------------------------------------------------------------------- /Block/Adminhtml/Walmart/Account/Grid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Block/Adminhtml/Walmart/Account/Grid.php -------------------------------------------------------------------------------- /Block/Adminhtml/Walmart/Listing/Edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Block/Adminhtml/Walmart/Listing/Edit.php -------------------------------------------------------------------------------- /Block/Adminhtml/Walmart/Listing/Tabs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Block/Adminhtml/Walmart/Listing/Tabs.php -------------------------------------------------------------------------------- /Block/Adminhtml/Walmart/Listing/View.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Block/Adminhtml/Walmart/Listing/View.php -------------------------------------------------------------------------------- /Block/Adminhtml/Walmart/Log/Order.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Block/Adminhtml/Walmart/Log/Order.php -------------------------------------------------------------------------------- /Block/Adminhtml/Walmart/Marketplace.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Block/Adminhtml/Walmart/Marketplace.php -------------------------------------------------------------------------------- /Block/Adminhtml/Walmart/Order.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Block/Adminhtml/Walmart/Order.php -------------------------------------------------------------------------------- /Block/Adminhtml/Walmart/Order/Grid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Block/Adminhtml/Walmart/Order/Grid.php -------------------------------------------------------------------------------- /Block/Adminhtml/Walmart/Order/View.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Block/Adminhtml/Walmart/Order/View.php -------------------------------------------------------------------------------- /Block/Adminhtml/Walmart/ProductType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Block/Adminhtml/Walmart/ProductType.php -------------------------------------------------------------------------------- /Block/Adminhtml/Walmart/Settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Block/Adminhtml/Walmart/Settings.php -------------------------------------------------------------------------------- /Block/Adminhtml/Walmart/Settings/Tabs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Block/Adminhtml/Walmart/Settings/Tabs.php -------------------------------------------------------------------------------- /Block/Adminhtml/Walmart/Template.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Block/Adminhtml/Walmart/Template.php -------------------------------------------------------------------------------- /Block/Adminhtml/Walmart/Template/Edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Block/Adminhtml/Walmart/Template/Edit.php -------------------------------------------------------------------------------- /Block/Adminhtml/Walmart/Template/Grid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Block/Adminhtml/Walmart/Template/Grid.php -------------------------------------------------------------------------------- /Block/Adminhtml/Widget/Breadcrumb.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Block/Adminhtml/Widget/Breadcrumb.php -------------------------------------------------------------------------------- /Block/Adminhtml/Widget/Dialog/Confirm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Block/Adminhtml/Widget/Dialog/Confirm.php -------------------------------------------------------------------------------- /Block/Adminhtml/Widget/Info.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Block/Adminhtml/Widget/Info.php -------------------------------------------------------------------------------- /Block/Adminhtml/Wizard/AbstractWizard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Block/Adminhtml/Wizard/AbstractWizard.php -------------------------------------------------------------------------------- /Block/Adminhtml/Wizard/Congratulation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Block/Adminhtml/Wizard/Congratulation.php -------------------------------------------------------------------------------- /Block/Adminhtml/Wizard/Installation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Block/Adminhtml/Wizard/Installation.php -------------------------------------------------------------------------------- /Controller/Adminhtml/Amazon/Account.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Controller/Adminhtml/Amazon/Account.php -------------------------------------------------------------------------------- /Controller/Adminhtml/Amazon/Listing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Controller/Adminhtml/Amazon/Listing.php -------------------------------------------------------------------------------- /Controller/Adminhtml/Amazon/Log/Order.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Controller/Adminhtml/Amazon/Log/Order.php -------------------------------------------------------------------------------- /Controller/Adminhtml/Amazon/Main.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Controller/Adminhtml/Amazon/Main.php -------------------------------------------------------------------------------- /Controller/Adminhtml/Amazon/Mapping.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Controller/Adminhtml/Amazon/Mapping.php -------------------------------------------------------------------------------- /Controller/Adminhtml/Amazon/Order.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Controller/Adminhtml/Amazon/Order.php -------------------------------------------------------------------------------- /Controller/Adminhtml/Amazon/Repricer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Controller/Adminhtml/Amazon/Repricer.php -------------------------------------------------------------------------------- /Controller/Adminhtml/Amazon/Settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Controller/Adminhtml/Amazon/Settings.php -------------------------------------------------------------------------------- /Controller/Adminhtml/Amazon/Simple.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Controller/Adminhtml/Amazon/Simple.php -------------------------------------------------------------------------------- /Controller/Adminhtml/Amazon/Template.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Controller/Adminhtml/Amazon/Template.php -------------------------------------------------------------------------------- /Controller/Adminhtml/Amazon/Wizard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Controller/Adminhtml/Amazon/Wizard.php -------------------------------------------------------------------------------- /Controller/Adminhtml/Base.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Controller/Adminhtml/Base.php -------------------------------------------------------------------------------- /Controller/Adminhtml/Context.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Controller/Adminhtml/Context.php -------------------------------------------------------------------------------- /Controller/Adminhtml/Ebay/Account.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Controller/Adminhtml/Ebay/Account.php -------------------------------------------------------------------------------- /Controller/Adminhtml/Ebay/Category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Controller/Adminhtml/Ebay/Category.php -------------------------------------------------------------------------------- /Controller/Adminhtml/Ebay/Listing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Controller/Adminhtml/Ebay/Listing.php -------------------------------------------------------------------------------- /Controller/Adminhtml/Ebay/Log.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Controller/Adminhtml/Ebay/Log.php -------------------------------------------------------------------------------- /Controller/Adminhtml/Ebay/Log/Listing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Controller/Adminhtml/Ebay/Log/Listing.php -------------------------------------------------------------------------------- /Controller/Adminhtml/Ebay/Log/Order.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Controller/Adminhtml/Ebay/Log/Order.php -------------------------------------------------------------------------------- /Controller/Adminhtml/Ebay/Main.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Controller/Adminhtml/Ebay/Main.php -------------------------------------------------------------------------------- /Controller/Adminhtml/Ebay/Marketplace.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Controller/Adminhtml/Ebay/Marketplace.php -------------------------------------------------------------------------------- /Controller/Adminhtml/Ebay/Order.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Controller/Adminhtml/Ebay/Order.php -------------------------------------------------------------------------------- /Controller/Adminhtml/Ebay/Order/Grid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Controller/Adminhtml/Ebay/Order/Grid.php -------------------------------------------------------------------------------- /Controller/Adminhtml/Ebay/Order/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Controller/Adminhtml/Ebay/Order/Index.php -------------------------------------------------------------------------------- /Controller/Adminhtml/Ebay/Order/View.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Controller/Adminhtml/Ebay/Order/View.php -------------------------------------------------------------------------------- /Controller/Adminhtml/Ebay/Settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Controller/Adminhtml/Ebay/Settings.php -------------------------------------------------------------------------------- /Controller/Adminhtml/Ebay/Simple.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Controller/Adminhtml/Ebay/Simple.php -------------------------------------------------------------------------------- /Controller/Adminhtml/Ebay/Template.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Controller/Adminhtml/Ebay/Template.php -------------------------------------------------------------------------------- /Controller/Adminhtml/Ebay/Wizard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Controller/Adminhtml/Ebay/Wizard.php -------------------------------------------------------------------------------- /Controller/Adminhtml/General.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Controller/Adminhtml/General.php -------------------------------------------------------------------------------- /Controller/Adminhtml/HealthStatus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Controller/Adminhtml/HealthStatus.php -------------------------------------------------------------------------------- /Controller/Adminhtml/Listing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Controller/Adminhtml/Listing.php -------------------------------------------------------------------------------- /Controller/Adminhtml/Listing/ClearLog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Controller/Adminhtml/Listing/ClearLog.php -------------------------------------------------------------------------------- /Controller/Adminhtml/Listing/Edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Controller/Adminhtml/Listing/Edit.php -------------------------------------------------------------------------------- /Controller/Adminhtml/Main.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Controller/Adminhtml/Main.php -------------------------------------------------------------------------------- /Controller/Adminhtml/Order.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Controller/Adminhtml/Order.php -------------------------------------------------------------------------------- /Controller/Adminhtml/Order/Delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Controller/Adminhtml/Order/Delete.php -------------------------------------------------------------------------------- /Controller/Adminhtml/Order/DeleteNote.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Controller/Adminhtml/Order/DeleteNote.php -------------------------------------------------------------------------------- /Controller/Adminhtml/Order/EditItem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Controller/Adminhtml/Order/EditItem.php -------------------------------------------------------------------------------- /Controller/Adminhtml/Order/NoteGrid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Controller/Adminhtml/Order/NoteGrid.php -------------------------------------------------------------------------------- /Controller/Adminhtml/Order/SaveNote.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Controller/Adminhtml/Order/SaveNote.php -------------------------------------------------------------------------------- /Controller/Adminhtml/Support.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Controller/Adminhtml/Support.php -------------------------------------------------------------------------------- /Controller/Adminhtml/Support/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Controller/Adminhtml/Support/Index.php -------------------------------------------------------------------------------- /Controller/Adminhtml/Walmart/Account.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Controller/Adminhtml/Walmart/Account.php -------------------------------------------------------------------------------- /Controller/Adminhtml/Walmart/Listing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Controller/Adminhtml/Walmart/Listing.php -------------------------------------------------------------------------------- /Controller/Adminhtml/Walmart/Main.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Controller/Adminhtml/Walmart/Main.php -------------------------------------------------------------------------------- /Controller/Adminhtml/Walmart/Order.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Controller/Adminhtml/Walmart/Order.php -------------------------------------------------------------------------------- /Controller/Adminhtml/Walmart/Settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Controller/Adminhtml/Walmart/Settings.php -------------------------------------------------------------------------------- /Controller/Adminhtml/Walmart/Template.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Controller/Adminhtml/Walmart/Template.php -------------------------------------------------------------------------------- /Controller/Adminhtml/Walmart/Wizard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Controller/Adminhtml/Walmart/Wizard.php -------------------------------------------------------------------------------- /Controller/Adminhtml/Wizard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Controller/Adminhtml/Wizard.php -------------------------------------------------------------------------------- /Controller/Cron/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Controller/Cron/Index.php -------------------------------------------------------------------------------- /Controller/Cron/Reset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Controller/Cron/Reset.php -------------------------------------------------------------------------------- /Controller/Cron/Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Controller/Cron/Test.php -------------------------------------------------------------------------------- /Helper/Analytics.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Helper/Analytics.php -------------------------------------------------------------------------------- /Helper/Client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Helper/Client.php -------------------------------------------------------------------------------- /Helper/Client/Cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Helper/Client/Cache.php -------------------------------------------------------------------------------- /Helper/Component.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Helper/Component.php -------------------------------------------------------------------------------- /Helper/Component/Amazon.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Helper/Component/Amazon.php -------------------------------------------------------------------------------- /Helper/Component/Amazon/Configuration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Helper/Component/Amazon/Configuration.php -------------------------------------------------------------------------------- /Helper/Component/Amazon/ProductType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Helper/Component/Amazon/ProductType.php -------------------------------------------------------------------------------- /Helper/Component/Amazon/Repricing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Helper/Component/Amazon/Repricing.php -------------------------------------------------------------------------------- /Helper/Component/Amazon/Variation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Helper/Component/Amazon/Variation.php -------------------------------------------------------------------------------- /Helper/Component/Amazon/Vocabulary.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Helper/Component/Amazon/Vocabulary.php -------------------------------------------------------------------------------- /Helper/Component/Ebay.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Helper/Component/Ebay.php -------------------------------------------------------------------------------- /Helper/Component/Ebay/Category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Helper/Component/Ebay/Category.php -------------------------------------------------------------------------------- /Helper/Component/Ebay/Motors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Helper/Component/Ebay/Motors.php -------------------------------------------------------------------------------- /Helper/Component/Walmart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Helper/Component/Walmart.php -------------------------------------------------------------------------------- /Helper/Component/Walmart/Variation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Helper/Component/Walmart/Variation.php -------------------------------------------------------------------------------- /Helper/Data.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Helper/Data.php -------------------------------------------------------------------------------- /Helper/Data/Cache/BaseInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Helper/Data/Cache/BaseInterface.php -------------------------------------------------------------------------------- /Helper/Data/Cache/Permanent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Helper/Data/Cache/Permanent.php -------------------------------------------------------------------------------- /Helper/Data/Cache/Runtime.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Helper/Data/Cache/Runtime.php -------------------------------------------------------------------------------- /Helper/Data/FileExport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Helper/Data/FileExport.php -------------------------------------------------------------------------------- /Helper/Data/GlobalData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Helper/Data/GlobalData.php -------------------------------------------------------------------------------- /Helper/Data/Product/Identifier.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Helper/Data/Product/Identifier.php -------------------------------------------------------------------------------- /Helper/Data/Session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Helper/Data/Session.php -------------------------------------------------------------------------------- /Helper/Date.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Helper/Date.php -------------------------------------------------------------------------------- /Helper/Factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Helper/Factory.php -------------------------------------------------------------------------------- /Helper/Json.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Helper/Json.php -------------------------------------------------------------------------------- /Helper/Magento.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Helper/Magento.php -------------------------------------------------------------------------------- /Helper/Magento/AbstractHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Helper/Magento/AbstractHelper.php -------------------------------------------------------------------------------- /Helper/Magento/Admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Helper/Magento/Admin.php -------------------------------------------------------------------------------- /Helper/Magento/Attribute.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Helper/Magento/Attribute.php -------------------------------------------------------------------------------- /Helper/Magento/AttributeSet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Helper/Magento/AttributeSet.php -------------------------------------------------------------------------------- /Helper/Magento/Category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Helper/Magento/Category.php -------------------------------------------------------------------------------- /Helper/Magento/Plugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Helper/Magento/Plugin.php -------------------------------------------------------------------------------- /Helper/Magento/Product.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Helper/Magento/Product.php -------------------------------------------------------------------------------- /Helper/Magento/Staging.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Helper/Magento/Staging.php -------------------------------------------------------------------------------- /Helper/Magento/Stock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Helper/Magento/Stock.php -------------------------------------------------------------------------------- /Helper/Magento/Store.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Helper/Magento/Store.php -------------------------------------------------------------------------------- /Helper/Magento/Store/Group.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Helper/Magento/Store/Group.php -------------------------------------------------------------------------------- /Helper/Magento/Store/View.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Helper/Magento/Store/View.php -------------------------------------------------------------------------------- /Helper/Magento/Store/Website.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Helper/Magento/Store/Website.php -------------------------------------------------------------------------------- /Helper/Module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Helper/Module.php -------------------------------------------------------------------------------- /Helper/Module/ChangeTracker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Helper/Module/ChangeTracker.php -------------------------------------------------------------------------------- /Helper/Module/Configuration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Helper/Module/Configuration.php -------------------------------------------------------------------------------- /Helper/Module/Cron.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Helper/Module/Cron.php -------------------------------------------------------------------------------- /Helper/Module/Database/Repair.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Helper/Module/Database/Repair.php -------------------------------------------------------------------------------- /Helper/Module/Database/Structure.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Helper/Module/Database/Structure.php -------------------------------------------------------------------------------- /Helper/Module/Database/Tables.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Helper/Module/Database/Tables.php -------------------------------------------------------------------------------- /Helper/Module/Debugger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Helper/Module/Debugger.php -------------------------------------------------------------------------------- /Helper/Module/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Helper/Module/Exception.php -------------------------------------------------------------------------------- /Helper/Module/License.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Helper/Module/License.php -------------------------------------------------------------------------------- /Helper/Module/Log.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Helper/Module/Log.php -------------------------------------------------------------------------------- /Helper/Module/Logger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Helper/Module/Logger.php -------------------------------------------------------------------------------- /Helper/Module/Maintenance.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Helper/Module/Maintenance.php -------------------------------------------------------------------------------- /Helper/Module/Renderer/Description.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Helper/Module/Renderer/Description.php -------------------------------------------------------------------------------- /Helper/Module/Support.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Helper/Module/Support.php -------------------------------------------------------------------------------- /Helper/Module/Translation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Helper/Module/Translation.php -------------------------------------------------------------------------------- /Helper/Module/Wizard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Helper/Module/Wizard.php -------------------------------------------------------------------------------- /Helper/Server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Helper/Server.php -------------------------------------------------------------------------------- /Helper/Server/Maintenance.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Helper/Server/Maintenance.php -------------------------------------------------------------------------------- /Helper/Server/Request.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Helper/Server/Request.php -------------------------------------------------------------------------------- /Helper/Url.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Helper/Url.php -------------------------------------------------------------------------------- /Helper/View.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Helper/View.php -------------------------------------------------------------------------------- /Helper/View/Amazon.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Helper/View/Amazon.php -------------------------------------------------------------------------------- /Helper/View/Amazon/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Helper/View/Amazon/Controller.php -------------------------------------------------------------------------------- /Helper/View/Configuration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Helper/View/Configuration.php -------------------------------------------------------------------------------- /Helper/View/ControlPanel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Helper/View/ControlPanel.php -------------------------------------------------------------------------------- /Helper/View/ControlPanel/Command.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Helper/View/ControlPanel/Command.php -------------------------------------------------------------------------------- /Helper/View/Ebay.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Helper/View/Ebay.php -------------------------------------------------------------------------------- /Helper/View/Ebay/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Helper/View/Ebay/Controller.php -------------------------------------------------------------------------------- /Helper/View/Walmart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Helper/View/Walmart.php -------------------------------------------------------------------------------- /Helper/View/Walmart/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Helper/View/Walmart/Controller.php -------------------------------------------------------------------------------- /Model/AbstractModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/AbstractModel.php -------------------------------------------------------------------------------- /Model/Account.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Account.php -------------------------------------------------------------------------------- /Model/AccountFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/AccountFactory.php -------------------------------------------------------------------------------- /Model/ActiveRecord/AbstractBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/ActiveRecord/AbstractBuilder.php -------------------------------------------------------------------------------- /Model/ActiveRecord/AbstractModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/ActiveRecord/AbstractModel.php -------------------------------------------------------------------------------- /Model/ActiveRecord/Diff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/ActiveRecord/Diff.php -------------------------------------------------------------------------------- /Model/ActiveRecord/Factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/ActiveRecord/Factory.php -------------------------------------------------------------------------------- /Model/ActiveRecord/LockManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/ActiveRecord/LockManager.php -------------------------------------------------------------------------------- /Model/ActiveRecord/Relation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/ActiveRecord/Relation.php -------------------------------------------------------------------------------- /Model/ActiveRecord/Serializer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/ActiveRecord/Serializer.php -------------------------------------------------------------------------------- /Model/ActiveRecord/SnapshotBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/ActiveRecord/SnapshotBuilder.php -------------------------------------------------------------------------------- /Model/Amazon/Account.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Amazon/Account.php -------------------------------------------------------------------------------- /Model/Amazon/Account/Builder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Amazon/Account/Builder.php -------------------------------------------------------------------------------- /Model/Amazon/Account/DeleteManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Amazon/Account/DeleteManager.php -------------------------------------------------------------------------------- /Model/Amazon/Account/Repository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Amazon/Account/Repository.php -------------------------------------------------------------------------------- /Model/Amazon/Account/Repricing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Amazon/Account/Repricing.php -------------------------------------------------------------------------------- /Model/Amazon/Account/Server/Create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Amazon/Account/Server/Create.php -------------------------------------------------------------------------------- /Model/Amazon/Account/Server/Update.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Amazon/Account/Server/Update.php -------------------------------------------------------------------------------- /Model/Amazon/Api/OrderManagement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Amazon/Api/OrderManagement.php -------------------------------------------------------------------------------- /Model/Amazon/Connector/Dispatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Amazon/Connector/Dispatcher.php -------------------------------------------------------------------------------- /Model/Amazon/Connector/Protocol.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Amazon/Connector/Protocol.php -------------------------------------------------------------------------------- /Model/Amazon/Inventory/Sku.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Amazon/Inventory/Sku.php -------------------------------------------------------------------------------- /Model/Amazon/Item.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Amazon/Item.php -------------------------------------------------------------------------------- /Model/Amazon/Listing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Amazon/Listing.php -------------------------------------------------------------------------------- /Model/Amazon/Listing/Diff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Amazon/Listing/Diff.php -------------------------------------------------------------------------------- /Model/Amazon/Listing/Log.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Amazon/Listing/Log.php -------------------------------------------------------------------------------- /Model/Amazon/Listing/LogFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Amazon/Listing/LogFactory.php -------------------------------------------------------------------------------- /Model/Amazon/Listing/Other.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Amazon/Listing/Other.php -------------------------------------------------------------------------------- /Model/Amazon/Listing/Other/Mapping.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Amazon/Listing/Other/Mapping.php -------------------------------------------------------------------------------- /Model/Amazon/Listing/Product.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Amazon/Listing/Product.php -------------------------------------------------------------------------------- /Model/Amazon/Listing/Repository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Amazon/Listing/Repository.php -------------------------------------------------------------------------------- /Model/Amazon/Listing/Source.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Amazon/Listing/Source.php -------------------------------------------------------------------------------- /Model/Amazon/Listing/Transferring.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Amazon/Listing/Transferring.php -------------------------------------------------------------------------------- /Model/Amazon/Magento/Product/Rule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Amazon/Magento/Product/Rule.php -------------------------------------------------------------------------------- /Model/Amazon/Marketplace.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Amazon/Marketplace.php -------------------------------------------------------------------------------- /Model/Amazon/Order.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Amazon/Order.php -------------------------------------------------------------------------------- /Model/Amazon/Order/Builder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Amazon/Order/Builder.php -------------------------------------------------------------------------------- /Model/Amazon/Order/Helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Amazon/Order/Helper.php -------------------------------------------------------------------------------- /Model/Amazon/Order/Invoice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Amazon/Order/Invoice.php -------------------------------------------------------------------------------- /Model/Amazon/Order/Item.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Amazon/Order/Item.php -------------------------------------------------------------------------------- /Model/Amazon/Order/Item/Builder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Amazon/Order/Item/Builder.php -------------------------------------------------------------------------------- /Model/Amazon/Order/ProxyObject.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Amazon/Order/ProxyObject.php -------------------------------------------------------------------------------- /Model/Amazon/Order/Repository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Amazon/Order/Repository.php -------------------------------------------------------------------------------- /Model/Amazon/Order/ShippingAddress.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Amazon/Order/ShippingAddress.php -------------------------------------------------------------------------------- /Model/Amazon/Order/UkTaxService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Amazon/Order/UkTaxService.php -------------------------------------------------------------------------------- /Model/Amazon/Repricing/Updating.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Amazon/Repricing/Updating.php -------------------------------------------------------------------------------- /Model/Amazon/Search/Custom.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Amazon/Search/Custom.php -------------------------------------------------------------------------------- /Model/Amazon/Search/Custom/Factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Amazon/Search/Custom/Factory.php -------------------------------------------------------------------------------- /Model/Amazon/Search/Custom/Query.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Amazon/Search/Custom/Query.php -------------------------------------------------------------------------------- /Model/Amazon/Search/Custom/Result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Amazon/Search/Custom/Result.php -------------------------------------------------------------------------------- /Model/Amazon/Search/Dispatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Amazon/Search/Dispatcher.php -------------------------------------------------------------------------------- /Model/Amazon/Search/Settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Amazon/Search/Settings.php -------------------------------------------------------------------------------- /Model/Amazon/ShippingMap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Amazon/ShippingMap.php -------------------------------------------------------------------------------- /Model/Amazon/ShippingMapFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Amazon/ShippingMapFactory.php -------------------------------------------------------------------------------- /Model/Amazon/TagFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Amazon/TagFactory.php -------------------------------------------------------------------------------- /Model/Amazon/Template/Manager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Amazon/Template/Manager.php -------------------------------------------------------------------------------- /Model/Amazon/Template/ProductType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Amazon/Template/ProductType.php -------------------------------------------------------------------------------- /Model/Amazon/Template/Shipping.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Amazon/Template/Shipping.php -------------------------------------------------------------------------------- /Model/Amazon/ThrottlingManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Amazon/ThrottlingManager.php -------------------------------------------------------------------------------- /Model/ArchivedEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/ArchivedEntity.php -------------------------------------------------------------------------------- /Model/AttributeMapping/Pair.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/AttributeMapping/Pair.php -------------------------------------------------------------------------------- /Model/AttributeMapping/PairFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/AttributeMapping/PairFactory.php -------------------------------------------------------------------------------- /Model/AttributeMapping/Repository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/AttributeMapping/Repository.php -------------------------------------------------------------------------------- /Model/AttributeOptionMapping/Pair.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/AttributeOptionMapping/Pair.php -------------------------------------------------------------------------------- /Model/ChangeTracker/ChangeHolder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/ChangeTracker/ChangeHolder.php -------------------------------------------------------------------------------- /Model/ChangeTracker/PartManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/ChangeTracker/PartManager.php -------------------------------------------------------------------------------- /Model/ChangeTracker/TrackerFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/ChangeTracker/TrackerFactory.php -------------------------------------------------------------------------------- /Model/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Config.php -------------------------------------------------------------------------------- /Model/Config/Manager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Config/Manager.php -------------------------------------------------------------------------------- /Model/Connector/Command/RealTime.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Connector/Command/RealTime.php -------------------------------------------------------------------------------- /Model/Connector/Connection/Request.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Connector/Connection/Request.php -------------------------------------------------------------------------------- /Model/Connector/Connection/Single.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Connector/Connection/Single.php -------------------------------------------------------------------------------- /Model/Connector/ProtocolInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Connector/ProtocolInterface.php -------------------------------------------------------------------------------- /Model/Cron/Manager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Cron/Manager.php -------------------------------------------------------------------------------- /Model/Cron/OperationHistory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Cron/OperationHistory.php -------------------------------------------------------------------------------- /Model/Cron/Runner/AbstractModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Cron/Runner/AbstractModel.php -------------------------------------------------------------------------------- /Model/Cron/Runner/Developer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Cron/Runner/Developer.php -------------------------------------------------------------------------------- /Model/Cron/Runner/Magento.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Cron/Runner/Magento.php -------------------------------------------------------------------------------- /Model/Cron/Runner/Service/Pub.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Cron/Runner/Service/Pub.php -------------------------------------------------------------------------------- /Model/Cron/Runner/Switcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Cron/Runner/Switcher.php -------------------------------------------------------------------------------- /Model/Cron/Strategy/AbstractModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Cron/Strategy/AbstractModel.php -------------------------------------------------------------------------------- /Model/Cron/Strategy/Parallel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Cron/Strategy/Parallel.php -------------------------------------------------------------------------------- /Model/Cron/Strategy/Serial.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Cron/Strategy/Serial.php -------------------------------------------------------------------------------- /Model/Cron/Task/AbstractModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Cron/Task/AbstractModel.php -------------------------------------------------------------------------------- /Model/Cron/Task/Ebay/Order/Cancel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Cron/Task/Ebay/Order/Cancel.php -------------------------------------------------------------------------------- /Model/Cron/Task/Ebay/Order/Creator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Cron/Task/Ebay/Order/Creator.php -------------------------------------------------------------------------------- /Model/Cron/Task/Ebay/Order/Refund.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Cron/Task/Ebay/Order/Refund.php -------------------------------------------------------------------------------- /Model/Cron/Task/Ebay/Order/Update.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Cron/Task/Ebay/Order/Update.php -------------------------------------------------------------------------------- /Model/Cron/Task/Ebay/VideoUpload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Cron/Task/Ebay/VideoUpload.php -------------------------------------------------------------------------------- /Model/Cron/Task/Repository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Cron/Task/Repository.php -------------------------------------------------------------------------------- /Model/Currency.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Currency.php -------------------------------------------------------------------------------- /Model/Dashboard/Date/DateRange.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Dashboard/Date/DateRange.php -------------------------------------------------------------------------------- /Model/Dashboard/Sales/Cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Dashboard/Sales/Cache.php -------------------------------------------------------------------------------- /Model/Dashboard/Sales/Point.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Dashboard/Sales/Point.php -------------------------------------------------------------------------------- /Model/Dashboard/Sales/PointFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Dashboard/Sales/PointFactory.php -------------------------------------------------------------------------------- /Model/Dashboard/Sales/PointSet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Dashboard/Sales/PointSet.php -------------------------------------------------------------------------------- /Model/Ebay/Account.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Ebay/Account.php -------------------------------------------------------------------------------- /Model/Ebay/Account/Builder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Ebay/Account/Builder.php -------------------------------------------------------------------------------- /Model/Ebay/Account/BuilderFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Ebay/Account/BuilderFactory.php -------------------------------------------------------------------------------- /Model/Ebay/Account/Create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Ebay/Account/Create.php -------------------------------------------------------------------------------- /Model/Ebay/Account/DeleteManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Ebay/Account/DeleteManager.php -------------------------------------------------------------------------------- /Model/Ebay/Account/Repository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Ebay/Account/Repository.php -------------------------------------------------------------------------------- /Model/Ebay/Account/Store/Category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Ebay/Account/Store/Category.php -------------------------------------------------------------------------------- /Model/Ebay/Account/Update.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Ebay/Account/Update.php -------------------------------------------------------------------------------- /Model/Ebay/Api/Data/Order.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Ebay/Api/Data/Order.php -------------------------------------------------------------------------------- /Model/Ebay/Api/Data/Order/Buyer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Ebay/Api/Data/Order/Buyer.php -------------------------------------------------------------------------------- /Model/Ebay/Api/DataSources/Orders.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Ebay/Api/DataSources/Orders.php -------------------------------------------------------------------------------- /Model/Ebay/Api/OrderManagement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Ebay/Api/OrderManagement.php -------------------------------------------------------------------------------- /Model/Ebay/Api/OrderRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Ebay/Api/OrderRepository.php -------------------------------------------------------------------------------- /Model/Ebay/Api/OrderSearchCriteria.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Ebay/Api/OrderSearchCriteria.php -------------------------------------------------------------------------------- /Model/Ebay/Api/OrderSearchResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Ebay/Api/OrderSearchResult.php -------------------------------------------------------------------------------- /Model/Ebay/AttributeMapping/Pair.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Ebay/AttributeMapping/Pair.php -------------------------------------------------------------------------------- /Model/Ebay/Bundle/Options/Mapping.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Ebay/Bundle/Options/Mapping.php -------------------------------------------------------------------------------- /Model/Ebay/ComplianceDocuments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Ebay/ComplianceDocuments.php -------------------------------------------------------------------------------- /Model/Ebay/Connector/Dispatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Ebay/Connector/Dispatcher.php -------------------------------------------------------------------------------- /Model/Ebay/Connector/Other/Delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Ebay/Connector/Other/Delete.php -------------------------------------------------------------------------------- /Model/Ebay/Connector/Protocol.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Ebay/Connector/Protocol.php -------------------------------------------------------------------------------- /Model/Ebay/Dictionary/Category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Ebay/Dictionary/Category.php -------------------------------------------------------------------------------- /Model/Ebay/Dictionary/Marketplace.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Ebay/Dictionary/Marketplace.php -------------------------------------------------------------------------------- /Model/Ebay/Dictionary/Motor/Epid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Ebay/Dictionary/Motor/Epid.php -------------------------------------------------------------------------------- /Model/Ebay/Dictionary/Motor/Ktype.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Ebay/Dictionary/Motor/Ktype.php -------------------------------------------------------------------------------- /Model/Ebay/Dictionary/Shipping.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Ebay/Dictionary/Shipping.php -------------------------------------------------------------------------------- /Model/Ebay/Feedback.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Ebay/Feedback.php -------------------------------------------------------------------------------- /Model/Ebay/Feedback/Manager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Ebay/Feedback/Manager.php -------------------------------------------------------------------------------- /Model/Ebay/Feedback/Template.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Ebay/Feedback/Template.php -------------------------------------------------------------------------------- /Model/Ebay/Item.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Ebay/Item.php -------------------------------------------------------------------------------- /Model/Ebay/Listing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Ebay/Listing.php -------------------------------------------------------------------------------- /Model/Ebay/Listing/Log.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Ebay/Listing/Log.php -------------------------------------------------------------------------------- /Model/Ebay/Listing/Other.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Ebay/Listing/Other.php -------------------------------------------------------------------------------- /Model/Ebay/Listing/Other/Mapping.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Ebay/Listing/Other/Mapping.php -------------------------------------------------------------------------------- /Model/Ebay/Listing/Other/Remover.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Ebay/Listing/Other/Remover.php -------------------------------------------------------------------------------- /Model/Ebay/Listing/Other/Updating.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Ebay/Listing/Other/Updating.php -------------------------------------------------------------------------------- /Model/Ebay/Listing/Product.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Ebay/Listing/Product.php -------------------------------------------------------------------------------- /Model/Ebay/Listing/Repository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Ebay/Listing/Repository.php -------------------------------------------------------------------------------- /Model/Ebay/Listing/SnapshotBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Ebay/Listing/SnapshotBuilder.php -------------------------------------------------------------------------------- /Model/Ebay/Listing/Transferring.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Ebay/Listing/Transferring.php -------------------------------------------------------------------------------- /Model/Ebay/Listing/Wizard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Ebay/Listing/Wizard.php -------------------------------------------------------------------------------- /Model/Ebay/Listing/Wizard/Create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Ebay/Listing/Wizard/Create.php -------------------------------------------------------------------------------- /Model/Ebay/Listing/Wizard/Manager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Ebay/Listing/Wizard/Manager.php -------------------------------------------------------------------------------- /Model/Ebay/Listing/Wizard/Product.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Ebay/Listing/Wizard/Product.php -------------------------------------------------------------------------------- /Model/Ebay/Listing/Wizard/Step.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Ebay/Listing/Wizard/Step.php -------------------------------------------------------------------------------- /Model/Ebay/ListingFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Ebay/ListingFactory.php -------------------------------------------------------------------------------- /Model/Ebay/Magento/Product/Rule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Ebay/Magento/Product/Rule.php -------------------------------------------------------------------------------- /Model/Ebay/Marketplace.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Ebay/Marketplace.php -------------------------------------------------------------------------------- /Model/Ebay/Marketplace/Repository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Ebay/Marketplace/Repository.php -------------------------------------------------------------------------------- /Model/Ebay/Motor/Filter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Ebay/Motor/Filter.php -------------------------------------------------------------------------------- /Model/Ebay/Motor/Filter/To/Group.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Ebay/Motor/Filter/To/Group.php -------------------------------------------------------------------------------- /Model/Ebay/Motor/Group.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Ebay/Motor/Group.php -------------------------------------------------------------------------------- /Model/Ebay/Order.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Ebay/Order.php -------------------------------------------------------------------------------- /Model/Ebay/Order/Builder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Ebay/Order/Builder.php -------------------------------------------------------------------------------- /Model/Ebay/Order/FinalFee/Fill.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Ebay/Order/FinalFee/Fill.php -------------------------------------------------------------------------------- /Model/Ebay/Order/Helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Ebay/Order/Helper.php -------------------------------------------------------------------------------- /Model/Ebay/Order/Item.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Ebay/Order/Item.php -------------------------------------------------------------------------------- /Model/Ebay/Order/Item/Builder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Ebay/Order/Item/Builder.php -------------------------------------------------------------------------------- /Model/Ebay/Order/Item/Importer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Ebay/Order/Item/Importer.php -------------------------------------------------------------------------------- /Model/Ebay/Order/Item/ProxyObject.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Ebay/Order/Item/ProxyObject.php -------------------------------------------------------------------------------- /Model/Ebay/Order/ProxyObject.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Ebay/Order/ProxyObject.php -------------------------------------------------------------------------------- /Model/Ebay/Order/Repository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Ebay/Order/Repository.php -------------------------------------------------------------------------------- /Model/Ebay/Order/Shipment/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Ebay/Order/Shipment/Handler.php -------------------------------------------------------------------------------- /Model/Ebay/Order/ShippingAddress.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Ebay/Order/ShippingAddress.php -------------------------------------------------------------------------------- /Model/Ebay/OrderFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Ebay/OrderFactory.php -------------------------------------------------------------------------------- /Model/Ebay/Promotion.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Ebay/Promotion.php -------------------------------------------------------------------------------- /Model/Ebay/Promotion/Collection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Ebay/Promotion/Collection.php -------------------------------------------------------------------------------- /Model/Ebay/Promotion/Create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Ebay/Promotion/Create.php -------------------------------------------------------------------------------- /Model/Ebay/Promotion/Delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Ebay/Promotion/Delete.php -------------------------------------------------------------------------------- /Model/Ebay/Promotion/Discount.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Ebay/Promotion/Discount.php -------------------------------------------------------------------------------- /Model/Ebay/Promotion/Repository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Ebay/Promotion/Repository.php -------------------------------------------------------------------------------- /Model/Ebay/Promotion/TimingManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Ebay/Promotion/TimingManager.php -------------------------------------------------------------------------------- /Model/Ebay/Promotion/Update.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Ebay/Promotion/Update.php -------------------------------------------------------------------------------- /Model/Ebay/PromotionFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Ebay/PromotionFactory.php -------------------------------------------------------------------------------- /Model/Ebay/TagFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Ebay/TagFactory.php -------------------------------------------------------------------------------- /Model/Ebay/Template/Category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Ebay/Template/Category.php -------------------------------------------------------------------------------- /Model/Ebay/Template/Category/Diff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Ebay/Template/Category/Diff.php -------------------------------------------------------------------------------- /Model/Ebay/Template/Description.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Ebay/Template/Description.php -------------------------------------------------------------------------------- /Model/Ebay/Template/Manager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Ebay/Template/Manager.php -------------------------------------------------------------------------------- /Model/Ebay/Template/ReturnPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Ebay/Template/ReturnPolicy.php -------------------------------------------------------------------------------- /Model/Ebay/Template/SellingFormat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Ebay/Template/SellingFormat.php -------------------------------------------------------------------------------- /Model/Ebay/Template/Shipping.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Ebay/Template/Shipping.php -------------------------------------------------------------------------------- /Model/Ebay/Template/Shipping/Diff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Ebay/Template/Shipping/Diff.php -------------------------------------------------------------------------------- /Model/Ebay/Template/StoreCategory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Ebay/Template/StoreCategory.php -------------------------------------------------------------------------------- /Model/Ebay/Video.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Ebay/Video.php -------------------------------------------------------------------------------- /Model/Ebay/Video/Channel/Video.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Ebay/Video/Channel/Video.php -------------------------------------------------------------------------------- /Model/Ebay/Video/ProductProcessor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Ebay/Video/ProductProcessor.php -------------------------------------------------------------------------------- /Model/Ebay/Video/Repository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Ebay/Video/Repository.php -------------------------------------------------------------------------------- /Model/Ebay/VideoFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Ebay/VideoFactory.php -------------------------------------------------------------------------------- /Model/Ebay/VideoService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Ebay/VideoService.php -------------------------------------------------------------------------------- /Model/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Exception.php -------------------------------------------------------------------------------- /Model/Exception/Connection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Exception/Connection.php -------------------------------------------------------------------------------- /Model/Exception/EntityNotFound.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Exception/EntityNotFound.php -------------------------------------------------------------------------------- /Model/Exception/Logic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Exception/Logic.php -------------------------------------------------------------------------------- /Model/Exception/ProductNotExist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Exception/ProductNotExist.php -------------------------------------------------------------------------------- /Model/Exception/Setup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Exception/Setup.php -------------------------------------------------------------------------------- /Model/Factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Factory.php -------------------------------------------------------------------------------- /Model/HealthStatus/CurrentStatus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/HealthStatus/CurrentStatus.php -------------------------------------------------------------------------------- /Model/HealthStatus/Manager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/HealthStatus/Manager.php -------------------------------------------------------------------------------- /Model/HealthStatus/Task/InfoType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/HealthStatus/Task/InfoType.php -------------------------------------------------------------------------------- /Model/HealthStatus/Task/IssueType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/HealthStatus/Task/IssueType.php -------------------------------------------------------------------------------- /Model/HealthStatus/Task/Result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/HealthStatus/Task/Result.php -------------------------------------------------------------------------------- /Model/HealthStatus/Task/Result/Set.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/HealthStatus/Task/Result/Set.php -------------------------------------------------------------------------------- /Model/Issue/DataObject.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Issue/DataObject.php -------------------------------------------------------------------------------- /Model/Issue/DataObjectFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Issue/DataObjectFactory.php -------------------------------------------------------------------------------- /Model/Issue/LocatorInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Issue/LocatorInterface.php -------------------------------------------------------------------------------- /Model/Item.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Item.php -------------------------------------------------------------------------------- /Model/Listing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Listing.php -------------------------------------------------------------------------------- /Model/Listing/Auto/Actions/Listing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Listing/Auto/Actions/Listing.php -------------------------------------------------------------------------------- /Model/Listing/Auto/Category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Listing/Auto/Category.php -------------------------------------------------------------------------------- /Model/Listing/Auto/Category/Group.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Listing/Auto/Category/Group.php -------------------------------------------------------------------------------- /Model/Listing/Log.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Listing/Log.php -------------------------------------------------------------------------------- /Model/Listing/Log/Factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Listing/Log/Factory.php -------------------------------------------------------------------------------- /Model/Listing/Other.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Listing/Other.php -------------------------------------------------------------------------------- /Model/Listing/Product.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Listing/Product.php -------------------------------------------------------------------------------- /Model/Listing/Product/Instruction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Listing/Product/Instruction.php -------------------------------------------------------------------------------- /Model/Listing/Product/LockManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Listing/Product/LockManager.php -------------------------------------------------------------------------------- /Model/Listing/Product/PriceRounder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Listing/Product/PriceRounder.php -------------------------------------------------------------------------------- /Model/Listing/Product/Variation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Listing/Product/Variation.php -------------------------------------------------------------------------------- /Model/Listing/ProductFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Listing/ProductFactory.php -------------------------------------------------------------------------------- /Model/Listing/Ui/RuntimeStorage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Listing/Ui/RuntimeStorage.php -------------------------------------------------------------------------------- /Model/ListingFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/ListingFactory.php -------------------------------------------------------------------------------- /Model/Lock/Item.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Lock/Item.php -------------------------------------------------------------------------------- /Model/Lock/Item/Manager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Lock/Item/Manager.php -------------------------------------------------------------------------------- /Model/Lock/Item/ManagerFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Lock/Item/ManagerFactory.php -------------------------------------------------------------------------------- /Model/Lock/Item/Progress.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Lock/Item/Progress.php -------------------------------------------------------------------------------- /Model/Lock/Transactional.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Lock/Transactional.php -------------------------------------------------------------------------------- /Model/Lock/Transactional/Manager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Lock/Transactional/Manager.php -------------------------------------------------------------------------------- /Model/Log/AbstractModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Log/AbstractModel.php -------------------------------------------------------------------------------- /Model/Log/Clearing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Log/Clearing.php -------------------------------------------------------------------------------- /Model/Log/System.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Log/System.php -------------------------------------------------------------------------------- /Model/M2ePro/Connector/Dispatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/M2ePro/Connector/Dispatcher.php -------------------------------------------------------------------------------- /Model/M2ePro/Connector/Protocol.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/M2ePro/Connector/Protocol.php -------------------------------------------------------------------------------- /Model/MSI/AffectedProducts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/MSI/AffectedProducts.php -------------------------------------------------------------------------------- /Model/MSI/Magento/Order/Shipment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/MSI/Magento/Order/Shipment.php -------------------------------------------------------------------------------- /Model/MSI/Order/Reserve.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/MSI/Order/Reserve.php -------------------------------------------------------------------------------- /Model/Magento/Attribute/Builder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Magento/Attribute/Builder.php -------------------------------------------------------------------------------- /Model/Magento/Attribute/Relation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Magento/Attribute/Relation.php -------------------------------------------------------------------------------- /Model/Magento/AttributeSet/Builder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Magento/AttributeSet/Builder.php -------------------------------------------------------------------------------- /Model/Magento/AttributeSet/Group.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Magento/AttributeSet/Group.php -------------------------------------------------------------------------------- /Model/Magento/Config/Mutable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Magento/Config/Mutable.php -------------------------------------------------------------------------------- /Model/Magento/Customer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Magento/Customer.php -------------------------------------------------------------------------------- /Model/Magento/Order/Invoice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Magento/Order/Invoice.php -------------------------------------------------------------------------------- /Model/Magento/Order/Shipment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Magento/Order/Shipment.php -------------------------------------------------------------------------------- /Model/Magento/Order/Shipment/Track.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Magento/Order/Shipment/Track.php -------------------------------------------------------------------------------- /Model/Magento/Order/Updater.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Magento/Order/Updater.php -------------------------------------------------------------------------------- /Model/Magento/Order/UpdaterFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Magento/Order/UpdaterFactory.php -------------------------------------------------------------------------------- /Model/Magento/Payment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Magento/Payment.php -------------------------------------------------------------------------------- /Model/Magento/Product.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Magento/Product.php -------------------------------------------------------------------------------- /Model/Magento/Product/Builder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Magento/Product/Builder.php -------------------------------------------------------------------------------- /Model/Magento/Product/Cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Magento/Product/Cache.php -------------------------------------------------------------------------------- /Model/Magento/Product/Image.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Magento/Product/Image.php -------------------------------------------------------------------------------- /Model/Magento/Product/ImageFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Magento/Product/ImageFactory.php -------------------------------------------------------------------------------- /Model/Magento/Product/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Magento/Product/Index.php -------------------------------------------------------------------------------- /Model/Magento/Product/Inventory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Magento/Product/Inventory.php -------------------------------------------------------------------------------- /Model/Magento/Product/Rule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Magento/Product/Rule.php -------------------------------------------------------------------------------- /Model/Magento/Product/RuleFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Magento/Product/RuleFactory.php -------------------------------------------------------------------------------- /Model/Magento/Product/Status.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Magento/Product/Status.php -------------------------------------------------------------------------------- /Model/Magento/Product/StockItem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Magento/Product/StockItem.php -------------------------------------------------------------------------------- /Model/Magento/Product/Variation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Magento/Product/Variation.php -------------------------------------------------------------------------------- /Model/Magento/ProductFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Magento/ProductFactory.php -------------------------------------------------------------------------------- /Model/Magento/Quote/Builder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Magento/Quote/Builder.php -------------------------------------------------------------------------------- /Model/Magento/Quote/Item.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Magento/Quote/Item.php -------------------------------------------------------------------------------- /Model/Magento/Quote/Manager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Magento/Quote/Manager.php -------------------------------------------------------------------------------- /Model/Magento/Shipping.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Magento/Shipping.php -------------------------------------------------------------------------------- /Model/Magento/Tax/Helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Magento/Tax/Helper.php -------------------------------------------------------------------------------- /Model/Magento/Tax/Rule/Builder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Magento/Tax/Rule/Builder.php -------------------------------------------------------------------------------- /Model/Marketplace.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Marketplace.php -------------------------------------------------------------------------------- /Model/MarketplaceFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/MarketplaceFactory.php -------------------------------------------------------------------------------- /Model/Module/Issue/NewVersion.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Module/Issue/NewVersion.php -------------------------------------------------------------------------------- /Model/OperationHistory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/OperationHistory.php -------------------------------------------------------------------------------- /Model/Order.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Order.php -------------------------------------------------------------------------------- /Model/Order/Change.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Order/Change.php -------------------------------------------------------------------------------- /Model/Order/Creditmemo/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Order/Creditmemo/Handler.php -------------------------------------------------------------------------------- /Model/Order/EventDispatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Order/EventDispatcher.php -------------------------------------------------------------------------------- /Model/Order/Item.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Order/Item.php -------------------------------------------------------------------------------- /Model/Order/Item/OptionsFinder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Order/Item/OptionsFinder.php -------------------------------------------------------------------------------- /Model/Order/Item/ProxyObject.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Order/Item/ProxyObject.php -------------------------------------------------------------------------------- /Model/Order/Log.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Order/Log.php -------------------------------------------------------------------------------- /Model/Order/Matching.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Order/Matching.php -------------------------------------------------------------------------------- /Model/Order/Note.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Order/Note.php -------------------------------------------------------------------------------- /Model/Order/Note/Repository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Order/Note/Repository.php -------------------------------------------------------------------------------- /Model/Order/NoteFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Order/NoteFactory.php -------------------------------------------------------------------------------- /Model/Order/ProxyObject.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Order/ProxyObject.php -------------------------------------------------------------------------------- /Model/Order/Reserve.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Order/Reserve.php -------------------------------------------------------------------------------- /Model/Order/Shipment/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Order/Shipment/Handler.php -------------------------------------------------------------------------------- /Model/Order/ShippingAddress.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Order/ShippingAddress.php -------------------------------------------------------------------------------- /Model/Order/SyncStatus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Order/SyncStatus.php -------------------------------------------------------------------------------- /Model/Order/SyncStatusManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Order/SyncStatusManager.php -------------------------------------------------------------------------------- /Model/Order/UserInfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Order/UserInfo.php -------------------------------------------------------------------------------- /Model/Order/UserInfoFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Order/UserInfoFactory.php -------------------------------------------------------------------------------- /Model/Processing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Processing.php -------------------------------------------------------------------------------- /Model/Processing/Lock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Processing/Lock.php -------------------------------------------------------------------------------- /Model/Processing/Runner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Processing/Runner.php -------------------------------------------------------------------------------- /Model/Registration/Info.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Registration/Info.php -------------------------------------------------------------------------------- /Model/Registration/Manager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Registration/Manager.php -------------------------------------------------------------------------------- /Model/Registry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Registry.php -------------------------------------------------------------------------------- /Model/Registry/Manager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Registry/Manager.php -------------------------------------------------------------------------------- /Model/Request/Pending/Partial.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Request/Pending/Partial.php -------------------------------------------------------------------------------- /Model/Request/Pending/Partial/Data.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Request/Pending/Partial/Data.php -------------------------------------------------------------------------------- /Model/Request/Pending/Single.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Request/Pending/Single.php -------------------------------------------------------------------------------- /Model/Requirements/Manager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Requirements/Manager.php -------------------------------------------------------------------------------- /Model/Requirements/Reader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Requirements/Reader.php -------------------------------------------------------------------------------- /Model/ResourceModel/Account.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/ResourceModel/Account.php -------------------------------------------------------------------------------- /Model/ResourceModel/Amazon/Account.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/ResourceModel/Amazon/Account.php -------------------------------------------------------------------------------- /Model/ResourceModel/Amazon/Item.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/ResourceModel/Amazon/Item.php -------------------------------------------------------------------------------- /Model/ResourceModel/Amazon/Listing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/ResourceModel/Amazon/Listing.php -------------------------------------------------------------------------------- /Model/ResourceModel/Amazon/Order.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/ResourceModel/Amazon/Order.php -------------------------------------------------------------------------------- /Model/ResourceModel/ArchivedEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/ResourceModel/ArchivedEntity.php -------------------------------------------------------------------------------- /Model/ResourceModel/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/ResourceModel/Config.php -------------------------------------------------------------------------------- /Model/ResourceModel/Ebay/Account.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/ResourceModel/Ebay/Account.php -------------------------------------------------------------------------------- /Model/ResourceModel/Ebay/Feedback.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/ResourceModel/Ebay/Feedback.php -------------------------------------------------------------------------------- /Model/ResourceModel/Ebay/Item.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/ResourceModel/Ebay/Item.php -------------------------------------------------------------------------------- /Model/ResourceModel/Ebay/Listing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/ResourceModel/Ebay/Listing.php -------------------------------------------------------------------------------- /Model/ResourceModel/Ebay/Order.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/ResourceModel/Ebay/Order.php -------------------------------------------------------------------------------- /Model/ResourceModel/Ebay/Promotion.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/ResourceModel/Ebay/Promotion.php -------------------------------------------------------------------------------- /Model/ResourceModel/Ebay/Video.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/ResourceModel/Ebay/Video.php -------------------------------------------------------------------------------- /Model/ResourceModel/Listing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/ResourceModel/Listing.php -------------------------------------------------------------------------------- /Model/ResourceModel/Listing/Log.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/ResourceModel/Listing/Log.php -------------------------------------------------------------------------------- /Model/ResourceModel/Listing/Other.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/ResourceModel/Listing/Other.php -------------------------------------------------------------------------------- /Model/ResourceModel/Lock/Item.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/ResourceModel/Lock/Item.php -------------------------------------------------------------------------------- /Model/ResourceModel/Log/System.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/ResourceModel/Log/System.php -------------------------------------------------------------------------------- /Model/ResourceModel/Marketplace.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/ResourceModel/Marketplace.php -------------------------------------------------------------------------------- /Model/ResourceModel/Order.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/ResourceModel/Order.php -------------------------------------------------------------------------------- /Model/ResourceModel/Order/Change.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/ResourceModel/Order/Change.php -------------------------------------------------------------------------------- /Model/ResourceModel/Order/Item.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/ResourceModel/Order/Item.php -------------------------------------------------------------------------------- /Model/ResourceModel/Order/Log.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/ResourceModel/Order/Log.php -------------------------------------------------------------------------------- /Model/ResourceModel/Order/Matching.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/ResourceModel/Order/Matching.php -------------------------------------------------------------------------------- /Model/ResourceModel/Order/Note.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/ResourceModel/Order/Note.php -------------------------------------------------------------------------------- /Model/ResourceModel/Processing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/ResourceModel/Processing.php -------------------------------------------------------------------------------- /Model/ResourceModel/Registry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/ResourceModel/Registry.php -------------------------------------------------------------------------------- /Model/ResourceModel/Setup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/ResourceModel/Setup.php -------------------------------------------------------------------------------- /Model/ResourceModel/StopQueue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/ResourceModel/StopQueue.php -------------------------------------------------------------------------------- /Model/ResourceModel/Tag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/ResourceModel/Tag.php -------------------------------------------------------------------------------- /Model/ResourceModel/Tag/Collection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/ResourceModel/Tag/Collection.php -------------------------------------------------------------------------------- /Model/ResourceModel/TagFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/ResourceModel/TagFactory.php -------------------------------------------------------------------------------- /Model/ResourceModel/Walmart/Item.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/ResourceModel/Walmart/Item.php -------------------------------------------------------------------------------- /Model/ResourceModel/Walmart/Order.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/ResourceModel/Walmart/Order.php -------------------------------------------------------------------------------- /Model/ResourceModel/Wizard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/ResourceModel/Wizard.php -------------------------------------------------------------------------------- /Model/Response/Message.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Response/Message.php -------------------------------------------------------------------------------- /Model/Response/Message/Set.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Response/Message/Set.php -------------------------------------------------------------------------------- /Model/Servicing/Dispatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Servicing/Dispatcher.php -------------------------------------------------------------------------------- /Model/Servicing/DispatcherFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Servicing/DispatcherFactory.php -------------------------------------------------------------------------------- /Model/Servicing/Task/Analytics.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Servicing/Task/Analytics.php -------------------------------------------------------------------------------- /Model/Servicing/Task/Analytics/Row.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Servicing/Task/Analytics/Row.php -------------------------------------------------------------------------------- /Model/Servicing/Task/Cron.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Servicing/Task/Cron.php -------------------------------------------------------------------------------- /Model/Servicing/Task/License.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Servicing/Task/License.php -------------------------------------------------------------------------------- /Model/Servicing/Task/Marketplaces.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Servicing/Task/Marketplaces.php -------------------------------------------------------------------------------- /Model/Servicing/Task/Messages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Servicing/Task/Messages.php -------------------------------------------------------------------------------- /Model/Servicing/Task/Settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Servicing/Task/Settings.php -------------------------------------------------------------------------------- /Model/Servicing/Task/Statistic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Servicing/Task/Statistic.php -------------------------------------------------------------------------------- /Model/Servicing/TaskInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Servicing/TaskInterface.php -------------------------------------------------------------------------------- /Model/Setup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Setup.php -------------------------------------------------------------------------------- /Model/Setup/InstallChecker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Setup/InstallChecker.php -------------------------------------------------------------------------------- /Model/Setup/Installer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Setup/Installer.php -------------------------------------------------------------------------------- /Model/Setup/Upgrade/Backup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Setup/Upgrade/Backup.php -------------------------------------------------------------------------------- /Model/Setup/Upgrade/Entity/Factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Setup/Upgrade/Entity/Factory.php -------------------------------------------------------------------------------- /Model/Setup/Upgrade/Manager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Setup/Upgrade/Manager.php -------------------------------------------------------------------------------- /Model/Setup/Upgrader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Setup/Upgrader.php -------------------------------------------------------------------------------- /Model/StopQueue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/StopQueue.php -------------------------------------------------------------------------------- /Model/Synchronization/Log.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Synchronization/Log.php -------------------------------------------------------------------------------- /Model/Synchronization/LogFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Synchronization/LogFactory.php -------------------------------------------------------------------------------- /Model/Tag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Tag.php -------------------------------------------------------------------------------- /Model/Tag/BlockingErrors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Tag/BlockingErrors.php -------------------------------------------------------------------------------- /Model/Tag/Entity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Tag/Entity.php -------------------------------------------------------------------------------- /Model/Tag/EntityFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Tag/EntityFactory.php -------------------------------------------------------------------------------- /Model/Tag/ListingProduct/Buffer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Tag/ListingProduct/Buffer.php -------------------------------------------------------------------------------- /Model/Tag/ListingProduct/Relation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Tag/ListingProduct/Relation.php -------------------------------------------------------------------------------- /Model/Tag/Repository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Tag/Repository.php -------------------------------------------------------------------------------- /Model/Tag/ValidatorIssues.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Tag/ValidatorIssues.php -------------------------------------------------------------------------------- /Model/TagFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/TagFactory.php -------------------------------------------------------------------------------- /Model/Template/Description.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Template/Description.php -------------------------------------------------------------------------------- /Model/Template/SellingFormat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Template/SellingFormat.php -------------------------------------------------------------------------------- /Model/Template/Synchronization.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Template/Synchronization.php -------------------------------------------------------------------------------- /Model/VariablesDir.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/VariablesDir.php -------------------------------------------------------------------------------- /Model/Walmart/Account.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Walmart/Account.php -------------------------------------------------------------------------------- /Model/Walmart/Account/Builder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Walmart/Account/Builder.php -------------------------------------------------------------------------------- /Model/Walmart/Account/Repository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Walmart/Account/Repository.php -------------------------------------------------------------------------------- /Model/Walmart/Connector/Dispatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Walmart/Connector/Dispatcher.php -------------------------------------------------------------------------------- /Model/Walmart/Connector/Protocol.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Walmart/Connector/Protocol.php -------------------------------------------------------------------------------- /Model/Walmart/Dictionary/Category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Walmart/Dictionary/Category.php -------------------------------------------------------------------------------- /Model/Walmart/Item.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Walmart/Item.php -------------------------------------------------------------------------------- /Model/Walmart/Listing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Walmart/Listing.php -------------------------------------------------------------------------------- /Model/Walmart/Listing/Diff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Walmart/Listing/Diff.php -------------------------------------------------------------------------------- /Model/Walmart/Listing/DiffFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Walmart/Listing/DiffFactory.php -------------------------------------------------------------------------------- /Model/Walmart/Listing/Log.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Walmart/Listing/Log.php -------------------------------------------------------------------------------- /Model/Walmart/Listing/Other.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Walmart/Listing/Other.php -------------------------------------------------------------------------------- /Model/Walmart/Listing/Product.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Walmart/Listing/Product.php -------------------------------------------------------------------------------- /Model/Walmart/Listing/Repository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Walmart/Listing/Repository.php -------------------------------------------------------------------------------- /Model/Walmart/Magento/Product/Rule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Walmart/Magento/Product/Rule.php -------------------------------------------------------------------------------- /Model/Walmart/Marketplace.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Walmart/Marketplace.php -------------------------------------------------------------------------------- /Model/Walmart/Order.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Walmart/Order.php -------------------------------------------------------------------------------- /Model/Walmart/Order/Builder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Walmart/Order/Builder.php -------------------------------------------------------------------------------- /Model/Walmart/Order/Helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Walmart/Order/Helper.php -------------------------------------------------------------------------------- /Model/Walmart/Order/Item.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Walmart/Order/Item.php -------------------------------------------------------------------------------- /Model/Walmart/Order/Item/Builder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Walmart/Order/Item/Builder.php -------------------------------------------------------------------------------- /Model/Walmart/Order/ProxyObject.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Walmart/Order/ProxyObject.php -------------------------------------------------------------------------------- /Model/Walmart/Order/Repository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Walmart/Order/Repository.php -------------------------------------------------------------------------------- /Model/Walmart/ProductType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Walmart/ProductType.php -------------------------------------------------------------------------------- /Model/Walmart/ProductType/Builder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Walmart/ProductType/Builder.php -------------------------------------------------------------------------------- /Model/Walmart/ProductType/Service.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Walmart/ProductType/Service.php -------------------------------------------------------------------------------- /Model/Walmart/ProductTypeFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Walmart/ProductTypeFactory.php -------------------------------------------------------------------------------- /Model/Walmart/Template/Description.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Walmart/Template/Description.php -------------------------------------------------------------------------------- /Model/Walmart/ThrottlingManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Walmart/ThrottlingManager.php -------------------------------------------------------------------------------- /Model/Wizard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Wizard.php -------------------------------------------------------------------------------- /Model/Wizard/InstallationAmazon.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Wizard/InstallationAmazon.php -------------------------------------------------------------------------------- /Model/Wizard/InstallationEbay.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Wizard/InstallationEbay.php -------------------------------------------------------------------------------- /Model/Wizard/InstallationWalmart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Wizard/InstallationWalmart.php -------------------------------------------------------------------------------- /Model/Wizard/MigrationFromMagento1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Wizard/MigrationFromMagento1.php -------------------------------------------------------------------------------- /Model/Wizard/MigrationToInnodb.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Wizard/MigrationToInnodb.php -------------------------------------------------------------------------------- /Model/Wizard/VersionDowngrade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Model/Wizard/VersionDowngrade.php -------------------------------------------------------------------------------- /Observer/AbstractModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Observer/AbstractModel.php -------------------------------------------------------------------------------- /Observer/Amazon/Order.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Observer/Amazon/Order.php -------------------------------------------------------------------------------- /Observer/Amazon/Order/Item.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Observer/Amazon/Order/Item.php -------------------------------------------------------------------------------- /Observer/Category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Observer/Category.php -------------------------------------------------------------------------------- /Observer/Cms/Block/Save/After.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Observer/Cms/Block/Save/After.php -------------------------------------------------------------------------------- /Observer/Creditmemo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Observer/Creditmemo.php -------------------------------------------------------------------------------- /Observer/Creditmemo/Save/After.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Observer/Creditmemo/Save/After.php -------------------------------------------------------------------------------- /Observer/Creditmemo/View.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Observer/Creditmemo/View.php -------------------------------------------------------------------------------- /Observer/Ebay/Order/Item.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Observer/Ebay/Order/Item.php -------------------------------------------------------------------------------- /Observer/Import/Bunch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Observer/Import/Bunch.php -------------------------------------------------------------------------------- /Observer/Indexes/Disable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Observer/Indexes/Disable.php -------------------------------------------------------------------------------- /Observer/Indexes/Enable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Observer/Indexes/Enable.php -------------------------------------------------------------------------------- /Observer/Invoice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Observer/Invoice.php -------------------------------------------------------------------------------- /Observer/Invoice/Save/After.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Observer/Invoice/Save/After.php -------------------------------------------------------------------------------- /Observer/Invoice/View.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Observer/Invoice/View.php -------------------------------------------------------------------------------- /Observer/Order/Cancel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Observer/Order/Cancel.php -------------------------------------------------------------------------------- /Observer/Order/Quote.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Observer/Order/Quote.php -------------------------------------------------------------------------------- /Observer/Order/View.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Observer/Order/View.php -------------------------------------------------------------------------------- /Observer/Product/AbstractProduct.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Observer/Product/AbstractProduct.php -------------------------------------------------------------------------------- /Observer/Product/AddUpdate/After.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Observer/Product/AddUpdate/After.php -------------------------------------------------------------------------------- /Observer/Product/AddUpdate/Before.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Observer/Product/AddUpdate/Before.php -------------------------------------------------------------------------------- /Observer/Product/Delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Observer/Product/Delete.php -------------------------------------------------------------------------------- /Observer/Shipment/AbstractShipment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Observer/Shipment/AbstractShipment.php -------------------------------------------------------------------------------- /Observer/Shipment/Item.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Observer/Shipment/Item.php -------------------------------------------------------------------------------- /Observer/Shipment/Track.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Observer/Shipment/Track.php -------------------------------------------------------------------------------- /Observer/Shipment/View.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Observer/Shipment/View.php -------------------------------------------------------------------------------- /Observer/StockItem/Save/After.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Observer/StockItem/Save/After.php -------------------------------------------------------------------------------- /Observer/StockItem/Save/Before.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Observer/StockItem/Save/Before.php -------------------------------------------------------------------------------- /Observer/Walmart/Order.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Observer/Walmart/Order.php -------------------------------------------------------------------------------- /Observer/Walmart/Order/Item.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Observer/Walmart/Order/Item.php -------------------------------------------------------------------------------- /Plugin/AbstractPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Plugin/AbstractPlugin.php -------------------------------------------------------------------------------- /Plugin/Order/Magento/View.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Plugin/Order/Magento/View.php -------------------------------------------------------------------------------- /Plugin/Product/Action/BulkUpdate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Plugin/Product/Action/BulkUpdate.php -------------------------------------------------------------------------------- /PublicServices/Product/SqlChange.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/PublicServices/Product/SqlChange.php -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/README.md -------------------------------------------------------------------------------- /Setup/LoggerFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Setup/LoggerFactory.php -------------------------------------------------------------------------------- /Setup/MigrationFromMagento1/Mapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Setup/MigrationFromMagento1/Mapper.php -------------------------------------------------------------------------------- /Setup/MigrationFromMagento1/Runner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Setup/MigrationFromMagento1/Runner.php -------------------------------------------------------------------------------- /Setup/RecurringData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Setup/RecurringData.php -------------------------------------------------------------------------------- /Setup/Uninstall.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Setup/Uninstall.php -------------------------------------------------------------------------------- /Setup/Update/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Setup/Update/Config.php -------------------------------------------------------------------------------- /Setup/Update/dev/AddAmazonCollects.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Setup/Update/dev/AddAmazonCollects.php -------------------------------------------------------------------------------- /Setup/Update/dev/ModuleConfigs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Setup/Update/dev/ModuleConfigs.php -------------------------------------------------------------------------------- /Setup/Update/dev/PrimaryConfigs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Setup/Update/dev/PrimaryConfigs.php -------------------------------------------------------------------------------- /Setup/Update/y19_m01/NewCronRunner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Setup/Update/y19_m01/NewCronRunner.php -------------------------------------------------------------------------------- /Setup/Update/y19_m04/Maintenance.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Setup/Update/y19_m04/Maintenance.php -------------------------------------------------------------------------------- /Setup/Update/y19_m04/Walmart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Setup/Update/y19_m04/Walmart.php -------------------------------------------------------------------------------- /Setup/Update/y19_m10/Configs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Setup/Update/y19_m10/Configs.php -------------------------------------------------------------------------------- /Setup/Update/y19_m10/DropAutoMove.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Setup/Update/y19_m10/DropAutoMove.php -------------------------------------------------------------------------------- /Setup/Update/y19_m11/AddEpidsAu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Setup/Update/y19_m11/AddEpidsAu.php -------------------------------------------------------------------------------- /Setup/Update/y20_m01/EbayLotSize.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Setup/Update/y20_m01/EbayLotSize.php -------------------------------------------------------------------------------- /Setup/Update/y20_m02/Configs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Setup/Update/y20_m02/Configs.php -------------------------------------------------------------------------------- /Setup/Update/y20_m02/OrderNote.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Setup/Update/y20_m02/OrderNote.php -------------------------------------------------------------------------------- /Setup/Update/y20_m03/AmazonNL.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Setup/Update/y20_m03/AmazonNL.php -------------------------------------------------------------------------------- /Setup/Update/y20_m03/CronStrategy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Setup/Update/y20_m03/CronStrategy.php -------------------------------------------------------------------------------- /Setup/Update/y20_m05/CacheConfigs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Setup/Update/y20_m05/CacheConfigs.php -------------------------------------------------------------------------------- /Setup/Update/y20_m05/Logs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Setup/Update/y20_m05/Logs.php -------------------------------------------------------------------------------- /Setup/Update/y20_m05/ModuleConfigs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Setup/Update/y20_m05/ModuleConfigs.php -------------------------------------------------------------------------------- /Setup/Update/y20_m06/AmazonConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Setup/Update/y20_m06/AmazonConfig.php -------------------------------------------------------------------------------- /Setup/Update/y20_m06/EbayConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Setup/Update/y20_m06/EbayConfig.php -------------------------------------------------------------------------------- /Setup/Update/y20_m06/GeneralConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Setup/Update/y20_m06/GeneralConfig.php -------------------------------------------------------------------------------- /Setup/Update/y20_m08/AmazonSkipTax.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Setup/Update/y20_m08/AmazonSkipTax.php -------------------------------------------------------------------------------- /Setup/Update/y20_m08/AmazonTR.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Setup/Update/y20_m08/AmazonTR.php -------------------------------------------------------------------------------- /Setup/Update/y20_m09/AmazonSE.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Setup/Update/y20_m09/AmazonSE.php -------------------------------------------------------------------------------- /Setup/Update/y21_m01/AmazonJP.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Setup/Update/y21_m01/AmazonJP.php -------------------------------------------------------------------------------- /Setup/Update/y21_m02/AmazonPL.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Setup/Update/y21_m02/AmazonPL.php -------------------------------------------------------------------------------- /Setup/Update/y21_m04/AddShipByDate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Setup/Update/y21_m04/AddShipByDate.php -------------------------------------------------------------------------------- /Setup/Update/y21_m06/FixBrokenUrl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Setup/Update/y21_m06/FixBrokenUrl.php -------------------------------------------------------------------------------- /Setup/Update/y23_m02/AddTags.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Setup/Update/y23_m02/AddTags.php -------------------------------------------------------------------------------- /Setup/Update/y23_m03/UpgradeTags.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Setup/Update/y23_m03/UpgradeTags.php -------------------------------------------------------------------------------- /Setup/Update/y24_m07/AddEbayVideo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Setup/Update/y24_m07/AddEbayVideo.php -------------------------------------------------------------------------------- /Ui/DataProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/Ui/DataProvider.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/composer.json -------------------------------------------------------------------------------- /etc/acl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/etc/acl.xml -------------------------------------------------------------------------------- /etc/adminhtml/di.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/etc/adminhtml/di.xml -------------------------------------------------------------------------------- /etc/adminhtml/events.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/etc/adminhtml/events.xml -------------------------------------------------------------------------------- /etc/adminhtml/menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/etc/adminhtml/menu.xml -------------------------------------------------------------------------------- /etc/adminhtml/routes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/etc/adminhtml/routes.xml -------------------------------------------------------------------------------- /etc/adminhtml/system.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/etc/adminhtml/system.xml -------------------------------------------------------------------------------- /etc/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/etc/config.xml -------------------------------------------------------------------------------- /etc/crontab.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/etc/crontab.xml -------------------------------------------------------------------------------- /etc/csp_whitelist.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/etc/csp_whitelist.xml -------------------------------------------------------------------------------- /etc/di.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/etc/di.xml -------------------------------------------------------------------------------- /etc/email_templates.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/etc/email_templates.xml -------------------------------------------------------------------------------- /etc/events.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/etc/events.xml -------------------------------------------------------------------------------- /etc/frontend/routes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/etc/frontend/routes.xml -------------------------------------------------------------------------------- /etc/module.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/etc/module.xml -------------------------------------------------------------------------------- /etc/sales.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/etc/sales.xml -------------------------------------------------------------------------------- /etc/webapi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/etc/webapi.xml -------------------------------------------------------------------------------- /i18n/de_AT.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/i18n/de_AT.csv -------------------------------------------------------------------------------- /i18n/de_CH.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/i18n/de_CH.csv -------------------------------------------------------------------------------- /i18n/de_DE.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/i18n/de_DE.csv -------------------------------------------------------------------------------- /i18n/es_ES.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/i18n/es_ES.csv -------------------------------------------------------------------------------- /i18n/fr_CA.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/i18n/fr_CA.csv -------------------------------------------------------------------------------- /i18n/fr_FR.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/i18n/fr_FR.csv -------------------------------------------------------------------------------- /i18n/it_CH.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/i18n/it_CH.csv -------------------------------------------------------------------------------- /i18n/it_IT.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/i18n/it_IT.csv -------------------------------------------------------------------------------- /registration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/registration.php -------------------------------------------------------------------------------- /requirements.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/requirements.json -------------------------------------------------------------------------------- /view/adminhtml/layout/1column.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/view/adminhtml/layout/1column.xml -------------------------------------------------------------------------------- /view/adminhtml/layout/2columns.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/view/adminhtml/layout/2columns.xml -------------------------------------------------------------------------------- /view/adminhtml/layout/blank.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/view/adminhtml/layout/blank.xml -------------------------------------------------------------------------------- /view/adminhtml/requirejs-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/view/adminhtml/requirejs-config.js -------------------------------------------------------------------------------- /view/adminhtml/templates/ebay/template/edit/form.phtml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /view/adminhtml/templates/general.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/view/adminhtml/templates/general.phtml -------------------------------------------------------------------------------- /view/adminhtml/web/css/developers.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/view/adminhtml/web/css/developers.css -------------------------------------------------------------------------------- /view/adminhtml/web/css/ebay/order/grid.css: -------------------------------------------------------------------------------- 1 | .grid-listing-column-magento_order_num { 2 | width: 250px; 3 | } 4 | -------------------------------------------------------------------------------- /view/adminhtml/web/css/ebay/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/view/adminhtml/web/css/ebay/style.css -------------------------------------------------------------------------------- /view/adminhtml/web/css/grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/view/adminhtml/web/css/grid.css -------------------------------------------------------------------------------- /view/adminhtml/web/css/help_block.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/view/adminhtml/web/css/help_block.css -------------------------------------------------------------------------------- /view/adminhtml/web/css/log/grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/view/adminhtml/web/css/log/grid.css -------------------------------------------------------------------------------- /view/adminhtml/web/css/magento/product/grid.css: -------------------------------------------------------------------------------- 1 | .grid-listing-column-is_in_stock { 2 | width: 150px; 3 | } -------------------------------------------------------------------------------- /view/adminhtml/web/css/order.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/view/adminhtml/web/css/order.css -------------------------------------------------------------------------------- /view/adminhtml/web/css/order/log/grid.css: -------------------------------------------------------------------------------- 1 | .col-channel_order_id { 2 | width: 150px; 3 | } -------------------------------------------------------------------------------- /view/adminhtml/web/css/policy/grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/view/adminhtml/web/css/policy/grid.css -------------------------------------------------------------------------------- /view/adminhtml/web/css/settings.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/view/adminhtml/web/css/settings.css -------------------------------------------------------------------------------- /view/adminhtml/web/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/view/adminhtml/web/css/style.css -------------------------------------------------------------------------------- /view/adminhtml/web/css/support.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/view/adminhtml/web/css/support.css -------------------------------------------------------------------------------- /view/adminhtml/web/css/switcher.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/view/adminhtml/web/css/switcher.css -------------------------------------------------------------------------------- /view/adminhtml/web/css/wizard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/view/adminhtml/web/css/wizard.css -------------------------------------------------------------------------------- /view/adminhtml/web/fonts/amazon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/view/adminhtml/web/fonts/amazon.svg -------------------------------------------------------------------------------- /view/adminhtml/web/fonts/ebay.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/view/adminhtml/web/fonts/ebay.svg -------------------------------------------------------------------------------- /view/adminhtml/web/fonts/m2epro.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/view/adminhtml/web/fonts/m2epro.svg -------------------------------------------------------------------------------- /view/adminhtml/web/fonts/walmart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/view/adminhtml/web/fonts/walmart.svg -------------------------------------------------------------------------------- /view/adminhtml/web/images/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/view/adminhtml/web/images/add.png -------------------------------------------------------------------------------- /view/adminhtml/web/images/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/view/adminhtml/web/images/delete.png -------------------------------------------------------------------------------- /view/adminhtml/web/images/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/view/adminhtml/web/images/error.png -------------------------------------------------------------------------------- /view/adminhtml/web/images/grid-cal.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/view/adminhtml/web/images/grid-cal.gif -------------------------------------------------------------------------------- /view/adminhtml/web/images/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/view/adminhtml/web/images/help.png -------------------------------------------------------------------------------- /view/adminhtml/web/images/i_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/view/adminhtml/web/images/i_icon.png -------------------------------------------------------------------------------- /view/adminhtml/web/images/i_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/view/adminhtml/web/images/i_logo.png -------------------------------------------------------------------------------- /view/adminhtml/web/images/i_notice.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/view/adminhtml/web/images/i_notice.gif -------------------------------------------------------------------------------- /view/adminhtml/web/images/next.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/view/adminhtml/web/images/next.gif -------------------------------------------------------------------------------- /view/adminhtml/web/images/pencil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/view/adminhtml/web/images/pencil.png -------------------------------------------------------------------------------- /view/adminhtml/web/images/prime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/view/adminhtml/web/images/prime.png -------------------------------------------------------------------------------- /view/adminhtml/web/images/search.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/view/adminhtml/web/images/search.gif -------------------------------------------------------------------------------- /view/adminhtml/web/images/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/view/adminhtml/web/images/settings.png -------------------------------------------------------------------------------- /view/adminhtml/web/images/warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/view/adminhtml/web/images/warning.png -------------------------------------------------------------------------------- /view/adminhtml/web/js/Action.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/view/adminhtml/web/js/Action.js -------------------------------------------------------------------------------- /view/adminhtml/web/js/Amazon/Order.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/view/adminhtml/web/js/Amazon/Order.js -------------------------------------------------------------------------------- /view/adminhtml/web/js/Attribute.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/view/adminhtml/web/js/Attribute.js -------------------------------------------------------------------------------- /view/adminhtml/web/js/ChartJs/Bar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/view/adminhtml/web/js/ChartJs/Bar.js -------------------------------------------------------------------------------- /view/adminhtml/web/js/Common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/view/adminhtml/web/js/Common.js -------------------------------------------------------------------------------- /view/adminhtml/web/js/ControlPanel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/view/adminhtml/web/js/ControlPanel.js -------------------------------------------------------------------------------- /view/adminhtml/web/js/Developers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/view/adminhtml/web/js/Developers.js -------------------------------------------------------------------------------- /view/adminhtml/web/js/Ebay/Account.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/view/adminhtml/web/js/Ebay/Account.js -------------------------------------------------------------------------------- /view/adminhtml/web/js/Ebay/Settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/view/adminhtml/web/js/Ebay/Settings.js -------------------------------------------------------------------------------- /view/adminhtml/web/js/General/Php.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/view/adminhtml/web/js/General/Php.js -------------------------------------------------------------------------------- /view/adminhtml/web/js/General/Url.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/view/adminhtml/web/js/General/Url.js -------------------------------------------------------------------------------- /view/adminhtml/web/js/Grid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/view/adminhtml/web/js/Grid.js -------------------------------------------------------------------------------- /view/adminhtml/web/js/HealthStatus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/view/adminhtml/web/js/HealthStatus.js -------------------------------------------------------------------------------- /view/adminhtml/web/js/Listing/Other.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/view/adminhtml/web/js/Listing/Other.js -------------------------------------------------------------------------------- /view/adminhtml/web/js/Log.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/view/adminhtml/web/js/Log.js -------------------------------------------------------------------------------- /view/adminhtml/web/js/Log/View.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/view/adminhtml/web/js/Log/View.js -------------------------------------------------------------------------------- /view/adminhtml/web/js/M2ePro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/view/adminhtml/web/js/M2ePro.js -------------------------------------------------------------------------------- /view/adminhtml/web/js/Marketplace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/view/adminhtml/web/js/Marketplace.js -------------------------------------------------------------------------------- /view/adminhtml/web/js/Order.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/view/adminhtml/web/js/Order.js -------------------------------------------------------------------------------- /view/adminhtml/web/js/Order/Debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/view/adminhtml/web/js/Order/Debug.js -------------------------------------------------------------------------------- /view/adminhtml/web/js/Order/Note.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/view/adminhtml/web/js/Order/Note.js -------------------------------------------------------------------------------- /view/adminhtml/web/js/Plugin/Alert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/view/adminhtml/web/js/Plugin/Alert.js -------------------------------------------------------------------------------- /view/adminhtml/web/js/Settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/view/adminhtml/web/js/Settings.js -------------------------------------------------------------------------------- /view/adminhtml/web/js/SynchProgress.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/view/adminhtml/web/js/SynchProgress.js -------------------------------------------------------------------------------- /view/adminhtml/web/js/Template/Edit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/view/adminhtml/web/js/Template/Edit.js -------------------------------------------------------------------------------- /view/adminhtml/web/js/Wizard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2epro/magento2-extension/HEAD/view/adminhtml/web/js/Wizard.js --------------------------------------------------------------------------------