p16r.nl

Shopware 6 - List of events

September 29, 2020 - 10 min read

Shopware 6 allows you to create webhooks that listen to internal Shopware 6 events to trigger custom code, following the Observer Pattern.

You can find these events by running the following command in your Shopware 6 root directory: grep -r const vendor/shopware | grep "_EVENT = " | cut -d -f7-9

This list is generated from a 6.3.1.0 version and might not be complete: Shopware 6 might dynamically generate events that are fired. These are the 588 events I’ve found.

If you search for these constants, you’ll find an @Event() annotation above the constant definition. When this class is instantiated, the corresponding event is triggered.

CATEGORY_WRITTEN_EVENT = category.written
CATEGORY_DELETED_EVENT = category.deleted
CATEGORY_LOADED_EVENT = category.loaded
CATEGORY_SEARCH_RESULT_LOADED_EVENT = category.search.result.loaded
CATEGORY_AGGREGATION_LOADED_EVENT = category.aggregation.result.loaded
CATEGORY_ID_SEARCH_RESULT_LOADED_EVENT = category.id.search.result.loaded
CATEGORY_TRANSLATION_WRITTEN_EVENT = category_translation.written
CATEGORY_TRANSLATION_DELETED_EVENT = category_translation.deleted
CATEGORY_TRANSLATION_LOADED_EVENT = category_translation.loaded
CATEGORY_TRANSLATION_SEARCH_RESULT_LOADED_EVENT = category_translation.search.result.loaded
CATEGORY_TRANSLATION_AGGREGATION_LOADED_EVENT = category_translation.aggregation.result.loaded
CATEGORY_TRANSLATION_ID_SEARCH_RESULT_LOADED_EVENT = category_translation.id.search.result.loaded
CATEGORY_INDEXER_EVENT = CategoryIndexerEvent::class
PAGE_WRITTEN_EVENT = cms_page.written
PAGE_DELETED_EVENT = cms_page.deleted
PAGE_LOADED_EVENT = cms_page.loaded
PAGE_SEARCH_RESULT_LOADED_EVENT = cms_page.search.result.loaded
PAGE_AGGREGATION_LOADED_EVENT = cms_page.aggregation.result.loaded
PAGE_ID_SEARCH_RESULT_LOADED_EVENT = cms_page.id.search.result.loaded
BLOCK_WRITTEN_EVENT = cms_block.written
BLOCK_DELETED_EVENT = cms_block.deleted
BLOCK_LOADED_EVENT = cms_block.loaded
BLOCK_SEARCH_RESULT_LOADED_EVENT = cms_block.search.result.loaded
BLOCK_AGGREGATION_LOADED_EVENT = cms_block.aggregation.result.loaded
BLOCK_ID_SEARCH_RESULT_LOADED_EVENT = cms_block.id.search.result.loaded
SLOT_WRITTEN_EVENT = cms_slot.written
SLOT_DELETED_EVENT = cms_slot.deleted
SLOT_LOADED_EVENT = cms_slot.loaded
SLOT_SEARCH_RESULT_LOADED_EVENT = cms_slot.search.result.loaded
SLOT_AGGREGATION_LOADED_EVENT = cms_slot.aggregation.result.loaded
SLOT_ID_SEARCH_RESULT_LOADED_EVENT = cms_slot.id.search.result.loaded
MAIL_TEMPLATE_WRITTEN_EVENT = mail_template.written
MAIL_TEMPLATE_DELETED_EVENT = mail_template.deleted
MAIL_TEMPLATE_LOADED_EVENT = mail_template.loaded
MAIL_TEMPLATE_SEARCH_RESULT_LOADED_EVENT = mail_template.search.result.loaded
MAIL_TEMPLATE_AGGREGATION_LOADED_EVENT = mail_template.aggregation.result.loaded
MAIL_TEMPLATE_ID_SEARCH_RESULT_LOADED_EVENT = mail_template.id.search.result.loaded
MAIL_TEMPLATE_TRANSLATION_WRITTEN_EVENT = mail_template_translation.written
MAIL_TEMPLATE_TRANSLATION_DELETED_EVENT = mail_template_translation.deleted
MAIL_TEMPLATE_TRANSLATION_LOADED_EVENT = mail_template_translation.loaded
MAIL_TEMPLATE_TRANSLATION_SEARCH_RESULT_LOADED_EVENT = mail_template_translation.search.result.loaded
MAIL_TEMPLATE_TRANSLATION_AGGREGATION_LOADED_EVENT = mail_template_translation.aggregation.result.loaded
MAIL_TEMPLATE_TRANSLATION_ID_SEARCH_RESULT_LOADED_EVENT = mail_template_translation.id.search.result.loaded
MAIL_TEMPLATE_SALES_CHANNEL_WRITTEN_EVENT = mail_template_sales_channel.written
MAIL_TEMPLATE_SALES_CHANNEL_DELETED_EVENT = mail_template_sales_channel.deleted
MAIL_TEMPLATE_SALES_CHANNEL_LOADED_EVENT = mail_template_sales_channel.loaded
MAIL_TEMPLATE_SALES_CHANNEL_SEARCH_RESULT_LOADED_EVENT = mail_template_sales_channel.search.result.loaded
MAIL_TEMPLATE_SALES_CHANNEL_AGGREGATION_LOADED_EVENT = mail_template_sales_channel.aggregation.result.loaded
MAIL_TEMPLATE_SALES_CHANNEL_ID_SEARCH_RESULT_LOADED_EVENT = mail_template_sales_channel.id.search.result.loaded
MAIL_TEMPLATE_MEDIA_WRITTEN_EVENT = mail_template_media.written
MAIL_TEMPLATE_MEDIA_DELETED_EVENT = mail_template_media.deleted
MAIL_TEMPLATE_MEDIA_LOADED_EVENT = mail_template_media.loaded
MAIL_TEMPLATE_MEDIA_SEARCH_RESULT_LOADED_EVENT = mail_template_media.search.result.loaded
MAIL_TEMPLATE_MEDIA_AGGREGATION_LOADED_EVENT = mail_template_media.aggregation.result.loaded
MAIL_TEMPLATE_MEDIA_ID_SEARCH_RESULT_LOADED_EVENT = mail_template_media.id.search.result.loaded
MAIL_HEADER_FOOTER_WRITTEN_EVENT = mail_header_footer.written
MAIL_HEADER_FOOTER_DELETED_EVENT = mail_header_footer.deleted
MAIL_HEADER_FOOTER_LOADED_EVENT = mail_header_footer.loaded
MAIL_HEADER_FOOTER_SEARCH_RESULT_LOADED_EVENT = mail_header_footer.search.result.loaded
MAIL_HEADER_FOOTER_AGGREGATION_LOADED_EVENT = mail_header_footer.aggregation.result.loaded
MAIL_HEADER_FOOTER_ID_SEARCH_RESULT_LOADED_EVENT = mail_header_footer.id.search.result.loaded
MAIL_HEADER_FOOTER_TRANSLATION_WRITTEN_EVENT = mail_header_footer_translation.written
MAIL_HEADER_FOOTER_TRANSLATION_DELETED_EVENT = mail_header_footer_translation.deleted
MAIL_HEADER_FOOTER_TRANSLATION_LOADED_EVENT = mail_header_footer_translation.loaded
MAIL_HEADER_FOOTER_TRANSLATION_SEARCH_RESULT_LOADED_EVENT = mail_header_footer_translation.search.result.loaded
MAIL_HEADER_FOOTER_TRANSLATION_AGGREGATION_LOADED_EVENT = mail_header_footer_translation.aggregation.result.loaded
MAIL_HEADER_FOOTER_TRANSLATION_ID_SEARCH_RESULT_LOADED_EVENT = mail_header_footer_translation.id.search.result.loaded
MAIL_HEADER_FOOTER_SALES_CHANNEL_WRITTEN_EVENT = mail_header_footer_sales_channel.written
MAIL_HEADER_FOOTER_SALES_CHANNEL_DELETED_EVENT = mail_header_footer_sales_channel.deleted
MAIL_HEADER_FOOTER_SALES_CHANNEL_LOADED_EVENT = mail_header_footer_sales_channel.loaded
MAIL_HEADER_FOOTER_SALES_CHANNEL_SEARCH_RESULT_LOADED_EVENT = mail_header_footer_sales_channel.search.result.loaded
MAIL_HEADER_FOOTER_SALES_CHANNEL_AGGREGATION_LOADED_EVENT = mail_header_footer_sales_channel.aggregation.result.loaded
MAIL_HEADER_FOOTER_SALES_CHANNEL_ID_SEARCH_RESULT_LOADED_EVENT = mail_header_footer_sales_channel.id.search.result.loaded
RULE_WRITTEN_EVENT = rule.written
RULE_DELETED_EVENT = rule.deleted
RULE_LOADED_EVENT = rule.loaded
RULE_SEARCH_RESULT_LOADED_EVENT = rule.search.result.loaded
RULE_AGGREGATION_LOADED_EVENT = rule.aggregation.result.loaded
RULE_ID_SEARCH_RESULT_LOADED_EVENT = rule.id.search.result.loaded
RULE_INDEXER_EVENT = RuleIndexerEvent::class
MEDIA_WRITTEN_EVENT = media.written
MEDIA_DELETED_EVENT = media.deleted
MEDIA_LOADED_EVENT = media.loaded
MEDIA_SEARCH_RESULT_LOADED_EVENT = media.search.result.loaded
MEDIA_AGGREGATION_LOADED_EVENT = media.aggregation.result.loaded
MEDIA_INDEXER_EVENT = MediaIndexerEvent::class
MEDIA_FOLDER_CONFIGURATION_INDEXER_EVENT = MediaFolderConfigurationIndexerEvent::class
MEDIA_FOLDER_INDEXER_EVENT = MediaFolderIndexerEvent::class
MEDIA_ID_SEARCH_RESULT_LOADED_EVENT = media.id.search.result.loaded
MEDIA_TRANSLATION_WRITTEN_EVENT = media_translation.written
MEDIA_TRANSLATION_DELETED_EVENT = media_translation.deleted
MEDIA_TRANSLATION_LOADED_EVENT = media_translation.loaded
MEDIA_TRANSLATION_SEARCH_RESULT_LOADED_EVENT = media_translation.search.result.loaded
MEDIA_TRANSLATION_AGGREGATION_LOADED_EVENT = media_translation.aggregation.result.loaded
MEDIA_TRANSLATION_ID_SEARCH_RESULT_LOADED_EVENT = media_translation.id.search.result.loaded
SEO_URL_WRITTEN_EVENT = seo_url.written
SEO_URL_DELETED_EVENT = seo_url.deleted
SEO_URL_LOADED_EVENT = seo_url.loaded
SEO_URL_SEARCH_RESULT_LOADED_EVENT = seo_url.search.result.loaded
SEO_URL_AGGREGATION_LOADED_EVENT = seo_url.aggregation.result.loaded
SEO_URL_ID_SEARCH_RESULT_LOADED_EVENT = seo_url.id.search.result.loaded
SEO_URL_TEMPLATE_WRITTEN_EVENT = seo_url_template.written
SEO_URL_TEMPLATE_DELETED_EVENT = seo_url_template.deleted
SEO_URL_TEMPLATE_LOADED_EVENT = seo_url_template.loaded
SEO_URL_TEMPLATE_SEARCH_RESULT_LOADED_EVENT = seo_url_template.search.result.loaded
SEO_URL_TEMPLATE_AGGREGATION_LOADED_EVENT = seo_url_template.aggregation.result.loaded
SEO_URL_TEMPLATE_ID_SEARCH_RESULT_LOADED_EVENT = seo_url_template.id.search.result.loaded
PRODUCT_INDEXER_EVENT = ProductIndexerEvent::class
PRODUCT_WRITTEN_EVENT = product.written
PRODUCT_DELETED_EVENT = product.deleted
PRODUCT_LOADED_EVENT = product.loaded
PRODUCT_SEARCH_RESULT_LOADED_EVENT = product.search.result.loaded
PRODUCT_AGGREGATION_LOADED_EVENT = product.aggregation.result.loaded
PRODUCT_ID_SEARCH_RESULT_LOADED_EVENT = product.id.search.result.loaded
PRODUCT_CATEGORY_WRITTEN_EVENT = product_category.written
PRODUCT_CATEGORY_DELETED_EVENT = product_category.deleted
PRODUCT_CATEGORY_LOADED_EVENT = product_category.loaded
PRODUCT_CATEGORY_SEARCH_RESULT_LOADED_EVENT = product_category.search.result.loaded
PRODUCT_CATEGORY_AGGREGATION_LOADED_EVENT = product_category.aggregation.result.loaded
PRODUCT_CATEGORY_ID_SEARCH_RESULT_LOADED_EVENT = product_category.id.search.result.loaded
PRODUCT_CONFIGURATOR_SETTING_WRITTEN_EVENT = product_configurator_setting.written
PRODUCT_CONFIGURATOR_SETTING_DELETED_EVENT = product_configurator_setting.deleted
PRODUCT_CONFIGURATOR_SETTING_LOADED_EVENT = product_configurator_setting.loaded
PRODUCT_CONFIGURATOR_SETTING_SEARCH_RESULT_LOADED_EVENT = product_configurator_setting.search.result.loaded
PRODUCT_CONFIGURATOR_SETTING_AGGREGATION_LOADED_EVENT = product_configurator_setting.aggregation.result.loaded
PRODUCT_CONFIGURATOR_SETTING_ID_SEARCH_RESULT_LOADED_EVENT = product_configurator_setting.id.search.result.loaded
PRODUCT_PRICE_WRITTEN_EVENT = product_price.written
PRODUCT_PRICE_DELETED_EVENT = product_price.deleted
PRODUCT_PRICE_LOADED_EVENT = product_price.loaded
PRODUCT_PRICE_SEARCH_RESULT_LOADED_EVENT = product_price.search.result.loaded
PRODUCT_PRICE_AGGREGATION_LOADED_EVENT = product_price.aggregation.result.loaded
PRODUCT_PRICE_ID_SEARCH_RESULT_LOADED_EVENT = product_price.id.search.result.loaded
PRODUCT_PROPERTY_WRITTEN_EVENT = product_property.written
PRODUCT_PROPERTY_DELETED_EVENT = product_property.deleted
PRODUCT_PROPERTY_LOADED_EVENT = product_property.loaded
PRODUCT_PROPERTY_SEARCH_RESULT_LOADED_EVENT = product_property.search.result.loaded
PRODUCT_PROPERTY_AGGREGATION_LOADED_EVENT = product_property.aggregation.result.loaded
PRODUCT_PROPERTY_ID_SEARCH_RESULT_LOADED_EVENT = product_property.id.search.result.loaded
PRODUCT_MANUFACTURER_WRITTEN_EVENT = product_manufacturer.written
PRODUCT_MANUFACTURER_DELETED_EVENT = product_manufacturer.deleted
PRODUCT_MANUFACTURER_LOADED_EVENT = product_manufacturer.loaded
PRODUCT_MANUFACTURER_SEARCH_RESULT_LOADED_EVENT = product_manufacturer.search.result.loaded
PRODUCT_MANUFACTURER_AGGREGATION_LOADED_EVENT = product_manufacturer.aggregation.result.loaded
PRODUCT_MANUFACTURER_ID_SEARCH_RESULT_LOADED_EVENT = product_manufacturer.id.search.result.loaded
PRODUCT_MANUFACTURER_TRANSLATION_WRITTEN_EVENT = product_manufacturer_translation.written
PRODUCT_MANUFACTURER_TRANSLATION_DELETED_EVENT = product_manufacturer_translation.deleted
PRODUCT_MANUFACTURER_TRANSLATION_LOADED_EVENT = product_manufacturer_translation.loaded
PRODUCT_MANUFACTURER_TRANSLATION_SEARCH_RESULT_LOADED_EVENT = product_manufacturer_translation.search.result.loaded
PRODUCT_MANUFACTURER_TRANSLATION_AGGREGATION_LOADED_EVENT = product_manufacturer_translation.aggregation.result.loaded
PRODUCT_MANUFACTURER_TRANSLATION_ID_SEARCH_RESULT_LOADED_EVENT = product_manufacturer_translation.id.search.result.loaded
PRODUCT_MEDIA_WRITTEN_EVENT = product_media.written
PRODUCT_MEDIA_DELETED_EVENT = product_media.deleted
PRODUCT_MEDIA_LOADED_EVENT = product_media.loaded
PRODUCT_MEDIA_SEARCH_RESULT_LOADED_EVENT = product_media.search.result.loaded
PRODUCT_MEDIA_AGGREGATION_LOADED_EVENT = product_media.aggregation.result.loaded
PRODUCT_MEDIA_ID_SEARCH_RESULT_LOADED_EVENT = product_media.id.search.result.loaded
PRODUCT_SEARCH_KEYWORD_WRITTEN_EVENT = product_search_keyword.written
PRODUCT_SEARCH_KEYWORD_DELETED_EVENT = product_search_keyword.deleted
PRODUCT_SEARCH_KEYWORD_LOADED_EVENT = product_search_keyword.loaded
PRODUCT_SEARCH_KEYWORD_SEARCH_RESULT_LOADED_EVENT = product_search_keyword.search.result.loaded
PRODUCT_SEARCH_KEYWORD_AGGREGATION_LOADED_EVENT = product_search_keyword.aggregation.result.loaded
PRODUCT_SEARCH_KEYWORD_ID_SEARCH_RESULT_LOADED_EVENT = product_search_keyword.id.search.result.loaded
PRODUCT_SEO_CATEGORY_WRITTEN_EVENT = product_seo_category.written
PRODUCT_SEO_CATEGORY_DELETED_EVENT = product_seo_category.deleted
PRODUCT_SEO_CATEGORY_LOADED_EVENT = product_seo_category.loaded
PRODUCT_SEO_CATEGORY_SEARCH_RESULT_LOADED_EVENT = product_seo_category.search.result.loaded
PRODUCT_SEO_CATEGORY_AGGREGATION_LOADED_EVENT = product_seo_category.aggregation.result.loaded
PRODUCT_SEO_CATEGORY_ID_SEARCH_RESULT_LOADED_EVENT = product_seo_category.id.search.result.loaded
PRODUCT_SERVICE_WRITTEN_EVENT = product_service.written
PRODUCT_SERVICE_DELETED_EVENT = product_service.deleted
PRODUCT_SERVICE_LOADED_EVENT = product_service.loaded
PRODUCT_SERVICE_SEARCH_RESULT_LOADED_EVENT = product_service.search.result.loaded
PRODUCT_SERVICE_AGGREGATION_LOADED_EVENT = product_service.aggregation.result.loaded
PRODUCT_SERVICE_ID_SEARCH_RESULT_LOADED_EVENT = product_service.id.search.result.loaded
PRODUCT_STREAM_WRITTEN_EVENT = product_stream.written
PRODUCT_STREAM_DELETED_EVENT = product_stream.deleted
PRODUCT_STREAM_LOADED_EVENT = product_stream.loaded
PRODUCT_STREAM_SEARCH_RESULT_LOADED_EVENT = product_stream.search.result.loaded
PRODUCT_STREAM_AGGREGATION_LOADED_EVENT = product_stream.aggregation.result.loaded
PRODUCT_STREAM_ID_SEARCH_RESULT_LOADED_EVENT = product_stream.id.search.result.loaded
PRODUCT_STREAM_ASSIGNMENT_WRITTEN_EVENT = product_stream_assignment.written
PRODUCT_STREAM_ASSIGNMENT_DELETED_EVENT = product_stream_assignment.deleted
PRODUCT_STREAM_ASSIGNMENT_LOADED_EVENT = product_stream_assignment.loaded
PRODUCT_STREAM_ASSIGNMENT_SEARCH_RESULT_LOADED_EVENT = product_stream_assignment.search.result.loaded
PRODUCT_STREAM_ASSIGNMENT_AGGREGATION_LOADED_EVENT = product_stream_assignment.aggregation.result.loaded
PRODUCT_STREAM_ASSIGNMENT_ID_SEARCH_RESULT_LOADED_EVENT = product_stream_assignment.id.search.result.loaded
PRODUCT_STREAM_TAB_WRITTEN_EVENT = product_stream_tab.written
PRODUCT_STREAM_TAB_DELETED_EVENT = product_stream_tab.deleted
PRODUCT_STREAM_TAB_LOADED_EVENT = product_stream_tab.loaded
PRODUCT_STREAM_TAB_SEARCH_RESULT_LOADED_EVENT = product_stream_tab.search.result.loaded
PRODUCT_STREAM_TAB_AGGREGATION_LOADED_EVENT = product_stream_tab.aggregation.result.loaded
PRODUCT_STREAM_TAB_ID_SEARCH_RESULT_LOADED_EVENT = product_stream_tab.id.search.result.loaded
PRODUCT_TRANSLATION_WRITTEN_EVENT = product_translation.written
PRODUCT_TRANSLATION_DELETED_EVENT = product_translation.deleted
PRODUCT_TRANSLATION_LOADED_EVENT = product_translation.loaded
PRODUCT_TRANSLATION_SEARCH_RESULT_LOADED_EVENT = product_translation.search.result.loaded
PRODUCT_TRANSLATION_AGGREGATION_LOADED_EVENT = product_translation.aggregation.result.loaded
PRODUCT_TRANSLATION_ID_SEARCH_RESULT_LOADED_EVENT = product_translation.id.search.result.loaded
PRODUCT_OPTION_WRITTEN_EVENT = product_option.written
PRODUCT_OPTION_DELETED_EVENT = product_option.deleted
PRODUCT_OPTION_LOADED_EVENT = product_option.loaded
PRODUCT_OPTION_SEARCH_RESULT_LOADED_EVENT = product_option.search.result.loaded
PRODUCT_OPTION_AGGREGATION_LOADED_EVENT = product_option.aggregation.result.loaded
PRODUCT_OPTION_ID_SEARCH_RESULT_LOADED_EVENT = product_option.id.search.result.loaded
PRODUCT_CATEGORY_TREE_WRITTEN_EVENT = product_category_tree.written
PRODUCT_CATEGORY_TREE_DELETED_EVENT = product_category_tree.deleted
PRODUCT_CATEGORY_TREE_LOADED_EVENT = product_category_tree.loaded
PRODUCT_CATEGORY_TREE_SEARCH_RESULT_LOADED_EVENT = product_category_tree.search.result.loaded
PRODUCT_CATEGORY_TREE_AGGREGATION_LOADED_EVENT = product_category_tree.aggregation.result.loaded
PRODUCT_CATEGORY_TREE_ID_SEARCH_RESULT_LOADED_EVENT = product_category_tree.id.search.result.loaded
PRODUCT_REVIEW_WRITTEN_EVENT = product_review.written
PRODUCT_REVIEW_DELETED_EVENT = product_review.deleted
PRODUCT_REVIEW_SEARCH_RESULT_LOADED_EVENT = product_review.search.result.loaded
PRODUCT_REVIEW_AGGREGATION_LOADED_EVENT = product_review.aggregation.result.loaded
PRODUCT_REVIEW_ID_SEARCH_RESULT_LOADED_EVENT = product_review.id.search.result.loaded
IMPORT_EXPORT_FILE_WRITTEN_EVENT = import_export_file.written
IMPORT_EXPORT_FILE_DELETED_EVENT = import_export_file.deleted
IMPORT_EXPORT_FILE_LOADED_EVENT = import_export_file.loaded
IMPORT_EXPORT_FILE_SEARCH_RESULT_LOADED_EVENT = import_export_file.search.result.loaded
IMPORT_EXPORT_FILE_AGGREGATION_LOADED_EVENT = import_export_file.aggregation.result.loaded
IMPORT_EXPORT_FILE_ID_SEARCH_RESULT_LOADED_EVENT = import_export_file.id.search.result.loaded
IMPORT_EXPORT_LOG_WRITTEN_EVENT = import_export_log.written
IMPORT_EXPORT_LOG_DELETED_EVENT = import_export_log.deleted
IMPORT_EXPORT_LOG_LOADED_EVENT = import_export_log.loaded
IMPORT_EXPORT_LOG_SEARCH_RESULT_LOADED_EVENT = import_export_log.search.result.loaded
IMPORT_EXPORT_LOG_AGGREGATION_LOADED_EVENT = import_export_log.aggregation.result.loaded
IMPORT_EXPORT_LOG_ID_SEARCH_RESULT_LOADED_EVENT = import_export_log.id.search.result.loaded
IMPORT_EXPORT_PROFILE_WRITTEN_EVENT = import_export_profile.written
IMPORT_EXPORT_PROFILE_DELETED_EVENT = import_export_profile.deleted
IMPORT_EXPORT_PROFILE_LOADED_EVENT = import_export_profile.loaded
IMPORT_EXPORT_PROFILE_SEARCH_RESULT_LOADED_EVENT = import_export_profile.search.result.loaded
IMPORT_EXPORT_PROFILE_AGGREGATION_LOADED_EVENT = import_export_profile.aggregation.result.loaded
IMPORT_EXPORT_PROFILE_ID_SEARCH_RESULT_LOADED_EVENT = import_export_profile.id.search.result.loaded
NEWSLETTER_CONFIRM_EVENT = newsletter.confirm
NEWSLETTER_RECIPIENT_WRITTEN_EVENT = newsletter_recipient.written
NEWSLETTER_RECIPIENT_DELETED_EVENT = newsletter_recipient.deleted
NEWSLETTER_RECIPIENT_LOADED_EVENT = newsletter_recipient.loaded
NEWSLETTER_RECIPIENT_SEARCH_RESULT_LOADED_EVENT = newsletter_recipient.search.result.loaded
NEWSLETTER_RECIPIENT_AGGREGATION_LOADED_EVENT = newsletter_recipient.aggregation.result.loaded
NEWSLETTER_RECIPIENT_ID_SEARCH_RESULT_LOADED_EVENT = newsletter_recipient.id.search.result.loaded
NEWSLETTER_REGISTER_EVENT = newsletter.register
NEWSLETTER_UPDATE_EVENT = newsletter.update
PROPERTY_GROUP_WRITTEN_EVENT = property_group.written
PROPERTY_GROUP_DELETED_EVENT = property_group.deleted
PROPERTY_GROUP_LOADED_EVENT = property_group.loaded
PROPERTY_GROUP_SEARCH_RESULT_LOADED_EVENT = property_group.search.result.loaded
PROPERTY_GROUP_AGGREGATION_LOADED_EVENT = property_group.aggregation.result.loaded
PROPERTY_GROUP_ID_SEARCH_RESULT_LOADED_EVENT = property_group.id.search.result.loaded
PROPERTY_GROUP_OPTION_WRITTEN_EVENT = property_group_option.written
PROPERTY_GROUP_OPTION_DELETED_EVENT = property_group_option.deleted
PROPERTY_GROUP_OPTION_LOADED_EVENT = property_group_option.loaded
PROPERTY_GROUP_OPTION_SEARCH_RESULT_LOADED_EVENT = property_group_option.search.result.loaded
PROPERTY_GROUP_OPTION_AGGREGATION_LOADED_EVENT = property_group_option.aggregation.result.loaded
PROPERTY_GROUP_OPTION_ID_SEARCH_RESULT_LOADED_EVENT = property_group_option.id.search.result.loaded
PROPERTY_GROUP_OPTION_TRANSLATION_WRITTEN_EVENT = property_group_option_translation.written
PROPERTY_GROUP_OPTION_TRANSLATION_DELETED_EVENT = property_group_option_translation.deleted
PROPERTY_GROUP_OPTION_TRANSLATION_LOADED_EVENT = property_group_option_translation.loaded
PROPERTY_GROUP_OPTION_TRANSLATION_SEARCH_RESULT_LOADED_EVENT = property_group_option_translation.search.result.loaded
PROPERTY_GROUP_OPTION_TRANSLATION_AGGREGATION_LOADED_EVENT = property_group_option_translation.aggregation.result.loaded
PROPERTY_GROUP_OPTION_TRANSLATION_ID_SEARCH_RESULT_LOADED_EVENT = property_group_option_translation.id.search.result.loaded
PROPERTY_GROUP_TRANSLATION_WRITTEN_EVENT = property_group_translation.written
PROPERTY_GROUP_TRANSLATION_DELETED_EVENT = property_group_translation.deleted
PROPERTY_GROUP_TRANSLATION_LOADED_EVENT = property_group_translation.loaded
PROPERTY_GROUP_TRANSLATION_SEARCH_RESULT_LOADED_EVENT = property_group_translation.search.result.loaded
PROPERTY_GROUP_TRANSLATION_AGGREGATION_LOADED_EVENT = property_group_translation.aggregation.result.loaded
PROPERTY_GROUP_TRANSLATION_ID_SEARCH_RESULT_LOADED_EVENT = property_group_translation.id.search.result.loaded
UNIT_WRITTEN_EVENT = unit.written
UNIT_DELETED_EVENT = unit.deleted
UNIT_LOADED_EVENT = unit.loaded
UNIT_SEARCH_RESULT_LOADED_EVENT = unit.search.result.loaded
UNIT_AGGREGATION_LOADED_EVENT = unit.aggregation.result.loaded
UNIT_ID_SEARCH_RESULT_LOADED_EVENT = unit.id.search.result.loaded
UNIT_TRANSLATION_WRITTEN_EVENT = unit_translation.written
UNIT_TRANSLATION_DELETED_EVENT = unit_translation.deleted
UNIT_TRANSLATION_LOADED_EVENT = unit_translation.loaded
UNIT_TRANSLATION_SEARCH_RESULT_LOADED_EVENT = unit_translation.search.result.loaded
UNIT_TRANSLATION_AGGREGATION_LOADED_EVENT = unit_translation.aggregation.result.loaded
UNIT_TRANSLATION_ID_SEARCH_RESULT_LOADED_EVENT = unit_translation.id.search.result.loaded
CUSTOM_FIELD_WRITTEN_EVENT = custom_field.written
CUSTOM_FIELD_DELETED_EVENT = custom_field.deleted
CUSTOM_FIELD_LOADED_EVENT = custom_field.loaded
CUSTOM_FIELD_SEARCH_RESULT_LOADED_EVENT = custom_field.search.result.loaded
CUSTOM_FIELD_AGGREGATION_LOADED_EVENT = custom_field.aggregation.result.loaded
CUSTOM_FIELD_ID_SEARCH_RESULT_LOADED_EVENT = custom_field.id.search.result.loaded
CUSTOM_FIELD_SET_WRITTEN_EVENT = custom_field_set.written
CUSTOM_FIELD_SET_DELETED_EVENT = custom_field_set.deleted
CUSTOM_FIELD_SET_LOADED_EVENT = custom_field_set.loaded
CUSTOM_FIELD_SET_SEARCH_RESULT_LOADED_EVENT = custom_field_set.search.result.loaded
CUSTOM_FIELD_SET_AGGREGATION_LOADED_EVENT = custom_field_set.aggregation.result.loaded
CUSTOM_FIELD_SET_ID_SEARCH_RESULT_LOADED_EVENT = custom_field_set.id.search.result.loaded
CUSTOM_FIELD_SET_RELATION_WRITTEN_EVENT = custom_field_set_relation.written
CUSTOM_FIELD_SET_RELATION_DELETED_EVENT = custom_field_set_relation.deleted
CUSTOM_FIELD_SET_RELATION_LOADED_EVENT = custom_field_set_relation.loaded
CUSTOM_FIELD_SET_RELATION_SEARCH_RESULT_LOADED_EVENT = custom_field_set_relation.search.result.loaded
CUSTOM_FIELD_SET_RELATION_AGGREGATION_LOADED_EVENT = custom_field_set_relation.aggregation.result.loaded
CUSTOM_FIELD_SET_RELATION_ID_SEARCH_RESULT_LOADED_EVENT = custom_field_set_relation.id.search.result.loaded
SNIPPET_WRITTEN_EVENT = snippet.written
SNIPPET_DELETED_EVENT = snippet.deleted
SNIPPET_LOADED_EVENT = snippet.loaded
SNIPPET_SEARCH_RESULT_LOADED_EVENT = snippet.search.result.loaded
SNIPPET_AGGREGATION_LOADED_EVENT = snippet.aggregation.result.loaded
SNIPPET_ID_SEARCH_RESULT_LOADED_EVENT = snippet.id.search.result.loaded
SNIPPET_SET_WRITTEN_EVENT = snippet_set.written
SNIPPET_SET_DELETED_EVENT = snippet_set.deleted
SNIPPET_SET_LOADED_EVENT = snippet_set.loaded
SNIPPET_SET_SEARCH_RESULT_LOADED_EVENT = snippet_set.search.result.loaded
SNIPPET_SET_AGGREGATION_LOADED_EVENT = snippet_set.aggregation.result.loaded
SNIPPET_SET_ID_SEARCH_RESULT_LOADED_EVENT = snippet_set.id.search.result.loaded
LOCALE_WRITTEN_EVENT = locale.written
LOCALE_DELETED_EVENT = locale.deleted
LOCALE_LOADED_EVENT = locale.loaded
LOCALE_SEARCH_RESULT_LOADED_EVENT = locale.search.result.loaded
LOCALE_AGGREGATION_LOADED_EVENT = locale.aggregation.result.loaded
LOCALE_ID_SEARCH_RESULT_LOADED_EVENT = locale.id.search.result.loaded
LOCALE_TRANSLATION_WRITTEN_EVENT = locale_translation.written
LOCALE_TRANSLATION_DELETED_EVENT = locale_translation.deleted
LOCALE_TRANSLATION_LOADED_EVENT = locale_translation.loaded
LOCALE_TRANSLATION_SEARCH_RESULT_LOADED_EVENT = locale_translation.search.result.loaded
LOCALE_TRANSLATION_AGGREGATION_LOADED_EVENT = locale_translation.aggregation.result.loaded
LOCALE_TRANSLATION_ID_SEARCH_RESULT_LOADED_EVENT = locale_translation.id.search.result.loaded
USER_WRITTEN_EVENT = user.written
USER_DELETED_EVENT = user.deleted
USER_LOADED_EVENT = user.loaded
USER_SEARCH_RESULT_LOADED_EVENT = user.search.result.loaded
USER_AGGREGATION_LOADED_EVENT = user.aggregation.result.loaded
USER_ID_SEARCH_RESULT_LOADED_EVENT = user.id.search.result.loaded
USER_ACCESS_KEY_WRITTEN_EVENT = user_access_key.written
USER_ACCESS_KEY_DELETED_EVENT = user_access_key.deleted
USER_ACCESS_KEY_LOADED_EVENT = user_access_key.loaded
USER_ACCESS_KEY_SEARCH_RESULT_LOADED_EVENT = user_access_key.search.result.loaded
USER_ACCESS_KEY_AGGREGATION_LOADED_EVENT = user_access_key.aggregation.result.loaded
USER_ACCESS_KEY_ID_SEARCH_RESULT_LOADED_EVENT = user_access_key.id.search.result.loaded
LANGUAGE_WRITTEN_EVENT = language.written
LANGUAGE_DELETED_EVENT = language.deleted
LANGUAGE_LOADED_EVENT = language.loaded
LANGUAGE_SEARCH_RESULT_LOADED_EVENT = language.search.result.loaded
LANGUAGE_AGGREGATION_LOADED_EVENT = language.aggregation.result.loaded
LANGUAGE_ID_SEARCH_RESULT_LOADED_EVENT = language.id.search.result.loaded
NUMBER_RANGE_WRITTEN_EVENT = number_range.written
NUMBER_RANGE_DELETED_EVENT = number_range.deleted
NUMBER_RANGE_LOADED_EVENT = number_range.loaded
NUMBER_RANGE_SEARCH_RESULT_LOADED_EVENT = number_range.search.result.loaded
NUMBER_RANGE_AGGREGATION_LOADED_EVENT = number_range.aggregation.result.loaded
NUMBER_RANGE_ID_SEARCH_RESULT_LOADED_EVENT = number_range.id.search.result.loaded
NUMBER_RANGE_STATE_WRITTEN_EVENT = number_range_state.written
NUMBER_RANGE_STATE_DELETED_EVENT = number_range_state.deleted
NUMBER_RANGE_STATE_LOADED_EVENT = number_range_state.loaded
NUMBER_RANGE_STATE_SEARCH_RESULT_LOADED_EVENT = number_range_state.search.result.loaded
NUMBER_RANGE_STATE_AGGREGATION_LOADED_EVENT = number_range_state.aggregation.result.loaded
SALES_CHANNEL_INDEXER_EVENT = SalesChannelIndexerEvent::class
SALES_CHANNEL_TRANSLATION_WRITTEN_EVENT = sales_channel_translation.written
SALES_CHANNEL_TRANSLATION_DELETED_EVENT = sales_channel_translation.deleted
SALES_CHANNEL_TRANSLATION_LOADED_EVENT = sales_channel_translation.loaded
SALES_CHANNEL_TRANSLATION_SEARCH_RESULT_LOADED_EVENT = sales_channel_translation.search.result.loaded
SALES_CHANNEL_TRANSLATION_AGGREGATION_LOADED_EVENT = sales_channel_translation.aggregation.result.loaded
SALES_CHANNEL_TRANSLATION_ID_SEARCH_RESULT_LOADED_EVENT = sales_channel_translation.id.search.result.loaded
SALES_CHANNEL_TYPE_TRANSLATION_WRITTEN_EVENT = sales_channel_type_translation.written
SALES_CHANNEL_TYPE_TRANSLATION_DELETED_EVENT = sales_channel_type_translation.deleted
SALES_CHANNEL_TYPE_TRANSLATION_LOADED_EVENT = sales_channel_type_translation.loaded
SALES_CHANNEL_TYPE_TRANSLATION_SEARCH_RESULT_LOADED_EVENT = sales_channel_type_translation.search.result.loaded
SALES_CHANNEL_TYPE_TRANSLATION_AGGREGATION_LOADED_EVENT = sales_channel_type_translation.aggregation.result.loaded
SALES_CHANNEL_TYPE_TRANSLATION_ID_SEARCH_RESULT_LOADED_EVENT = sales_channel_type_translation.id.search.result.loaded
CURRENCY_WRITTEN_EVENT = currency.written
CURRENCY_DELETED_EVENT = currency.deleted
CURRENCY_LOADED_EVENT = currency.loaded
CURRENCY_SEARCH_RESULT_LOADED_EVENT = currency.search.result.loaded
CURRENCY_AGGREGATION_LOADED_EVENT = currency.aggregation.result.loaded
CURRENCY_ID_SEARCH_RESULT_LOADED_EVENT = currency.id.search.result.loaded
CURRENCY_TRANSLATION_WRITTEN_EVENT = currency_translation.written
CURRENCY_TRANSLATION_DELETED_EVENT = currency_translation.deleted
CURRENCY_TRANSLATION_LOADED_EVENT = currency_translation.loaded
CURRENCY_TRANSLATION_SEARCH_RESULT_LOADED_EVENT = currency_translation.search.result.loaded
CURRENCY_TRANSLATION_AGGREGATION_LOADED_EVENT = currency_translation.aggregation.result.loaded
CURRENCY_TRANSLATION_ID_SEARCH_RESULT_LOADED_EVENT = currency_translation.id.search.result.loaded
COUNTRY_WRITTEN_EVENT = country.written
COUNTRY_DELETED_EVENT = country.deleted
COUNTRY_LOADED_EVENT = country.loaded
COUNTRY_SEARCH_RESULT_LOADED_EVENT = country.search.result.loaded
COUNTRY_AGGREGATION_LOADED_EVENT = country.aggregation.result.loaded
COUNTRY_ID_SEARCH_RESULT_LOADED_EVENT = country.id.search.result.loaded
COUNTRY_AREA_WRITTEN_EVENT = country_area.written
COUNTRY_AREA_DELETED_EVENT = country_area.deleted
COUNTRY_AREA_LOADED_EVENT = country_area.loaded
COUNTRY_AREA_SEARCH_RESULT_LOADED_EVENT = country_area.search.result.loaded
COUNTRY_AREA_AGGREGATION_LOADED_EVENT = country_area.aggregation.result.loaded
COUNTRY_AREA_ID_SEARCH_RESULT_LOADED_EVENT = country_area.id.search.result.loaded
COUNTRY_AREA_TRANSLATION_WRITTEN_EVENT = country_area_translation.written
COUNTRY_AREA_TRANSLATION_DELETED_EVENT = country_area_translation.deleted
COUNTRY_AREA_TRANSLATION_LOADED_EVENT = country_area_translation.loaded
COUNTRY_AREA_TRANSLATION_SEARCH_RESULT_LOADED_EVENT = country_area_translation.search.result.loaded
COUNTRY_AREA_TRANSLATION_AGGREGATION_LOADED_EVENT = country_area_translation.aggregation.result.loaded
COUNTRY_AREA_TRANSLATION_ID_SEARCH_RESULT_LOADED_EVENT = country_area_translation.id.search.result.loaded
COUNTRY_STATE_WRITTEN_EVENT = country_state.written
COUNTRY_STATE_DELETED_EVENT = country_state.deleted
COUNTRY_STATE_LOADED_EVENT = country_state.loaded
COUNTRY_STATE_SEARCH_RESULT_LOADED_EVENT = country_state.search.result.loaded
COUNTRY_STATE_AGGREGATION_LOADED_EVENT = country_state.aggregation.result.loaded
COUNTRY_STATE_ID_SEARCH_RESULT_LOADED_EVENT = country_state.id.search.result.loaded
COUNTRY_STATE_TRANSLATION_WRITTEN_EVENT = country_state_translation.written
COUNTRY_STATE_TRANSLATION_DELETED_EVENT = country_state_translation.deleted
COUNTRY_STATE_TRANSLATION_LOADED_EVENT = country_state_translation.loaded
COUNTRY_STATE_TRANSLATION_SEARCH_RESULT_LOADED_EVENT = country_state_translation.search.result.loaded
COUNTRY_STATE_TRANSLATION_AGGREGATION_LOADED_EVENT = country_state_translation.aggregation.result.loaded
COUNTRY_STATE_TRANSLATION_ID_SEARCH_RESULT_LOADED_EVENT = country_state_translation.id.search.result.loaded
COUNTRY_TRANSLATION_WRITTEN_EVENT = country_translation.written
COUNTRY_TRANSLATION_DELETED_EVENT = country_translation.deleted
COUNTRY_TRANSLATION_LOADED_EVENT = country_translation.loaded
COUNTRY_TRANSLATION_SEARCH_RESULT_LOADED_EVENT = country_translation.search.result.loaded
COUNTRY_TRANSLATION_AGGREGATION_LOADED_EVENT = country_translation.aggregation.result.loaded
COUNTRY_TRANSLATION_ID_SEARCH_RESULT_LOADED_EVENT = country_translation.id.search.result.loaded
TAX_WRITTEN_EVENT = tax.written
TAX_DELETED_EVENT = tax.deleted
TAX_LOADED_EVENT = tax.loaded
TAX_SEARCH_RESULT_LOADED_EVENT = tax.search.result.loaded
TAX_AGGREGATION_LOADED_EVENT = tax.aggregation.result.loaded
TAX_ID_SEARCH_RESULT_LOADED_EVENT = tax.id.search.result.loaded
TAX_AREA_RULE_WRITTEN_EVENT = tax_area_rule.written
TAX_AREA_RULE_DELETED_EVENT = tax_area_rule.deleted
TAX_AREA_RULE_LOADED_EVENT = tax_area_rule.loaded
TAX_AREA_RULE_SEARCH_RESULT_LOADED_EVENT = tax_area_rule.search.result.loaded
TAX_AREA_RULE_AGGREGATION_LOADED_EVENT = tax_area_rule.aggregation.result.loaded
TAX_AREA_RULE_ID_SEARCH_RESULT_LOADED_EVENT = tax_area_rule.id.search.result.loaded
TAX_AREA_RULE_TRANSLATION_WRITTEN_EVENT = tax_area_rule_translation.written
TAX_AREA_RULE_TRANSLATION_DELETED_EVENT = tax_area_rule_translation.deleted
TAX_AREA_RULE_TRANSLATION_LOADED_EVENT = tax_area_rule_translation.loaded
TAX_AREA_RULE_TRANSLATION_SEARCH_RESULT_LOADED_EVENT = tax_area_rule_translation.search.result.loaded
TAX_AREA_RULE_TRANSLATION_AGGREGATION_LOADED_EVENT = tax_area_rule_translation.aggregation.result.loaded
TAX_AREA_RULE_TRANSLATION_ID_SEARCH_RESULT_LOADED_EVENT = tax_area_rule_translation.id.search.result.loaded
INTEGRATION_WRITTEN_EVENT = integration.written
INTEGRATION_DELETED_EVENT = integration.deleted
INTEGRATION_LOADED_EVENT = integration.loaded
INTEGRATION_SEARCH_RESULT_LOADED_EVENT = integration.search.result.loaded
INTEGRATION_AGGREGATION_LOADED_EVENT = integration.aggregation.result.loaded
INTEGRATION_ID_SEARCH_RESULT_LOADED_EVENT = integration.id.search.result.loaded
CART_CONVERTED_TO_ORDER_EVENT = cart.convertedToOrder.event
PAYMENT_METHOD_WRITTEN_EVENT = payment_method.written
PAYMENT_METHOD_DELETED_EVENT = payment_method.deleted
PAYMENT_METHOD_LOADED_EVENT = payment_method.loaded
PAYMENT_METHOD_SEARCH_RESULT_LOADED_EVENT = payment_method.search.result.loaded
PAYMENT_METHOD_AGGREGATION_LOADED_EVENT = payment_method.aggregation.result.loaded
PAYMENT_METHOD_ID_SEARCH_RESULT_LOADED_EVENT = payment_method.id.search.result.loaded
PAYMENT_METHOD_TRANSLATION_WRITTEN_EVENT = payment_method_translation.written
PAYMENT_METHOD_TRANSLATION_DELETED_EVENT = payment_method_translation.deleted
PAYMENT_METHOD_TRANSLATION_LOADED_EVENT = payment_method_translation.loaded
PAYMENT_METHOD_TRANSLATION_SEARCH_RESULT_LOADED_EVENT = payment_method_translation.search.result.loaded
PAYMENT_METHOD_TRANSLATION_AGGREGATION_LOADED_EVENT = payment_method_translation.aggregation.result.loaded
PAYMENT_METHOD_TRANSLATION_ID_SEARCH_RESULT_LOADED_EVENT = payment_method_translation.id.search.result.loaded
SHIPPING_METHOD_WRITTEN_EVENT = shipping_method.written
SHIPPING_METHOD_DELETED_EVENT = shipping_method.deleted
SHIPPING_METHOD_LOADED_EVENT = shipping_method.loaded
SHIPPING_METHOD_SEARCH_RESULT_LOADED_EVENT = shipping_method.search.result.loaded
SHIPPING_METHOD_AGGREGATION_LOADED_EVENT = shipping_method.aggregation.result.loaded
SHIPPING_METHOD_ID_SEARCH_RESULT_LOADED_EVENT = shipping_method.id.search.result.loaded
SHIPPING_METHOD_PRICE_WRITTEN_EVENT = shipping_method_price.written
SHIPPING_METHOD_PRICE_DELETED_EVENT = shipping_method_price.deleted
SHIPPING_METHOD_PRICE_LOADED_EVENT = shipping_method_price.loaded
SHIPPING_METHOD_PRICE_SEARCH_RESULT_LOADED_EVENT = shipping_method_price.search.result.loaded
SHIPPING_METHOD_PRICE_AGGREGATION_LOADED_EVENT = shipping_method_price.aggregation.result.loaded
SHIPPING_METHOD_PRICE_ID_SEARCH_RESULT_LOADED_EVENT = shipping_method_price.id.search.result.loaded
SHIPPING_METHOD_TRANSLATION_WRITTEN_EVENT = shipping_method_translation.written
SHIPPING_METHOD_TRANSLATION_DELETED_EVENT = shipping_method_translation.deleted
SHIPPING_METHOD_TRANSLATION_LOADED_EVENT = shipping_method_translation.loaded
SHIPPING_METHOD_TRANSLATION_SEARCH_RESULT_LOADED_EVENT = shipping_method_translation.search.result.loaded
SHIPPING_METHOD_TRANSLATION_AGGREGATION_LOADED_EVENT = shipping_method_translation.aggregation.result.loaded
SHIPPING_METHOD_TRANSLATION_ID_SEARCH_RESULT_LOADED_EVENT = shipping_method_translation.id.search.result.loaded
ORDER_WRITTEN_EVENT = order.written
ORDER_DELETED_EVENT = order.deleted
ORDER_LOADED_EVENT = order.loaded
ORDER_SEARCH_RESULT_LOADED_EVENT = order.search.result.loaded
ORDER_AGGREGATION_LOADED_EVENT = order.aggregation.result.loaded
ORDER_ID_SEARCH_RESULT_LOADED_EVENT = order.id.search.result.loaded
ORDER_ADDRESS_WRITTEN_EVENT = order_address.written
ORDER_ADDRESS_DELETED_EVENT = order_address.deleted
ORDER_ADDRESS_LOADED_EVENT = order_address.loaded
ORDER_ADDRESS_SEARCH_RESULT_LOADED_EVENT = order_address.search.result.loaded
ORDER_ADDRESS_AGGREGATION_LOADED_EVENT = order_address.aggregation.result.loaded
ORDER_ADDRESS_ID_SEARCH_RESULT_LOADED_EVENT = order_address.id.search.result.loaded
ORDER_DELIVERY_WRITTEN_EVENT = order_delivery.written
ORDER_DELIVERY_DELETED_EVENT = order_delivery.deleted
ORDER_DELIVERY_LOADED_EVENT = order_delivery.loaded
ORDER_DELIVERY_SEARCH_RESULT_LOADED_EVENT = order_delivery.search.result.loaded
ORDER_DELIVERY_AGGREGATION_LOADED_EVENT = order_delivery.aggregation.result.loaded
ORDER_DELIVERY_ID_SEARCH_RESULT_LOADED_EVENT = order_delivery.id.search.result.loaded
ORDER_DELIVERY_POSITION_WRITTEN_EVENT = order_delivery_position.written
ORDER_DELIVERY_POSITION_DELETED_EVENT = order_delivery_position.deleted
ORDER_DELIVERY_POSITION_LOADED_EVENT = order_delivery_position.loaded
ORDER_DELIVERY_POSITION_SEARCH_RESULT_LOADED_EVENT = order_delivery_position.search.result.loaded
ORDER_DELIVERY_POSITION_AGGREGATION_LOADED_EVENT = order_delivery_position.aggregation.result.loaded
ORDER_DELIVERY_POSITION_ID_SEARCH_RESULT_LOADED_EVENT = order_delivery_position.id.search.result.loaded
ORDER_LINE_ITEM_WRITTEN_EVENT = order_line_item.written
ORDER_LINE_ITEM_DELETED_EVENT = order_line_item.deleted
ORDER_LINE_ITEM_LOADED_EVENT = order_line_item.loaded
ORDER_LINE_ITEM_SEARCH_RESULT_LOADED_EVENT = order_line_item.search.result.loaded
ORDER_LINE_ITEM_AGGREGATION_LOADED_EVENT = order_line_item.aggregation.result.loaded
ORDER_LINE_ITEM_ID_SEARCH_RESULT_LOADED_EVENT = order_line_item.id.search.result.loaded
ORDER_STATE_WRITTEN_EVENT = order_state.written
ORDER_STATE_DELETED_EVENT = order_state.deleted
ORDER_STATE_LOADED_EVENT = order_state.loaded
ORDER_STATE_SEARCH_RESULT_LOADED_EVENT = order_state.search.result.loaded
ORDER_STATE_AGGREGATION_LOADED_EVENT = order_state.aggregation.result.loaded
ORDER_STATE_ID_SEARCH_RESULT_LOADED_EVENT = order_state.id.search.result.loaded
ORDER_STATE_TRANSLATION_WRITTEN_EVENT = order_state_translation.written
ORDER_STATE_TRANSLATION_DELETED_EVENT = order_state_translation.deleted
ORDER_STATE_TRANSLATION_LOADED_EVENT = order_state_translation.loaded
ORDER_STATE_TRANSLATION_SEARCH_RESULT_LOADED_EVENT = order_state_translation.search.result.loaded
ORDER_STATE_TRANSLATION_AGGREGATION_LOADED_EVENT = order_state_translation.aggregation.result.loaded
ORDER_STATE_TRANSLATION_ID_SEARCH_RESULT_LOADED_EVENT = order_state_translation.id.search.result.loaded
ORDER_TRANSACTION_WRITTEN_EVENT = order_transaction.written
ORDER_TRANSACTION_DELETED_EVENT = order_transaction.deleted
ORDER_TRANSACTION_LOADED_EVENT = order_transaction.loaded
ORDER_TRANSACTION_SEARCH_RESULT_LOADED_EVENT = order_transaction.search.result.loaded
ORDER_TRANSACTION_AGGREGATION_LOADED_EVENT = order_transaction.aggregation.result.loaded
ORDER_TRANSACTION_ID_SEARCH_RESULT_LOADED_EVENT = order_transaction.id.search.result.loaded
ORDER_TRANSACTION_STATE_WRITTEN_EVENT = order_transaction_state.written
ORDER_TRANSACTION_STATE_DELETED_EVENT = order_transaction_state.deleted
ORDER_TRANSACTION_STATE_LOADED_EVENT = order_transaction_state.loaded
ORDER_TRANSACTION_STATE_SEARCH_RESULT_LOADED_EVENT = order_transaction_state.search.result.loaded
ORDER_TRANSACTION_STATE_AGGREGATION_LOADED_EVENT = order_transaction_state.aggregation.result.loaded
ORDER_TRANSACTION_STATE_ID_SEARCH_RESULT_LOADED_EVENT = order_transaction_state.id.search.result.loaded
ORDER_TRANSACTION_STATE_TRANSLATION_WRITTEN_EVENT = order_transaction_state_translation.written
ORDER_TRANSACTION_STATE_TRANSLATION_DELETED_EVENT = order_transaction_state_translation.deleted
ORDER_TRANSACTION_STATE_TRANSLATION_LOADED_EVENT = order_transaction_state_translation.loaded
ORDER_TRANSACTION_STATE_TRANSLATION_SEARCH_RESULT_LOADED_EVENT = order_transaction_state_translation.search.result.loaded
ORDER_TRANSACTION_STATE_TRANSLATION_AGGREGATION_LOADED_EVENT = order_transaction_state_translation.aggregation.result.loaded
ORDER_TRANSACTION_STATE_TRANSLATION_ID_SEARCH_RESULT_LOADED_EVENT = order_transaction_state_translation.id.search.result.loaded
CUSTOMER_WRITTEN_EVENT = customer.written
CUSTOMER_DELETED_EVENT = customer.deleted
CUSTOMER_LOADED_EVENT = customer.loaded
CUSTOMER_SEARCH_RESULT_LOADED_EVENT = customer.search.result.loaded
CUSTOMER_AGGREGATION_LOADED_EVENT = customer.aggregation.result.loaded
CUSTOMER_ID_SEARCH_RESULT_LOADED_EVENT = customer.id.search.result.loaded
CUSTOMER_ADDRESS_WRITTEN_EVENT = customer_address.written
CUSTOMER_ADDRESS_DELETED_EVENT = customer_address.deleted
CUSTOMER_ADDRESS_LOADED_EVENT = customer_address.loaded
CUSTOMER_ADDRESS_SEARCH_RESULT_LOADED_EVENT = customer_address.search.result.loaded
CUSTOMER_ADDRESS_AGGREGATION_LOADED_EVENT = customer_address.aggregation.result.loaded
CUSTOMER_ADDRESS_ID_SEARCH_RESULT_LOADED_EVENT = customer_address.id.search.result.loaded
CUSTOMER_CHANGED_PAYMENT_METHOD_EVENT = checkout.customer.changed-payment-method
CUSTOMER_BEFORE_LOGIN_EVENT = checkout.customer.before.login
CUSTOMER_LOGIN_EVENT = checkout.customer.login
CUSTOMER_LOGOUT_EVENT = checkout.customer.logout
CUSTOMER_REGISTER_EVENT = checkout.customer.register
CUSTOMER_GROUP_WRITTEN_EVENT = customer_group.written
CUSTOMER_GROUP_DELETED_EVENT = customer_group.deleted
CUSTOMER_GROUP_LOADED_EVENT = customer_group.loaded
CUSTOMER_GROUP_SEARCH_RESULT_LOADED_EVENT = customer_group.search.result.loaded
CUSTOMER_GROUP_AGGREGATION_LOADED_EVENT = customer_group.aggregation.result.loaded
CUSTOMER_GROUP_ID_SEARCH_RESULT_LOADED_EVENT = customer_group.id.search.result.loaded
CUSTOMER_GROUP_DISCOUNT_WRITTEN_EVENT = customer_group_discount.written
CUSTOMER_GROUP_DISCOUNT_DELETED_EVENT = customer_group_discount.deleted
CUSTOMER_GROUP_DISCOUNT_LOADED_EVENT = customer_group_discount.loaded
CUSTOMER_GROUP_DISCOUNT_SEARCH_RESULT_LOADED_EVENT = customer_group_discount.search.result.loaded
CUSTOMER_GROUP_DISCOUNT_AGGREGATION_LOADED_EVENT = customer_group_discount.aggregation.result.loaded
CUSTOMER_GROUP_DISCOUNT_ID_SEARCH_RESULT_LOADED_EVENT = customer_group_discount.id.search.result.loaded
CUSTOMER_GROUP_TRANSLATION_WRITTEN_EVENT = customer_group_translation.written
CUSTOMER_GROUP_TRANSLATION_DELETED_EVENT = customer_group_translation.deleted
CUSTOMER_GROUP_TRANSLATION_LOADED_EVENT = customer_group_translation.loaded
CUSTOMER_GROUP_TRANSLATION_SEARCH_RESULT_LOADED_EVENT = customer_group_translation.search.result.loaded
CUSTOMER_GROUP_TRANSLATION_AGGREGATION_LOADED_EVENT = customer_group_translation.aggregation.result.loaded
CUSTOMER_GROUP_TRANSLATION_ID_SEARCH_RESULT_LOADED_EVENT = customer_group_translation.id.search.result.loaded
GLOBAL_EVENT = shopware.global_business_event
TEST_EVENT = TestEvent::EVENT_NAME
PLUGIN_WRITTEN_EVENT = plugin.written
PLUGIN_DELETED_EVENT = plugin.deleted
PLUGIN_LOADED_EVENT = plugin.loaded
PLUGIN_SEARCH_RESULT_LOADED_EVENT = plugin.search.result.loaded
PLUGIN_AGGREGATION_LOADED_EVENT = plugin.aggregation.result.loaded
PLUGIN_ID_SEARCH_RESULT_LOADED_EVENT = plugin.id.search.result.loaded
GLOBAL_EVENT = shopware.global_business_event
VERSION_WRITTEN_EVENT = version.written
VERSION_DELETED_EVENT = version.deleted
VERSION_LOADED_EVENT = version.loaded
VERSION_SEARCH_RESULT_LOADED_EVENT = version.search.result.loaded
VERSION_AGGREGATION_LOADED_EVENT = version.aggregation.result.loaded
VERSION_ID_SEARCH_RESULT_LOADED_EVENT = version.id.search.result.loaded
VERSION_COMMIT_WRITTEN_EVENT = version_commit.written
VERSION_COMMIT_DELETED_EVENT = version_commit.deleted
VERSION_COMMIT_LOADED_EVENT = version_commit.loaded
VERSION_COMMIT_SEARCH_RESULT_LOADED_EVENT = version_commit.search.result.loaded
VERSION_COMMIT_AGGREGATION_LOADED_EVENT = version_commit.aggregation.result.loaded
VERSION_COMMIT_ID_SEARCH_RESULT_LOADED_EVENT = version_commit.id.search.result.loaded
VERSION_COMMIT_DATA_WRITTEN_EVENT = version_commit_data.written
VERSION_COMMIT_DATA_DELETED_EVENT = version_commit_data.deleted
VERSION_COMMIT_DATA_LOADED_EVENT = version_commit_data.loaded
VERSION_COMMIT_DATA_SEARCH_RESULT_LOADED_EVENT = version_commit_data.search.result.loaded
VERSION_COMMIT_DATA_AGGREGATION_LOADED_EVENT = version_commit_data.aggregation.result.loaded
VERSION_COMMIT_DATA_ID_SEARCH_RESULT_LOADED_EVENT = version_commit_data.id.search.result.loaded

Kyle Mathews

Written by Peter Jaap Blaakmeer @PeterJaap