diff --git a/all_in_one_seo_pack.php b/all_in_one_seo_pack.php index 0b0d44972..0621317bc 100644 --- a/all_in_one_seo_pack.php +++ b/all_in_one_seo_pack.php @@ -5,7 +5,7 @@ * Description: SEO for WordPress. Features like XML Sitemaps, SEO for custom post types, SEO for blogs, business sites, ecommerce sites, and much more. More than 100 million downloads since 2007. * Author: All in One SEO Team * Author URI: https://aioseo.com/ - * Version: 4.6.3 + * Version: 4.6.4 * Text Domain: all-in-one-seo-pack * Domain Path: /languages * diff --git a/app/Common/Api/Wizard.php b/app/Common/Api/Wizard.php index 0a51aa1ce..a241013bf 100644 --- a/app/Common/Api/Wizard.php +++ b/app/Common/Api/Wizard.php @@ -124,6 +124,10 @@ public static function saveWizard( $request ) { $options->searchAppearance->global->schema->organizationName = $additionalInformation['organizationName']; } + if ( ! empty( $additionalInformation['organizationDescription'] ) ) { + $options->searchAppearance->global->schema->organizationDescription = $additionalInformation['organizationDescription']; + } + if ( ! empty( $additionalInformation['phone'] ) ) { $options->searchAppearance->global->schema->phone = $additionalInformation['phone']; } @@ -140,14 +144,6 @@ public static function saveWizard( $request ) { $options->searchAppearance->global->schema->personLogo = $additionalInformation['personLogo']; } - if ( ! empty( $additionalInformation['contactType'] ) ) { - $options->searchAppearance->global->schema->contactType = $additionalInformation['contactType']; - } - - if ( ! empty( $additionalInformation['contactTypeManual'] ) ) { - $options->searchAppearance->global->schema->contactTypeManual = $additionalInformation['contactTypeManual']; - } - if ( ! empty( $additionalInformation['socialShareImage'] ) ) { $options->social->facebook->general->defaultImagePosts = $additionalInformation['socialShareImage']; $options->social->twitter->general->defaultImagePosts = $additionalInformation['socialShareImage']; diff --git a/app/Common/ImportExport/SeoPress/SocialMeta.php b/app/Common/ImportExport/SeoPress/SocialMeta.php index 97cda7726..0529726af 100644 --- a/app/Common/ImportExport/SeoPress/SocialMeta.php +++ b/app/Common/ImportExport/SeoPress/SocialMeta.php @@ -82,10 +82,6 @@ private function migrateKnowledge() { aioseo()->options->searchAppearance->global->schema->siteRepresents = $type; - if ( ! empty( $this->options['seopress_social_knowledge_contact_type'] ) ) { - aioseo()->options->searchAppearance->global->schema->contactType = ucwords( $this->options['seopress_social_knowledge_contact_type'] ); - } - $settings = [ 'seopress_social_knowledge_img' => [ 'type' => 'string', 'newOption' => [ 'searchAppearance', 'global', 'schema', $type . 'Logo' ] ], 'seopress_social_knowledge_name' => [ 'type' => 'string', 'newOption' => [ 'searchAppearance', 'global', 'schema', $type . 'Name' ] ], diff --git a/app/Common/Main/Updates.php b/app/Common/Main/Updates.php index 736bfb18b..f6b41e179 100644 --- a/app/Common/Main/Updates.php +++ b/app/Common/Main/Updates.php @@ -171,7 +171,6 @@ public function runUpdates() { } if ( version_compare( $lastActiveVersion, '4.2.4', '<' ) ) { - $this->migrateContactTypes(); $this->addNotificationsAddonColumn(); } @@ -943,42 +942,6 @@ private function migrateUserContactMethods() { ); } - /** - * Migrates some older values in the Knowledge Panel contact type setting that were removed. - * - * @since 4.2.4 - * - * @return void - */ - public function migrateContactTypes() { - $oldValue = aioseo()->options->searchAppearance->global->schema->contactType; - $oldValueLowerCase = strtolower( (string) $oldValue ); - - // Return if there is no value set or manual input is being used. - if ( ! $oldValue || 'manual' === $oldValueLowerCase ) { - return; - } - - switch ( $oldValueLowerCase ) { - case 'billing support': - case 'customer support': - case 'reservations': - case 'sales': - case 'technical support': - // If we still support the value, do nothing. - return; - default: - // Otherwise, migrate the existing value to the manual input field. - if ( 'bagage tracking' === $oldValueLowerCase ) { - // Let's also fix this old typo. - $oldValue = 'Baggage Tracking'; - } - - aioseo()->options->searchAppearance->global->schema->contactType = 'manual'; - aioseo()->options->searchAppearance->global->schema->contactTypeManual = $oldValue; - } - } - /** * Add an addon column to the notifications table. * diff --git a/app/Common/Migration/GeneralSettings.php b/app/Common/Migration/GeneralSettings.php index 356282f7c..aef837dca 100644 --- a/app/Common/Migration/GeneralSettings.php +++ b/app/Common/Migration/GeneralSettings.php @@ -695,11 +695,6 @@ private function migrateSchemaMarkupSettings() { aioseo()->options->searchAppearance->global->schema->person = intval( $this->oldOptions['aiosp_schema_person_user'] ); } } - - if ( ! empty( $this->oldOptions['aiosp_schema_contact_type'] ) ) { - aioseo()->options->searchAppearance->global->schema->contactType = 'manual'; - aioseo()->options->searchAppearance->global->schema->contactTypeManual = aioseo()->helpers->sanitizeOption( $this->oldOptions['aiosp_schema_contact_type'] ); - } } /** diff --git a/app/Common/Models/Post.php b/app/Common/Models/Post.php index 3c0c891d7..e303dc2af 100644 --- a/app/Common/Models/Post.php +++ b/app/Common/Models/Post.php @@ -225,6 +225,17 @@ private static function runDynamicSchemaMigration( $post ) { if ( property_exists( $graph, 'id' ) && '#' !== substr( $graph->id, 0, 1 ) ) { $graph->id = '#' . $graph->id; } + + // If the graph has an old rating value, we need to migrate it to the review. + if ( + property_exists( $graph, 'id' ) && + preg_match( '/(movie|software-application)/', $graph->id ) && + property_exists( $graph->properties, 'rating' ) && + property_exists( $graph->properties->rating, 'value' ) + ) { + $graph->properties->review->rating = $graph->properties->rating->value; + unset( $graph->properties->rating->value ); + } } return $post; diff --git a/app/Common/Options/Options.php b/app/Common/Options/Options.php index 9ce7c29f2..f47fe9920 100644 --- a/app/Common/Options/Options.php +++ b/app/Common/Options/Options.php @@ -242,17 +242,24 @@ class Options { 'metaDescription' => [ 'type' => 'string', 'localized' => true, 'default' => '#tagline' ], 'keywords' => [ 'type' => 'string', 'localized' => true ], 'schema' => [ - 'websiteName' => [ 'type' => 'string' ], - 'websiteAlternateName' => [ 'type' => 'string' ], - 'siteRepresents' => [ 'type' => 'string', 'default' => 'organization' ], - 'person' => [ 'type' => 'string' ], - 'organizationName' => [ 'type' => 'string' ], - 'organizationLogo' => [ 'type' => 'string' ], - 'personName' => [ 'type' => 'string' ], - 'personLogo' => [ 'type' => 'string' ], - 'phone' => [ 'type' => 'string' ], - 'contactType' => [ 'type' => 'string' ], - 'contactTypeManual' => [ 'type' => 'string' ] + 'websiteName' => [ 'type' => 'string', 'default' => '#site_title' ], + 'websiteAlternateName' => [ 'type' => 'string' ], + 'siteRepresents' => [ 'type' => 'string', 'default' => 'organization' ], + 'person' => [ 'type' => 'string' ], + 'organizationName' => [ 'type' => 'string', 'default' => '#site_title' ], + 'organizationDescription' => [ 'type' => 'string', 'default' => '#tagline' ], + 'organizationLogo' => [ 'type' => 'string' ], + 'personName' => [ 'type' => 'string' ], + 'personLogo' => [ 'type' => 'string' ], + 'phone' => [ 'type' => 'string' ], + 'email' => [ 'type' => 'string' ], + 'foundingDate' => [ 'type' => 'string' ], + 'numberOfEmployees' => [ + 'isRange' => [ 'type' => 'boolean' ], + 'from' => [ 'type' => 'number' ], + 'to' => [ 'type' => 'number' ], + 'number' => [ 'type' => 'number' ] + ] ] ], 'advanced' => [ @@ -518,12 +525,9 @@ protected function setInitialDefaults() { $hasInitialized = true; - $this->defaults['searchAppearance']['global']['schema']['organizationName']['default'] = aioseo()->helpers->decodeHtmlEntities( get_bloginfo( 'name' ) ); $this->defaults['deprecated']['tools']['blocker']['custom']['bots']['default'] = implode( "\n", aioseo()->badBotBlocker->getBotList() ); $this->defaults['deprecated']['tools']['blocker']['custom']['referer']['default'] = implode( "\n", aioseo()->badBotBlocker->getRefererList() ); - $this->defaults['searchAppearance']['global']['schema']['organizationName']['default'] = aioseo()->helpers->decodeHtmlEntities( get_bloginfo( 'name' ) ); - $this->defaults['searchAppearance']['global']['schema']['websiteName']['default'] = aioseo()->helpers->decodeHtmlEntities( get_bloginfo( 'name' ) ); $this->defaults['searchAppearance']['global']['schema']['organizationLogo']['default'] = aioseo()->helpers->getSiteLogoUrl() ? aioseo()->helpers->getSiteLogoUrl() : ''; } diff --git a/app/Common/Schema/Graphs/Graph.php b/app/Common/Schema/Graphs/Graph.php index 88aff99a1..487c97303 100644 --- a/app/Common/Schema/Graphs/Graph.php +++ b/app/Common/Schema/Graphs/Graph.php @@ -47,4 +47,43 @@ protected function getData( $data, $dataFunctions ) { return $data; } + + /** + * Decodes a multiselect field and returns the values. + * + * @since 4.6.4 + * + * @param string $json The JSON encoded multiselect field. + * @return array The decoded values. + */ + protected function extractMultiselectTags( $json ) { + $tags = is_string( $json ) ? json_decode( $json ) : []; + if ( ! $tags ) { + return []; + } + + return wp_list_pluck( $tags, 'value' ); + } + + /** + * Merges in data from our addon plugins. + * + * @since 4.5.6 + * @version 4.6.4 Moved to main graph class. + * + * @param array $data The graph data. + * @return array The graph data. + */ + protected function getAddonData( $data, $className, $methodName = 'getAdditionalGraphData' ) { + $addonData = array_filter( aioseo()->addons->doAddonFunction( $className, $methodName, [ + 'postId' => get_the_ID(), + 'data' => $data + ] ) ); + + foreach ( $addonData as $addonGraphData ) { + $data = array_merge( $data, $addonGraphData ); + } + + return $data; + } } \ No newline at end of file diff --git a/app/Common/Schema/Graphs/KnowledgeGraph/KgOrganization.php b/app/Common/Schema/Graphs/KnowledgeGraph/KgOrganization.php index 134c0b079..212fcc6f2 100644 --- a/app/Common/Schema/Graphs/KnowledgeGraph/KgOrganization.php +++ b/app/Common/Schema/Graphs/KnowledgeGraph/KgOrganization.php @@ -22,15 +22,45 @@ class KgOrganization extends Graphs\Graph { * @return array $data The graph data. */ public function get() { - $homeUrl = trailingslashit( home_url() ); - $organizationName = aioseo()->options->searchAppearance->global->schema->organizationName; - $data = [ - '@type' => 'Organization', - '@id' => $homeUrl . '#organization', - 'name' => $organizationName ? $organizationName : aioseo()->helpers->decodeHtmlEntities( get_bloginfo( 'name' ) ), - 'url' => $homeUrl, + $homeUrl = trailingslashit( home_url() ); + $organizationName = aioseo()->tags->replaceTags( aioseo()->options->searchAppearance->global->schema->organizationName ); + $organizationDescription = aioseo()->tags->replaceTags( aioseo()->options->searchAppearance->global->schema->organizationDescription ); + + $data = [ + '@type' => 'Organization', + '@id' => $homeUrl . '#organization', + 'name' => $organizationName ? $organizationName : aioseo()->helpers->decodeHtmlEntities( get_bloginfo( 'name' ) ), + 'description' => $organizationDescription, + 'url' => $homeUrl, + 'email' => aioseo()->options->searchAppearance->global->schema->email, + 'telephone' => aioseo()->options->searchAppearance->global->schema->phone, + 'foundingDate' => aioseo()->options->searchAppearance->global->schema->foundingDate ]; + $numberOfEmployeesData = aioseo()->options->searchAppearance->global->schema->numberOfEmployees->all(); + + if ( + $numberOfEmployeesData['isRange'] && + ! empty( $numberOfEmployeesData['from'] ) && + ! empty( $numberOfEmployeesData['to'] ) + ) { + $data['numberOfEmployees'] = [ + '@type' => 'QuantitativeValue', + 'minValue' => $numberOfEmployeesData['from'], + 'maxValue' => $numberOfEmployeesData['to'] + ]; + } + + if ( + ! $numberOfEmployeesData['isRange'] && + ! empty( $numberOfEmployeesData['number'] ) + ) { + $data['numberOfEmployees'] = [ + '@type' => 'QuantitativeValue', + 'value' => $numberOfEmployeesData['number'] + ]; + } + $logo = $this->logo(); if ( ! empty( $logo ) ) { $data['logo'] = $logo; @@ -42,20 +72,7 @@ public function get() { $data['sameAs'] = $socialUrls; } - $phone = aioseo()->options->searchAppearance->global->schema->phone; - $contactType = aioseo()->options->searchAppearance->global->schema->contactType; - if ( $phone && $contactType ) { - if ( 'manual' === $contactType ) { - $contactType = aioseo()->options->searchAppearance->global->schema->contactTypeManual; - } - if ( $contactType ) { - $data['contactPoint'] = [ - '@type' => 'ContactPoint', - 'telephone' => $phone, - 'contactType' => $contactType, - ]; - } - } + $data = $this->getAddonData( $data, 'kgOrganization' ); return $data; } diff --git a/app/Common/Schema/Graphs/WebPage/CheckoutPage.php b/app/Common/Schema/Graphs/WebPage/CheckoutPage.php new file mode 100644 index 000000000..d4c4f5cfa --- /dev/null +++ b/app/Common/Schema/Graphs/WebPage/CheckoutPage.php @@ -0,0 +1,25 @@ +helpers->getPost(); $author = get_queried_object(); - if ( ! is_a( $author, 'WP_User' ) ) { + if ( + ! is_a( $author, 'WP_User' ) && + ( is_singular() && ! is_a( $post, 'WP_Post' ) ) + ) { return []; } global $wp_query; $articles = []; - $authorId = $author->ID; + $authorId = $author->ID ?? $post->post_author ?? 0; foreach ( $wp_query->posts as $post ) { if ( $post->post_author !== $authorId ) { continue; diff --git a/app/Common/Schema/Graphs/WebPage/WebPage.php b/app/Common/Schema/Graphs/WebPage/WebPage.php index 75f7e674d..e849e014b 100644 --- a/app/Common/Schema/Graphs/WebPage/WebPage.php +++ b/app/Common/Schema/Graphs/WebPage/WebPage.php @@ -66,7 +66,7 @@ public function get() { if ( is_singular() ) { if ( ! isset( aioseo()->schema->context['object'] ) || ! aioseo()->schema->context['object'] ) { - $data = $this->getAddonData( $data ); + $data = $this->getAddonData( $data, 'webPage' ); return $data; } @@ -85,7 +85,7 @@ public function get() { $data['datePublished'] = mysql2date( DATE_W3C, $post->post_date, false ); $data['dateModified'] = mysql2date( DATE_W3C, $post->post_modified, false ); - $data = $this->getAddonData( $data ); + $data = $this->getAddonData( $data, 'webPage' ); return $data; } @@ -94,28 +94,7 @@ public function get() { $data['about'] = [ '@id' => trailingslashit( home_url() ) . '#' . aioseo()->options->searchAppearance->global->schema->siteRepresents ]; } - $data = $this->getAddonData( $data ); - - return $data; - } - - /** - * Merges in data from our addon plugins. - * - * @since 4.5.6 - * - * @param array $data The graph data. - * @return array The graph data. - */ - protected function getAddonData( $data ) { - $addonData = array_filter( aioseo()->addons->doAddonFunction( 'webPage', 'get', [ - 'postId' => get_the_ID(), - 'data' => $data - ] ) ); - - foreach ( $addonData as $addonGraphData ) { - $data = array_merge( $data, $addonGraphData ); - } + $data = $this->getAddonData( $data, 'webPage' ); return $data; } diff --git a/app/Common/Schema/Graphs/WebSite.php b/app/Common/Schema/Graphs/WebSite.php index 0275f9f10..31e57419e 100644 --- a/app/Common/Schema/Graphs/WebSite.php +++ b/app/Common/Schema/Graphs/WebSite.php @@ -26,7 +26,7 @@ public function get() { '@id' => $homeUrl . '#website', 'url' => $homeUrl, 'name' => aioseo()->helpers->getWebsiteName(), - 'alternateName' => aioseo()->options->searchAppearance->global->schema->websiteAlternateName, + 'alternateName' => aioseo()->tags->replaceTags( aioseo()->options->searchAppearance->global->schema->websiteAlternateName ), 'description' => aioseo()->helpers->decodeHtmlEntities( get_bloginfo( 'description' ) ), 'inLanguage' => aioseo()->helpers->currentLanguageCodeBCP47(), 'publisher' => [ '@id' => $homeUrl . '#' . aioseo()->options->searchAppearance->global->schema->siteRepresents ] diff --git a/app/Common/Schema/Schema.php b/app/Common/Schema/Schema.php index fbce3ae1a..ac11789aa 100644 --- a/app/Common/Schema/Schema.php +++ b/app/Common/Schema/Schema.php @@ -83,7 +83,9 @@ class Schema { public $nullableFields = [ 'price', // Needs to be 0 if free for Software Application. 'ratingValue', // Needs to be 0 for 0 star ratings. - 'value' // Needs to be 0 if free for product shipping details. + 'value', // Needs to be 0 if free for product shipping details. + 'minValue', // Needs to be 0 for product delivery time. + 'maxValue' // Needs to be 0 for product delivery time. ]; /** diff --git a/app/Common/Traits/Helpers/WpContext.php b/app/Common/Traits/Helpers/WpContext.php index fcbdb4621..d9efdef33 100644 --- a/app/Common/Traits/Helpers/WpContext.php +++ b/app/Common/Traits/Helpers/WpContext.php @@ -960,7 +960,7 @@ public function isBlockTheme() { */ public function getWebsiteName() { return aioseo()->options->searchAppearance->global->schema->websiteName - ? aioseo()->options->searchAppearance->global->schema->websiteName + ? aioseo()->tags->replaceTags( aioseo()->options->searchAppearance->global->schema->websiteName ) : aioseo()->helpers->decodeHtmlEntities( get_bloginfo( 'name' ) ); } } \ No newline at end of file diff --git a/app/Common/Utils/Addons.php b/app/Common/Utils/Addons.php index 160218f06..d2350151e 100644 --- a/app/Common/Utils/Addons.php +++ b/app/Common/Utils/Addons.php @@ -656,7 +656,7 @@ protected function getDefaultAddons() { 'descriptionVersion' => 0, 'productUrl' => 'https://aioseo.com/features/redirection-manager/', 'learnMoreUrl' => 'https://aioseo.com/features/redirection-manager/', - 'manageUrl' => 'https://route#aioseo-redirects', + 'manageUrl' => 'https://route#aioseo-redirects:redirects', 'basename' => 'aioseo-redirects/aioseo-redirects.php', 'installed' => false, 'isActive' => false, @@ -687,7 +687,7 @@ protected function getDefaultAddons() { 'descriptionVersion' => 0, 'productUrl' => 'https://aioseo.com/feature/internal-link-assistant/', 'learnMoreUrl' => 'https://aioseo.com/feature/internal-link-assistant/', - 'manageUrl' => 'https://route#aioseo-link-assistant', + 'manageUrl' => 'https://route#aioseo-link-assistant:overview', 'basename' => 'aioseo-link-assistant/aioseo-link-assistant.php', 'installed' => false, 'isActive' => false, diff --git a/app/Common/Utils/Tags.php b/app/Common/Utils/Tags.php index 07093e6bf..24e4a175c 100644 --- a/app/Common/Utils/Tags.php +++ b/app/Common/Utils/Tags.php @@ -38,21 +38,21 @@ class Tags { * @var array */ private $context = [ - 'rss' => [ - 'author_link', - 'author_link_alt', + 'authorDescription' => [ + 'author_bio', + 'author_first_name', + 'author_last_name', 'author_name', - 'featured_image', - 'post_date', - 'post_link', - 'post_link_alt', - 'post_title', - 'site_link', - 'site_link_alt', + 'current_date', + 'current_day', + 'current_month', + 'current_year', + 'custom_field', + 'separator_sa', 'site_title', - 'taxonomy_title' + 'tagline' ], - 'homePage' => [ + 'authorTitle' => [ 'author_first_name', 'author_last_name', 'author_name', @@ -60,10 +60,19 @@ class Tags { 'current_day', 'current_month', 'current_year', + 'custom_field', + 'separator_sa', + 'site_title', + 'tagline' + ], + 'descriptionFormat' => [ + 'current_date', + 'current_day', + 'current_month', + 'current_year', + 'custom_field', + 'description', 'post_date', - 'post_day', - 'post_excerpt', - 'post_excerpt_only', 'post_month', 'post_title', 'post_year', @@ -71,56 +80,37 @@ class Tags { 'site_title', 'tagline' ], - 'postTitle' => [ - 'author_first_name', - 'author_last_name', - 'author_name', - 'taxonomy_title', - 'categories', + 'dateDescription' => [ + 'archive_date', + 'archive_title', 'current_date', 'current_day', 'current_month', 'current_year', 'custom_field', - 'tax_name', - 'permalink', - 'post_content', - 'post_date', 'post_day', - 'post_excerpt', - 'post_excerpt_only', 'post_month', - 'post_title', 'post_year', 'separator_sa', 'site_title', 'tagline' ], - 'postDescription' => [ - 'author_first_name', - 'author_last_name', - 'author_name', - 'taxonomy_title', + 'dateTitle' => [ + 'archive_date', + 'archive_title', 'current_date', 'current_day', 'current_month', 'current_year', 'custom_field', - 'tax_name', - 'permalink', - 'post_content', - 'post_date', 'post_day', - 'post_excerpt', - 'post_excerpt_only', 'post_month', - 'post_title', 'post_year', 'separator_sa', 'site_title', 'tagline' ], - 'authorTitle' => [ + 'homePage' => [ 'author_first_name', 'author_last_name', 'author_name', @@ -128,13 +118,27 @@ class Tags { 'current_day', 'current_month', 'current_year', - 'custom_field', + 'post_date', + 'post_day', + 'post_excerpt_only', + 'post_excerpt', + 'post_month', + 'post_title', + 'post_year', 'separator_sa', 'site_title', - 'tagline', + 'tagline' ], - 'authorDescription' => [ - 'author_bio', + 'knowledgeGraph' => [ + 'separator_sa', + 'site_title', + 'tagline' + ], + 'pagedFormat' => [ + 'page_number', + 'separator_sa' + ], + 'postDescription' => [ 'author_first_name', 'author_last_name', 'author_name', @@ -143,41 +147,87 @@ class Tags { 'current_month', 'current_year', 'custom_field', + 'permalink', + 'post_content', + 'post_date', + 'post_day', + 'post_excerpt_only', + 'post_excerpt', + 'post_month', + 'post_title', + 'post_year', 'separator_sa', 'site_title', 'tagline', + 'tax_name', + 'taxonomy_title' ], - 'dateTitle' => [ - 'archive_title', + 'postTitle' => [ + 'author_first_name', + 'author_last_name', + 'author_name', + 'categories', 'current_date', 'current_day', 'current_month', 'current_year', 'custom_field', - 'archive_date', + 'permalink', + 'post_content', + 'post_date', 'post_day', + 'post_excerpt_only', + 'post_excerpt', 'post_month', + 'post_title', 'post_year', 'separator_sa', 'site_title', 'tagline', + 'tax_name', + 'taxonomy_title' ], - 'dateDescription' => [ - 'archive_title', + 'rss' => [ + 'author_link', + 'author_link_alt', + 'author_name', + 'featured_image', + 'post_date', + 'post_link', + 'post_link_alt', + 'post_title', + 'site_link', + 'site_link_alt', + 'site_title', + 'taxonomy_title' + ], + 'schema' => [ + 'author_first_name', + 'author_last_name', + 'author_name', + 'author_url', + 'categories', 'current_date', 'current_day', 'current_month', 'current_year', - 'archive_date', + 'custom_field', + 'permalink', + 'post_content', + 'post_date', 'post_day', + 'post_excerpt_only', + 'post_excerpt', 'post_month', + 'post_title', 'post_year', - 'custom_field', 'separator_sa', 'site_title', 'tagline', + 'tax_name', + 'taxonomy_title' ], - 'searchTitle' => [ + 'searchDescription' => [ 'current_date', 'current_day', 'current_month', @@ -186,9 +236,9 @@ class Tags { 'search_term', 'separator_sa', 'site_title', - 'tagline', + 'tagline' ], - 'searchDescription' => [ + 'searchTitle' => [ 'current_date', 'current_day', 'current_month', @@ -197,9 +247,9 @@ class Tags { 'search_term', 'separator_sa', 'site_title', - 'tagline', + 'tagline' ], - 'siteTitle' => [ + 'siteDescription' => [ 'current_date', 'current_day', 'current_month', @@ -213,7 +263,7 @@ class Tags { 'separator_sa', 'tagline' ], - 'siteDescription' => [ + 'siteTitle' => [ 'current_date', 'current_day', 'current_month', @@ -227,23 +277,7 @@ class Tags { 'separator_sa', 'tagline' ], - 'taxonomyTitle' => [ - 'taxonomy_description', - 'taxonomy_title', - 'current_date', - 'current_day', - 'current_month', - 'current_year', - 'custom_field', - 'permalink', - 'separator_sa', - 'site_title', - 'tagline', - 'tax_parent_name' - ], 'taxonomyDescription' => [ - 'taxonomy_description', - 'taxonomy_title', 'current_date', 'current_day', 'current_month', @@ -252,52 +286,23 @@ class Tags { 'permalink', 'separator_sa', 'site_title', - 'tagline' - ], - 'descriptionFormat' => [ - 'description', - 'current_date', - 'current_day', - 'current_month', - 'current_year', - 'custom_field', - 'post_title', - 'post_date', - 'post_month', - 'post_year', - 'separator_sa', - 'site_title', 'tagline', + 'taxonomy_description', + 'taxonomy_title' ], - 'pagedFormat' => [ - 'page_number', - 'separator_sa' - ], - 'schema' => [ - 'author_first_name', - 'author_last_name', - 'author_name', - 'author_url', - 'taxonomy_title', - 'categories', + 'taxonomyTitle' => [ 'current_date', 'current_day', 'current_month', 'current_year', 'custom_field', - 'tax_name', 'permalink', - 'post_content', - 'post_date', - 'post_day', - 'post_excerpt', - 'post_excerpt_only', - 'post_month', - 'post_title', - 'post_year', 'separator_sa', 'site_title', - 'tagline' + 'tagline', + 'tax_parent_name', + 'taxonomy_description', + 'taxonomy_title' ] ]; @@ -788,7 +793,7 @@ public function getContext() { * @param int $id The page or post ID. * @return string The string with tags replaced. */ - public function replaceTags( $string, $id ) { + public function replaceTags( $string, $id = 0 ) { if ( ! $string || ! preg_match( '/#/', $string ) ) { return $string; } diff --git a/languages/aioseo-lite.php b/languages/aioseo-lite.php index 98121e3a4..4aa9bb291 100644 --- a/languages/aioseo-lite.php +++ b/languages/aioseo-lite.php @@ -10,8 +10,8 @@ // Reference: /src/vue/pages/tools/views/HtaccessEditor.vue:27 __( '.htaccess Editor', 'all-in-one-seo-pack' ), - // Reference: /src/vue/standalone/post-settings/views/partials/GraphCard.vue:88 - // Reference: /src/vue/standalone/post-settings/views/partials/GraphCard.vue:91 + // Reference: /src/vue/standalone/post-settings/views/partials/GraphCard.vue:105 + // Reference: /src/vue/standalone/post-settings/views/partials/GraphCard.vue:108 __( '(Default)', 'all-in-one-seo-pack' ), // Reference: /src/vue/pages/link-assistant/views/partials/overview/MostLinkedDomains.vue:106 @@ -397,7 +397,7 @@ // Reference: /src/vue/utils/date.js:22 __( 'a month ago', 'all-in-one-seo-pack' ), - // Reference: /src/vue/pages/search-appearance/views/GlobalSettings.vue:84 + // Reference: /src/vue/pages/search-appearance/views/GlobalSettings.vue:98 __( 'A name that Google may use for your homepage in mobile search results. This will default to the WordPress site title if left blank.', 'all-in-one-seo-pack' ), // Reference: /src/vue/components/common/core/add-redirection/Index.vue:317 @@ -430,8 +430,8 @@ // Reference: /src/vue/standalone/seo-preview/views/partials/GoogleSerpWireframe.vue:36 __( 'About 61,000,000,000 results (0.40 seconds)', 'all-in-one-seo-pack' ), - // Reference: /src/vue/plugins/constants.js:1496 - // Reference: /src/vue/standalone/post-settings/views/mixins/Graphs.js:218 + // Reference: /src/vue/plugins/constants.js:1513 + // Reference: /src/vue/standalone/post-settings/composables/schema.js:126 __( 'About Page', 'all-in-one-seo-pack' ), // Reference: /src/vue/standalone/local-business-seo/views/BusinessInfo.vue:36 @@ -605,11 +605,11 @@ __( 'Additional Profiles', 'all-in-one-seo-pack' ), // Reference: /src/vue/pages/search-appearance/views/partials/lite/Schema.vue:47 - // Reference: /src/vue/standalone/post-settings/views/lite/partials-schema/CtaModal.vue:45 + // Reference: /src/vue/standalone/post-settings/views/lite/partials-schema/CtaModal.vue:54 __( 'Additional Schema Types', 'all-in-one-seo-pack' ), // Reference: /src/vue/standalone/setup-wizard/router/paths.js:44 - // Reference: /src/vue/standalone/setup-wizard/views/AdditionalInformation.vue:51 + // Reference: /src/vue/standalone/setup-wizard/views/AdditionalInformation.vue:53 __( 'Additional Site Information', 'all-in-one-seo-pack' ), // Reference: /src/vue/pages/search-appearance/views/partials/eeat/EeatBlur.vue:71 @@ -786,7 +786,7 @@ // Reference: /src/vue/pages/search-appearance/views/Media.vue:93 __( 'Alt Tag', 'all-in-one-seo-pack' ), - // Reference: /src/vue/pages/search-appearance/views/GlobalSettings.vue:85 + // Reference: /src/vue/pages/search-appearance/views/GlobalSettings.vue:99 __( 'Alternate Website Name', 'all-in-one-seo-pack' ), // Reference: /src/vue/classes/SiteAnalysis.js:450 @@ -804,7 +804,7 @@ // Reference: /src/vue/pages/search-appearance/views/lite/image-seo/Blur.vue:29 __( 'Ampersand (&)', 'all-in-one-seo-pack' ), - // Reference: /src/vue/pages/search-appearance/views/GlobalSettings.vue:86 + // Reference: /src/vue/pages/search-appearance/views/GlobalSettings.vue:100 __( 'An alternate name for your site. This could be an acronym or shorter version of your website name.', 'all-in-one-seo-pack' ), // Reference: /src/vue/components/common/core/addon/Activate.vue:49 @@ -889,7 +889,7 @@ // Reference: /src/vue/pages/settings/views/Advanced.vue:69 __( 'Announcements', 'all-in-one-seo-pack' ), - // Reference: /src/vue/plugins/constants.js:1524 + // Reference: /src/vue/plugins/constants.js:1541 __( 'Annual', 'all-in-one-seo-pack' ), // Reference: /src/vue/pages/sitemaps/views/GeneralSitemap.vue:74 @@ -1004,7 +1004,7 @@ // Reference: /src/vue/pages/search-appearance/views/partials/lite/Schema.vue:27 // Reference: /src/vue/pages/search-appearance/views/partials/lite/Schema.vue:32 // Reference: /src/vue/plugins/constants.js:1245 - // Reference: /src/vue/standalone/post-settings/views/mixins/Graphs.js:102 + // Reference: /src/vue/standalone/post-settings/composables/schema.js:10 __( 'Article', 'all-in-one-seo-pack' ), // Reference: /src/vue/standalone/post-settings/views/Facebook.vue:64 @@ -1027,7 +1027,7 @@ // Reference: /src/vue/standalone/blocks/html-sitemap/HtmlSitemapSidebar.vue:12 __( 'Ascending', 'all-in-one-seo-pack' ), - // Reference: /src/vue/plugins/constants.js:1519 + // Reference: /src/vue/plugins/constants.js:1536 __( 'Associate Degree', 'all-in-one-seo-pack' ), // Reference: /src/vue/pages/search-appearance/views/partials/query-arg-monitor/Table.vue:69 @@ -1142,7 +1142,7 @@ // Reference: /src/vue/pages/search-statistics/views/partials/SeoStatisticsOverview.vue:49 __( 'Avg. Position', 'all-in-one-seo-pack' ), - // Reference: /src/vue/plugins/constants.js:1520 + // Reference: /src/vue/plugins/constants.js:1537 __( 'Bachelor Degree', 'all-in-one-seo-pack' ), // Reference: /src/vue/pages/tools/views/partials/BackupSettings.vue:48 @@ -1221,6 +1221,9 @@ // Reference: /src/vue/pages/settings/views/WebmasterTools.vue:144 __( 'Bing Webmaster Tools', 'all-in-one-seo-pack' ), + // Reference: /src/vue/plugins/constants.js:1469 + __( 'Blended', 'all-in-one-seo-pack' ), + // Reference: /src/vue/pages/tools/views/BadBotBlocker.vue:28 __( 'Block Bad Bots using HTTP', 'all-in-one-seo-pack' ), @@ -1272,11 +1275,11 @@ __( 'Blog Page Title', 'all-in-one-seo-pack' ), // Reference: /src/vue/pages/search-appearance/views/partials/lite/Schema.vue:33 - // Reference: /src/vue/standalone/post-settings/views/mixins/Graphs.js:194 + // Reference: /src/vue/standalone/post-settings/composables/schema.js:102 __( 'Blog Post', 'all-in-one-seo-pack' ), // Reference: /src/vue/plugins/constants.js:1231 - // Reference: /src/vue/standalone/post-settings/views/mixins/Graphs.js:107 + // Reference: /src/vue/standalone/post-settings/composables/schema.js:15 __( 'Book', 'all-in-one-seo-pack' ), // Reference: /src/vue/pages/about/views/AboutUs.vue:210 @@ -1335,7 +1338,7 @@ // Reference: /src/vue/pages/search-appearance/views/partials/Advanced.vue:50 __( 'Bulk Editing', 'all-in-one-seo-pack' ), - // Reference: /src/vue/plugins/constants.js:1467 + // Reference: /src/vue/plugins/constants.js:1478 __( 'Business Event', 'all-in-one-seo-pack' ), // Reference: /src/vue/pages/local-seo/views/Locations.vue:17 @@ -1395,7 +1398,7 @@ // Reference: /src/vue/plugins/constants.js:26 __( 'Cancel', 'all-in-one-seo-pack' ), - // Reference: /src/vue/plugins/constants.js:1489 + // Reference: /src/vue/plugins/constants.js:1500 __( 'Cancelled', 'all-in-one-seo-pack' ), // Reference: /src/vue/pages/search-statistics/views/partials/post-detail/SeoMeta.vue:24 @@ -1446,26 +1449,22 @@ // Translators: 1 - Plugin Short Name ("AIOSEO"). __( 'Check this if you would like to remove ALL %1$s data upon plugin deletion. All settings and SEO data will be unrecoverable.', 'all-in-one-seo-pack' ), - // Reference: /src/vue/plugins/constants.js:1497 - // Reference: /src/vue/standalone/post-settings/views/mixins/Graphs.js:222 + // Reference: /src/vue/plugins/constants.js:1514 + // Reference: /src/vue/standalone/post-settings/composables/schema.js:130 __( 'Checkout Page', 'all-in-one-seo-pack' ), // Reference: /src/vue/plugins/constants.js:1307 __( 'Childcare', 'all-in-one-seo-pack' ), - // Reference: /src/vue/plugins/constants.js:1468 + // Reference: /src/vue/plugins/constants.js:1479 __( 'Childrens Event', 'all-in-one-seo-pack' ), - // Reference: /src/vue/pages/search-appearance/views/GlobalSettings.vue:67 - // Reference: /src/vue/standalone/setup-wizard/views/AdditionalInformation.vue:60 - __( 'Choose a Contact Type', 'all-in-one-seo-pack' ), - // Reference: /src/vue/pages/sitemaps/views/partials/AddAdditionalPage.vue:83 // Reference: /src/vue/pages/tools/views/partials/ImportAioseo.vue:39 __( 'Choose a File', 'all-in-one-seo-pack' ), - // Reference: /src/vue/pages/search-appearance/views/GlobalSettings.vue:63 - // Reference: /src/vue/standalone/setup-wizard/views/AdditionalInformation.vue:53 + // Reference: /src/vue/pages/search-appearance/views/GlobalSettings.vue:74 + // Reference: /src/vue/standalone/setup-wizard/views/AdditionalInformation.vue:55 __( 'Choose a Person', 'all-in-one-seo-pack' ), // Reference: /src/vue/pages/local-seo/views/lite/import/Blur.vue:15 @@ -1497,8 +1496,8 @@ // Translators: 1 - The plugin name ("All in One SEO"). __( 'Choose whether %1$s should output the required schema markup that Google needs to generate a sitelinks search box.', 'all-in-one-seo-pack' ), - // Reference: /src/vue/pages/search-appearance/views/GlobalSettings.vue:62 - // Reference: /src/vue/standalone/setup-wizard/views/AdditionalInformation.vue:56 + // Reference: /src/vue/pages/search-appearance/views/GlobalSettings.vue:73 + // Reference: /src/vue/standalone/setup-wizard/views/AdditionalInformation.vue:58 __( 'Choose whether the site represents a person or an organization.', 'all-in-one-seo-pack' ), // Reference: /src/vue/pages/social-networks/views/Twitter.vue:50 @@ -1558,7 +1557,7 @@ // Reference: /src/vue/pages/social-networks/views/Twitter.vue:68 __( 'Click on the tags below to insert variables into your home page title.', 'all-in-one-seo-pack' ), - // Reference: /src/vue/pages/search-appearance/views/GlobalSettings.vue:56 + // Reference: /src/vue/pages/search-appearance/views/GlobalSettings.vue:67 // Reference: /src/vue/pages/search-appearance/views/partials/TitleDescription.vue:52 // Reference: /src/vue/standalone/post-settings/views/Facebook.vue:63 // Reference: /src/vue/standalone/post-settings/views/General.vue:109 @@ -1569,7 +1568,7 @@ // Reference: /src/vue/standalone/post-settings/views/Facebook.vue:62 __( 'Click on the tags below to insert variables into your site name.', 'all-in-one-seo-pack' ), - // Reference: /src/vue/pages/search-appearance/views/GlobalSettings.vue:54 + // Reference: /src/vue/pages/search-appearance/views/GlobalSettings.vue:65 // Reference: /src/vue/standalone/setup-wizard/views/SearchAppearance.vue:60 __( 'Click on the tags below to insert variables into your site title.', 'all-in-one-seo-pack' ), @@ -1604,11 +1603,11 @@ // Reference: /src/vue/pages/tools/views/WpCode.vue:31 __( 'Code Snippets', 'all-in-one-seo-pack' ), - // Reference: /src/vue/plugins/constants.js:1498 - // Reference: /src/vue/standalone/post-settings/views/mixins/Graphs.js:226 + // Reference: /src/vue/plugins/constants.js:1515 + // Reference: /src/vue/standalone/post-settings/composables/schema.js:134 __( 'Collection Page', 'all-in-one-seo-pack' ), - // Reference: /src/vue/plugins/constants.js:1469 + // Reference: /src/vue/plugins/constants.js:1480 __( 'Comedy Event', 'all-in-one-seo-pack' ), // Reference: /src/react/headline-analyzer/components/HeadlinePanelWordBalance.jsx:47 @@ -1649,6 +1648,9 @@ // Reference: /src/vue/pages/dashboard/views/Main.vue:110 __( 'Configure how your website content will look in Google, Bing and other search engines.', 'all-in-one-seo-pack' ), + // Reference: /src/vue/pages/search-appearance/views/GlobalSettings.vue:92 + __( 'Configure Local SEO', 'all-in-one-seo-pack' ), + // Reference: /src/vue/standalone/post-settings/views/lite/Schema.vue:35 __( 'Configure Schema Markup for your content. Search engines use structured data to display rich results in SERPs.', 'all-in-one-seo-pack' ), @@ -1702,8 +1704,8 @@ // Reference: /src/vue/standalone/local-business-seo/views/BusinessInfo.vue:39 __( 'Contact Info', 'all-in-one-seo-pack' ), - // Reference: /src/vue/plugins/constants.js:1499 - // Reference: /src/vue/standalone/post-settings/views/mixins/Graphs.js:230 + // Reference: /src/vue/plugins/constants.js:1516 + // Reference: /src/vue/standalone/post-settings/composables/schema.js:138 __( 'Contact Page', 'all-in-one-seo-pack' ), // Reference: /src/vue/standalone/local-business-seo/views/BusinessInfo.vue:37 @@ -1712,10 +1714,6 @@ // Reference: /src/vue/pages/local-seo/views/lite/locations/Blur.vue:29 __( 'Contact Page URL:', 'all-in-one-seo-pack' ), - // Reference: /src/vue/pages/search-appearance/views/GlobalSettings.vue:68 - // Reference: /src/vue/standalone/setup-wizard/views/AdditionalInformation.vue:61 - __( 'Contact Type', 'all-in-one-seo-pack' ), - // Reference: /src/vue/pages/search-statistics/views/lite/seo-statistics/Blur.vue:33 __( 'Content', 'all-in-one-seo-pack' ), @@ -1738,7 +1736,7 @@ // Reference: /src/vue/pages/settings/views/lite/Breadcrumbs.vue:40 __( 'Content Types', 'all-in-one-seo-pack' ), - // Reference: /src/vue/plugins/constants.js:1509 + // Reference: /src/vue/plugins/constants.js:1526 __( 'Contractor', 'all-in-one-seo-pack' ), // Reference: /src/vue/composables/AccessControl.js:45 @@ -1793,7 +1791,7 @@ // Reference: /src/vue/components/common/base/Phone.vue:17 __( 'Country code', 'all-in-one-seo-pack' ), - // Reference: /src/vue/standalone/post-settings/views/mixins/Graphs.js:112 + // Reference: /src/vue/standalone/post-settings/composables/schema.js:20 __( 'Course', 'all-in-one-seo-pack' ), // Reference: /src/vue/composables/IndexStatus.js:105 @@ -1872,8 +1870,8 @@ // Reference: /src/vue/components/common/core/add-redirection/CustomRules.vue:49 __( 'Custom Rules', 'all-in-one-seo-pack' ), - // Reference: /src/vue/standalone/post-settings/views/lite/partials-schema/CtaModal.vue:57 - // Reference: /src/vue/standalone/post-settings/views/partials/GraphCard.vue:13 + // Reference: /src/vue/standalone/post-settings/views/lite/partials-schema/CtaModal.vue:66 + // Reference: /src/vue/standalone/post-settings/views/partials/GraphCard.vue:24 __( 'Custom Schema', 'all-in-one-seo-pack' ), // Reference: /src/vue/components/common/core/SettingsSeparator.vue:33 @@ -1892,7 +1890,10 @@ // Reference: /src/vue/plugins/constants.js:19 __( 'daily', 'all-in-one-seo-pack' ), - // Reference: /src/vue/plugins/constants.js:1470 + // Reference: /src/vue/plugins/constants.js:1472 + __( 'Daily', 'all-in-one-seo-pack' ), + + // Reference: /src/vue/plugins/constants.js:1481 __( 'Dance Event', 'all-in-one-seo-pack' ), // Reference: /src/vue/components/lite/settings/NetworkSitesActivation.vue:25 @@ -1915,7 +1916,7 @@ // Reference: /src/vue/pages/tools/router/paths.js:53 __( 'Database Tools', 'all-in-one-seo-pack' ), - // Reference: /src/vue/standalone/post-settings/views/mixins/Graphs.js:117 + // Reference: /src/vue/standalone/post-settings/composables/schema.js:25 __( 'Dataset', 'all-in-one-seo-pack' ), // Reference: /src/vue/components/common/core/PriorityScore.vue:45 @@ -1925,10 +1926,10 @@ // Reference: /src/vue/pages/sitemaps/views/RssSitemap.vue:52 __( 'Date Archive Sitemap', 'all-in-one-seo-pack' ), - // Reference: /src/vue/plugins/constants.js:1527 + // Reference: /src/vue/plugins/constants.js:1544 __( 'Day', 'all-in-one-seo-pack' ), - // Reference: /src/vue/plugins/constants.js:1513 + // Reference: /src/vue/plugins/constants.js:1530 __( 'Day-by-Day Basis', 'all-in-one-seo-pack' ), // Reference: /src/vue/utils/date.js:21 @@ -2062,7 +2063,7 @@ // Reference: /src/vue/pages/sitemaps/views/AdditionalPages.vue:60 __( 'Delete Selected Pages', 'all-in-one-seo-pack' ), - // Reference: /src/vue/plugins/constants.js:1471 + // Reference: /src/vue/plugins/constants.js:1482 __( 'Delivery Event', 'all-in-one-seo-pack' ), // Reference: /src/vue/plugins/constants.js:1308 @@ -2293,7 +2294,7 @@ __( 'Easily display YouTube videos on your WordPress site without writing any code. Comes with multiple layouts, ability to embed live streams, video filtering, ability to combine multiple channel videos, and more.', 'all-in-one-seo-pack' ), // Reference: /src/vue/pages/search-appearance/views/partials/lite/Schema.vue:35 - // Reference: /src/vue/standalone/post-settings/views/lite/partials-schema/CtaModal.vue:33 + // Reference: /src/vue/standalone/post-settings/views/lite/partials-schema/CtaModal.vue:42 __( 'Easily generate unlimited schema markup for your content to help you rank higher in search results. Our schema validator ensures your schema works out of the box.', 'all-in-one-seo-pack' ), // Reference: /src/vue/components/common/seo-revisions/Upsell.vue:33 @@ -2347,12 +2348,13 @@ // Reference: /src/vue/composables/AccessControl.js:25 __( 'Editor', 'all-in-one-seo-pack' ), - // Reference: /src/vue/plugins/constants.js:1472 + // Reference: /src/vue/plugins/constants.js:1483 __( 'Education Event', 'all-in-one-seo-pack' ), // Reference: /src/vue/standalone/blocks/business-info/BusinessInfoSidebar.vue:45 __( 'Email', 'all-in-one-seo-pack' ), + // Reference: /src/vue/pages/search-appearance/views/GlobalSettings.vue:84 // Reference: /src/vue/standalone/blocks/business-info/BusinessInfoSidebar.vue:35 __( 'Email Address', 'all-in-one-seo-pack' ), @@ -2415,7 +2417,7 @@ // Reference: /src/vue/pages/search-statistics/views/partials/post-detail/redirects/Activate.vue:21 __( 'Enable Redirects on Your Site', 'all-in-one-seo-pack' ), - // Reference: /src/vue/pages/search-appearance/views/GlobalSettings.vue:80 + // Reference: /src/vue/pages/search-appearance/views/GlobalSettings.vue:94 __( 'Enable Schema Markup', 'all-in-one-seo-pack' ), // Reference: /src/vue/pages/search-appearance/views/Advanced.vue:80 @@ -2507,6 +2509,9 @@ // Reference: /src/vue/pages/search-appearance/views/partials/query-arg-monitor/BlockArg.vue:26 __( 'Enter one or multiple values', 'all-in-one-seo-pack' ), + // Reference: /src/vue/pages/search-appearance/views/GlobalSettings.vue:80 + __( 'Enter the primary phone number for your business. Don’t have a business phone number? %1$sSee this guide on how to get one.%2$s', 'all-in-one-seo-pack' ), + // Reference: /src/vue/components/common/core/add-redirection/CustomRules.vue:136 __( 'Enter the Server Name', 'all-in-one-seo-pack' ), @@ -2536,7 +2541,7 @@ // Translators: 1 - The table row index, 2 - A message telling this index comes is on the network level. __( 'Equivalent to rule #%1$s%2$s. The trailing wildcard is ignored.', 'all-in-one-seo-pack' ), - // Reference: /src/vue/standalone/post-settings/views/mixins/Graphs.js:122 + // Reference: /src/vue/standalone/post-settings/composables/schema.js:30 __( 'Event', 'all-in-one-seo-pack' ), // Reference: /src/vue/classes/SiteAnalysis.js:205 @@ -2575,7 +2580,7 @@ // Reference: /src/vue/standalone/blocks/html-sitemap/HtmlSitemapSidebar.vue:34 __( 'Exclude Terms', 'all-in-one-seo-pack' ), - // Reference: /src/vue/plugins/constants.js:1473 + // Reference: /src/vue/plugins/constants.js:1484 __( 'Exhibition Event', 'all-in-one-seo-pack' ), // Reference: /src/vue/pages/tools/views/partials/ExportSettings.vue:43 @@ -2627,10 +2632,10 @@ // Reference: /src/vue/standalone/post-settings/views/Facebook.vue:59 __( 'Facebook Title', 'all-in-one-seo-pack' ), - // Reference: /src/vue/standalone/post-settings/views/mixins/Graphs.js:132 + // Reference: /src/vue/standalone/post-settings/composables/schema.js:40 __( 'Fact Check', 'all-in-one-seo-pack' ), - // Reference: /src/vue/standalone/post-settings/views/mixins/Graphs.js:127 + // Reference: /src/vue/standalone/post-settings/composables/schema.js:35 __( 'FAQ', 'all-in-one-seo-pack' ), // Reference: /src/vue/pages/redirects/views/lite/redirects/Redirects.vue:33 @@ -2655,10 +2660,10 @@ // Reference: /src/vue/plugins/constants.js:1443 __( 'Feeds', 'all-in-one-seo-pack' ), - // Reference: /src/vue/plugins/constants.js:1532 + // Reference: /src/vue/plugins/constants.js:1549 __( 'Female', 'all-in-one-seo-pack' ), - // Reference: /src/vue/plugins/constants.js:1474 + // Reference: /src/vue/plugins/constants.js:1485 __( 'Festival', 'all-in-one-seo-pack' ), // Reference: /src/vue/pages/search-appearance/views/Media.vue:108 @@ -2764,7 +2769,7 @@ // Reference: /src/vue/plugins/constants.js:1314 __( 'Food Establishment', 'all-in-one-seo-pack' ), - // Reference: /src/vue/plugins/constants.js:1475 + // Reference: /src/vue/plugins/constants.js:1486 __( 'Food Event', 'all-in-one-seo-pack' ), // Reference: /src/react/headline-analyzer/constants.js:21 @@ -2804,9 +2809,13 @@ // Reference: /src/vue/plugins/constants.js:1271 __( 'Found', 'all-in-one-seo-pack' ), + // Reference: /src/vue/pages/search-appearance/views/GlobalSettings.vue:101 + __( 'Founding Date', 'all-in-one-seo-pack' ), + // Reference: /src/vue/components/common/core/GoogleSearchPreview.vue:165 // Reference: /src/vue/components/lite/core/UpgradeBar.vue:22 // Reference: /src/vue/pages/settings/views/GeneralSettings.vue:41 + // Reference: /src/vue/plugins/constants.js:1508 __( 'Free', 'all-in-one-seo-pack' ), // Reference: /src/vue/standalone/footer-links/App.vue:28 @@ -2823,6 +2832,9 @@ // Reference: /src/vue/standalone/local-business-seo/views/OpeningHours.vue:49 __( 'Friday', 'all-in-one-seo-pack' ), + // Reference: /src/vue/pages/search-appearance/views/GlobalSettings.vue:104 + __( 'From', 'all-in-one-seo-pack' ), + // Reference: /src/vue/pages/tools/views/partials/robots-editor/RuleErrors.vue:81 __( 'from the network level', 'all-in-one-seo-pack' ), @@ -2835,7 +2847,7 @@ // Reference: /src/vue/pages/redirects/views/lite/redirects/Redirects.vue:37 __( 'Full Site Redirects', 'all-in-one-seo-pack' ), - // Reference: /src/vue/plugins/constants.js:1507 + // Reference: /src/vue/plugins/constants.js:1524 __( 'Full Time', 'all-in-one-seo-pack' ), // Reference: /src/vue/components/common/core/add-redirection/UrlResults.vue:24 @@ -3010,16 +3022,9 @@ // Reference: /src/vue/standalone/setup-wizard/views/Welcome.vue:43 __( 'Go back to the Dashboard', 'all-in-one-seo-pack' ), - // Reference: /src/vue/pages/search-appearance/views/GlobalSettings.vue:73 - // Translators: 1 - Opening HTML bold tag, 2 - Closing HTML bold tag., 3 - "Pro", 4 - "Pro". - __( 'Go to %1$sLocal SEO Settings%2$s and set up your local business info like location address, opening hours (%3$s), and Google Maps settings (%4$s).', 'all-in-one-seo-pack' ), - // Reference: /src/vue/pages/seo-revisions/views/lite/Index.vue:20 __( 'Go to editor', 'all-in-one-seo-pack' ), - // Reference: /src/vue/pages/search-appearance/views/GlobalSettings.vue:79 - __( 'Go to Local SEO Settings', 'all-in-one-seo-pack' ), - // Reference: /src/vue/standalone/post-settings/views/Facebook.vue:74 // Reference: /src/vue/standalone/post-settings/views/Twitter.vue:69 __( 'Go to Social Networks', 'all-in-one-seo-pack' ), @@ -3117,7 +3122,7 @@ // Reference: /src/vue/composables/IndexStatus.js:190 __( 'Google-Selected Canonical:', 'all-in-one-seo-pack' ), - // Reference: /src/vue/pages/search-appearance/views/GlobalSettings.vue:58 + // Reference: /src/vue/pages/search-appearance/views/GlobalSettings.vue:69 __( 'Google, Bing and other search engines use specific data from your schema markup to output data in their Knowledge Panels. This data is known as the Knowledge Graph. Use these settings to change how that data looks.', 'all-in-one-seo-pack' ), // Reference: /src/vue/standalone/page-builders/elementor/introduction.js:31 @@ -3166,7 +3171,7 @@ // Reference: /src/vue/classes/SiteAnalysis.js:144 __( 'H2 tags were found on your page.', 'all-in-one-seo-pack' ), - // Reference: /src/vue/plugins/constants.js:1476 + // Reference: /src/vue/plugins/constants.js:1487 __( 'Hackathon', 'all-in-one-seo-pack' ), // Reference: /src/vue/pages/settings/views/WebmasterTools.vue:99 @@ -3251,7 +3256,7 @@ // Reference: /src/vue/plugins/constants.js:30 __( 'Hide', 'all-in-one-seo-pack' ), - // Reference: /src/vue/plugins/constants.js:1518 + // Reference: /src/vue/plugins/constants.js:1535 __( 'High School', 'all-in-one-seo-pack' ), // Reference: /src/vue/mixins/TruSeoHighlighter.js:61 @@ -3275,7 +3280,7 @@ __( 'Home & Construction Business', 'all-in-one-seo-pack' ), // Reference: /src/vue/components/common/core/PriorityScore.vue:44 - // Reference: /src/vue/pages/search-appearance/views/GlobalSettings.vue:52 + // Reference: /src/vue/pages/search-appearance/views/GlobalSettings.vue:63 __( 'Home Page', 'all-in-one-seo-pack' ), // Reference: /src/vue/pages/social-networks/views/Twitter.vue:65 @@ -3302,7 +3307,7 @@ // Reference: /src/vue/plugins/constants.js:1182 __( 'Hotel', 'all-in-one-seo-pack' ), - // Reference: /src/vue/plugins/constants.js:1528 + // Reference: /src/vue/plugins/constants.js:1545 __( 'Hour', 'all-in-one-seo-pack' ), // Reference: /src/vue/plugins/constants.js:18 @@ -3311,7 +3316,7 @@ // Reference: /src/vue/standalone/local-business-seo/views/OpeningHours.vue:42 __( 'Hours', 'all-in-one-seo-pack' ), - // Reference: /src/vue/standalone/post-settings/views/mixins/Graphs.js:137 + // Reference: /src/vue/standalone/post-settings/composables/schema.js:45 __( 'How To', 'all-in-one-seo-pack' ), // Reference: /src/vue/pages/about/views/GettingStarted.vue:71 @@ -3592,7 +3597,7 @@ __( 'Include Date Archives in your sitemap.', 'all-in-one-seo-pack' ), // Reference: /src/vue/pages/search-appearance/views/partials/lite/Schema.vue:46 - // Reference: /src/vue/standalone/post-settings/views/lite/partials-schema/CtaModal.vue:44 + // Reference: /src/vue/standalone/post-settings/views/lite/partials-schema/CtaModal.vue:53 __( 'Increase Rankings', 'all-in-one-seo-pack' ), // Reference: /src/vue/mixins/Wizard.js:133 @@ -3703,7 +3708,7 @@ // Reference: /src/vue/pages/local-seo/views/lite/maps/Blur.vue:14 __( 'Integrating with Google Maps will allow your users to find exactly where your business is located. Our interactive maps let them see your Google Reviews and get directions directly from your site. Create multiple maps for use with multiple locations.', 'all-in-one-seo-pack' ), - // Reference: /src/vue/plugins/constants.js:1511 + // Reference: /src/vue/plugins/constants.js:1528 __( 'Intern', 'all-in-one-seo-pack' ), // Reference: /src/vue/composables/IndexStatus.js:169 @@ -3779,8 +3784,8 @@ // Reference: /src/vue/classes/SiteAnalysis.js:189 __( 'It\'s impossible to cover every aspect of a subject on a single page, but your readers may be fascinated by some detail you barely touch on. If you link to a resource where they can learn more, they\'ll be grateful. What\'s more, you\'ll be rewarded with higher rankings!', 'all-in-one-seo-pack' ), - // Reference: /src/vue/plugins/constants.js:1500 - // Reference: /src/vue/standalone/post-settings/views/mixins/Graphs.js:234 + // Reference: /src/vue/plugins/constants.js:1517 + // Reference: /src/vue/standalone/post-settings/composables/schema.js:142 __( 'Item Page', 'all-in-one-seo-pack' ), // Reference: /src/vue/components/common/core/wp/Pagination.vue:24 @@ -3796,7 +3801,7 @@ // Reference: /src/vue/classes/SiteAnalysis.js:362 __( 'JavaScript:', 'all-in-one-seo-pack' ), - // Reference: /src/vue/standalone/post-settings/views/mixins/Graphs.js:142 + // Reference: /src/vue/standalone/post-settings/composables/schema.js:50 __( 'Job Posting', 'all-in-one-seo-pack' ), // Reference: /src/vue/standalone/setup-wizard/views/Success.vue:55 @@ -3840,13 +3845,13 @@ // Translators: 1 - "PRO". __( 'Keyword Tracking is a %1$s Feature', 'all-in-one-seo-pack' ), - // Reference: /src/vue/pages/search-appearance/views/GlobalSettings.vue:81 + // Reference: /src/vue/pages/search-appearance/views/GlobalSettings.vue:95 // Reference: /src/vue/pages/search-appearance/views/partials/Advanced.vue:54 // Reference: /src/vue/pages/search-statistics/views/partials/KeywordsDistributionGraph.vue:25 // Reference: /src/vue/standalone/post-settings/views/Advanced.vue:57 __( 'Keywords', 'all-in-one-seo-pack' ), - // Reference: /src/vue/pages/search-appearance/views/GlobalSettings.vue:57 + // Reference: /src/vue/pages/search-appearance/views/GlobalSettings.vue:68 __( 'Knowledge Graph', 'all-in-one-seo-pack' ), // Reference: /src/vue/standalone/blocks/location-map/LocationMapSidebar.vue:43 @@ -4023,7 +4028,7 @@ // Reference: /src/vue/pages/about/router/paths.js:35 __( 'Lite vs. Pro', 'all-in-one-seo-pack' ), - // Reference: /src/vue/plugins/constants.js:1477 + // Reference: /src/vue/plugins/constants.js:1488 __( 'Literary Event', 'all-in-one-seo-pack' ), // Reference: /src/vue/standalone/setup-wizard/views/SearchAppearance.vue:66 @@ -4089,7 +4094,7 @@ // Reference: /src/vue/plugins/constants.js:1432 __( 'Login Status', 'all-in-one-seo-pack' ), - // Reference: /src/vue/pages/search-appearance/views/GlobalSettings.vue:70 + // Reference: /src/vue/pages/search-appearance/views/GlobalSettings.vue:85 // Reference: /src/vue/standalone/setup-wizard/views/AdditionalInformation.vue:63 __( 'Logo', 'all-in-one-seo-pack' ), @@ -4130,7 +4135,7 @@ // Reference: /src/vue/classes/SiteAnalysis.js:150 __( 'Make sure you have a good balance of H2 tags to plain text in your content. Break the content down into logical sections, and use headings to introduce each new topic.', 'all-in-one-seo-pack' ), - // Reference: /src/vue/plugins/constants.js:1531 + // Reference: /src/vue/plugins/constants.js:1548 __( 'Male', 'all-in-one-seo-pack' ), // Reference: /src/vue/components/common/core/FeatureCard.vue:71 @@ -4159,7 +4164,7 @@ // Reference: /src/vue/plugins/constants.js:1298 __( 'Manual Redirects', 'all-in-one-seo-pack' ), - // Reference: /src/vue/pages/search-appearance/views/GlobalSettings.vue:100 + // Reference: /src/vue/pages/search-appearance/views/GlobalSettings.vue:119 // Reference: /src/vue/standalone/setup-wizard/views/AdditionalInformation.vue:81 __( 'Manually Enter Person', 'all-in-one-seo-pack' ), @@ -4197,11 +4202,11 @@ // Reference: /src/vue/plugins/constants.js:1322 __( 'Medical Business', 'all-in-one-seo-pack' ), - // Reference: /src/vue/plugins/constants.js:1501 - // Reference: /src/vue/standalone/post-settings/views/mixins/Graphs.js:238 + // Reference: /src/vue/plugins/constants.js:1518 + // Reference: /src/vue/standalone/post-settings/composables/schema.js:146 __( 'Medical Page', 'all-in-one-seo-pack' ), - // Reference: /src/vue/pages/search-appearance/views/GlobalSettings.vue:55 + // Reference: /src/vue/pages/search-appearance/views/GlobalSettings.vue:66 // Reference: /src/vue/pages/search-appearance/views/partials/TitleDescription.vue:51 // Reference: /src/vue/standalone/post-settings/views/General.vue:108 // Reference: /src/vue/standalone/setup-wizard/views/SearchAppearance.vue:63 @@ -4274,12 +4279,15 @@ // Reference: /src/vue/mixins/Wizard.js:44 __( 'MonsterInsights Free', 'all-in-one-seo-pack' ), - // Reference: /src/vue/plugins/constants.js:1525 + // Reference: /src/vue/plugins/constants.js:1542 __( 'Month', 'all-in-one-seo-pack' ), // Reference: /src/vue/plugins/constants.js:21 __( 'monthly', 'all-in-one-seo-pack' ), + // Reference: /src/vue/plugins/constants.js:1474 + __( 'Monthly', 'all-in-one-seo-pack' ), + // Reference: /src/vue/utils/date.js:26 // Translators: A number will be prepended to this string, e.g. "2 months ago". __( 'months ago', 'all-in-one-seo-pack' ), @@ -4297,7 +4305,7 @@ // Reference: /src/react/headline-analyzer/components/HeadlinePanelStartEndWords.jsx:12 __( 'Most readers only look at the first and last 3 words of a headline before deciding whether to click.', 'all-in-one-seo-pack' ), - // Reference: /src/vue/plugins/constants.js:1492 + // Reference: /src/vue/plugins/constants.js:1503 __( 'Moved Online', 'all-in-one-seo-pack' ), // Reference: /src/vue/components/common/core/add-redirection/Index.vue:359 @@ -4305,7 +4313,7 @@ __( 'Moved Permanently', 'all-in-one-seo-pack' ), // Reference: /src/vue/plugins/constants.js:1235 - // Reference: /src/vue/standalone/post-settings/views/mixins/Graphs.js:147 + // Reference: /src/vue/standalone/post-settings/composables/schema.js:55 __( 'Movie', 'all-in-one-seo-pack' ), // Reference: /src/vue/pages/local-seo/views/lite/locations/Locations.vue:28 @@ -4313,16 +4321,16 @@ // Reference: /src/vue/pages/local-seo/views/lite/opening-hours/OpeningHours.vue:28 __( 'Multiple Locations', 'all-in-one-seo-pack' ), - // Reference: /src/vue/standalone/post-settings/views/mixins/Graphs.js:152 + // Reference: /src/vue/standalone/post-settings/composables/schema.js:60 __( 'Music', 'all-in-one-seo-pack' ), - // Reference: /src/vue/standalone/post-settings/views/mixins/Graphs.js:204 + // Reference: /src/vue/standalone/post-settings/composables/schema.js:112 __( 'Music Album', 'all-in-one-seo-pack' ), - // Reference: /src/vue/plugins/constants.js:1478 + // Reference: /src/vue/plugins/constants.js:1489 __( 'Music Event', 'all-in-one-seo-pack' ), - // Reference: /src/vue/standalone/post-settings/views/mixins/Graphs.js:208 + // Reference: /src/vue/standalone/post-settings/composables/schema.js:116 __( 'Music Group', 'all-in-one-seo-pack' ), // Reference: /src/vue/plugins/constants.js:1212 @@ -4331,7 +4339,7 @@ // Reference: /src/vue/pages/tools/views/SystemStatus.vue:48 __( 'Must-Use Plugins', 'all-in-one-seo-pack' ), - // Reference: /src/vue/plugins/constants.js:1536 + // Reference: /src/vue/plugins/constants.js:1553 // Reference: /src/vue/standalone/post-settings/registerScoreToggler.js:27 // Reference: /src/vue/standalone/publish-panel/PrePublish.vue:133 __( 'N/A', 'all-in-one-seo-pack' ), @@ -4342,7 +4350,7 @@ // Reference: /src/vue/pages/search-appearance/views/partials/eeat/EeatBlur.vue:64 // Reference: /src/vue/standalone/blocks/business-info/BusinessInfoSidebar.vue:31 // Reference: /src/vue/standalone/local-business-seo/views/BusinessInfo.vue:31 - // Reference: /src/vue/standalone/setup-wizard/views/AdditionalInformation.vue:57 + // Reference: /src/vue/standalone/setup-wizard/views/AdditionalInformation.vue:59 __( 'Name', 'all-in-one-seo-pack' ), // Reference: /src/vue/mixins/HeadlineResult.js:64 @@ -4407,7 +4415,7 @@ __( 'News & Video Sitemap', 'all-in-one-seo-pack' ), // Reference: /src/vue/pages/search-appearance/views/partials/lite/Schema.vue:34 - // Reference: /src/vue/standalone/post-settings/views/mixins/Graphs.js:198 + // Reference: /src/vue/standalone/post-settings/composables/schema.js:106 __( 'News Article', 'all-in-one-seo-pack' ), // Reference: /src/vue/standalone/setup-wizard/views/Category.vue:73 @@ -4658,6 +4666,9 @@ // Reference: /src/vue/composables/Notifications.js:5 __( 'Notifications', 'all-in-one-seo-pack' ), + // Reference: /src/vue/pages/search-appearance/views/GlobalSettings.vue:102 + __( 'Number of Employees', 'all-in-one-seo-pack' ), + // Reference: /src/vue/pages/sitemaps/views/RssSitemap.vue:44 __( 'Number of Posts', 'all-in-one-seo-pack' ), @@ -4694,6 +4705,9 @@ // Reference: /src/vue/classes/SiteAnalysis.js:127 __( 'One H1 tag was found on your page.', 'all-in-one-seo-pack' ), + // Reference: /src/vue/plugins/constants.js:1467 + __( 'Online', 'all-in-one-seo-pack' ), + // Reference: /src/vue/standalone/setup-wizard/views/Category.vue:74 __( 'Online Store', 'all-in-one-seo-pack' ), @@ -4704,6 +4718,9 @@ // Reference: /src/vue/classes/SiteAnalysis.js:220 __( 'Only ever use noindex meta tag or header on pages you want to keep out of the reach of search engines!', 'all-in-one-seo-pack' ), + // Reference: /src/vue/plugins/constants.js:1468 + __( 'Onsite', 'all-in-one-seo-pack' ), + // Reference: /src/vue/components/common/core/main/Index.vue:122 // Translators: 1 - Opening link tag, 2 - Closing link tag. __( 'Oops! It looks like an error occurred while saving the changes. Please try again or %1$scontact our support team%2$s.', 'all-in-one-seo-pack' ), @@ -4803,12 +4820,16 @@ // Reference: /src/vue/plugins/constants.js:37 __( 'Or', 'all-in-one-seo-pack' ), - // Reference: /src/vue/pages/search-appearance/views/GlobalSettings.vue:61 - // Reference: /src/vue/standalone/setup-wizard/views/AdditionalInformation.vue:55 + // Reference: /src/vue/pages/search-appearance/views/GlobalSettings.vue:72 + // Reference: /src/vue/standalone/setup-wizard/views/AdditionalInformation.vue:57 __( 'Organization', 'all-in-one-seo-pack' ), - // Reference: /src/vue/pages/search-appearance/views/GlobalSettings.vue:64 - // Reference: /src/vue/standalone/setup-wizard/views/AdditionalInformation.vue:58 + // Reference: /src/vue/pages/search-appearance/views/GlobalSettings.vue:76 + // Reference: /src/vue/standalone/setup-wizard/views/AdditionalInformation.vue:61 + __( 'Organization Description', 'all-in-one-seo-pack' ), + + // Reference: /src/vue/pages/search-appearance/views/GlobalSettings.vue:75 + // Reference: /src/vue/standalone/setup-wizard/views/AdditionalInformation.vue:60 __( 'Organization Name', 'all-in-one-seo-pack' ), // Reference: /src/vue/plugins/constants.js:1196 @@ -4824,7 +4845,7 @@ // Reference: /src/vue/pages/link-assistant/views/partials/overview/LinkCount.vue:34 __( 'Orphaned posts are posts that have no inbound internal links yet and may be more difficult to find by search engines.', 'all-in-one-seo-pack' ), - // Reference: /src/vue/plugins/constants.js:1514 + // Reference: /src/vue/plugins/constants.js:1531 __( 'Other', 'all-in-one-seo-pack' ), // Reference: /src/vue/pages/link-assistant/views/partials/overview/MostLinkedDomains.vue:67 @@ -4846,6 +4867,10 @@ // Translators: 1 - HTML Line break tag. __( 'Our Headline Analyzer tool enables you to write irresistible SEO headlines%1$sthat drive traffic, shares, and rank better in search results.', 'all-in-one-seo-pack' ), + // Reference: /src/vue/pages/search-appearance/views/GlobalSettings.vue:88 + // Translators: 1 - Opening HTML bold tag, 2 - Closing HTML bold tag. + __( 'Our Local SEO addon enables you to tell Google about your business (name, address, opening hours, contact info & more) and further enhances your Knowledge Graph schema markup.', 'all-in-one-seo-pack' ), + // Reference: /src/vue/standalone/blocks/location-map/index.js:74 __( 'Our location:', 'all-in-one-seo-pack' ), @@ -4914,13 +4939,22 @@ // Reference: /src/vue/pages/search-appearance/views/Advanced.vue:130 __( 'Paginated RSS Feeds', 'all-in-one-seo-pack' ), + // Reference: /src/vue/plugins/constants.js:1506 + __( 'Paid', 'all-in-one-seo-pack' ), + // Reference: /src/app/tru-seo/analyzer/analysis/paragraphLength.js:23 // Reference: /src/app/tru-seo/analyzer/analysis/paragraphLength.js:33 __( 'Paragraphs length', 'all-in-one-seo-pack' ), - // Reference: /src/vue/plugins/constants.js:1508 + // Reference: /src/vue/standalone/post-settings/views/partials/GraphCard.vue:38 + __( 'Parsing Block Data...', 'all-in-one-seo-pack' ), + + // Reference: /src/vue/plugins/constants.js:1525 __( 'Part Time', 'all-in-one-seo-pack' ), + // Reference: /src/vue/plugins/constants.js:1509 + __( 'Partially Free', 'all-in-one-seo-pack' ), + // Reference: /src/vue/plugins/constants.js:1289 __( 'Pass through', 'all-in-one-seo-pack' ), @@ -4968,16 +5002,16 @@ // Reference: /src/vue/plugins/constants.js:1275 __( 'Permanent Redirect', 'all-in-one-seo-pack' ), - // Reference: /src/vue/pages/search-appearance/views/GlobalSettings.vue:60 - // Reference: /src/vue/standalone/post-settings/views/mixins/Graphs.js:157 - // Reference: /src/vue/standalone/setup-wizard/views/AdditionalInformation.vue:54 + // Reference: /src/vue/pages/search-appearance/views/GlobalSettings.vue:71 + // Reference: /src/vue/standalone/post-settings/composables/schema.js:65 + // Reference: /src/vue/standalone/setup-wizard/views/AdditionalInformation.vue:56 __( 'Person', 'all-in-one-seo-pack' ), - // Reference: /src/vue/pages/search-appearance/views/GlobalSettings.vue:65 + // Reference: /src/vue/pages/search-appearance/views/GlobalSettings.vue:77 __( 'Person Name', 'all-in-one-seo-pack' ), - // Reference: /src/vue/pages/search-appearance/views/GlobalSettings.vue:59 - // Reference: /src/vue/standalone/setup-wizard/views/AdditionalInformation.vue:52 + // Reference: /src/vue/pages/search-appearance/views/GlobalSettings.vue:70 + // Reference: /src/vue/standalone/setup-wizard/views/AdditionalInformation.vue:54 __( 'Person or Organization', 'all-in-one-seo-pack' ), // Reference: /src/vue/standalone/user-profile-tab/App.vue:82 @@ -4989,9 +5023,9 @@ // Reference: /src/vue/components/common/base/Phone.vue:21 __( 'Phone number', 'all-in-one-seo-pack' ), - // Reference: /src/vue/pages/search-appearance/views/GlobalSettings.vue:66 + // Reference: /src/vue/pages/search-appearance/views/GlobalSettings.vue:78 // Reference: /src/vue/standalone/blocks/business-info/BusinessInfoSidebar.vue:33 - // Reference: /src/vue/standalone/setup-wizard/views/AdditionalInformation.vue:59 + // Reference: /src/vue/standalone/setup-wizard/views/AdditionalInformation.vue:62 __( 'Phone Number', 'all-in-one-seo-pack' ), // Reference: /src/vue/standalone/blocks/business-info/index.js:69 @@ -5159,10 +5193,10 @@ // Reference: /src/vue/standalone/blocks/html-sitemap/HtmlSitemapSidebar.vue:19 __( 'Post/Term ID', 'all-in-one-seo-pack' ), - // Reference: /src/vue/plugins/constants.js:1521 + // Reference: /src/vue/plugins/constants.js:1538 __( 'Postgraduate Degree', 'all-in-one-seo-pack' ), - // Reference: /src/vue/plugins/constants.js:1490 + // Reference: /src/vue/plugins/constants.js:1501 __( 'Postponed', 'all-in-one-seo-pack' ), // Reference: /src/vue/pages/link-assistant/views/partials/overview/LinkCount.vue:39 @@ -5178,7 +5212,7 @@ // Reference: /src/vue/pages/settings/views/Breadcrumbs.vue:92 __( 'Prefix for breadcrumb path.', 'all-in-one-seo-pack' ), - // Reference: /src/vue/pages/search-appearance/views/GlobalSettings.vue:82 + // Reference: /src/vue/pages/search-appearance/views/GlobalSettings.vue:96 // Reference: /src/vue/standalone/post-settings/views/Advanced.vue:58 __( 'Press enter to create a keyword', 'all-in-one-seo-pack' ), @@ -5221,7 +5255,7 @@ __( 'Priority Score is a %1$s feature. %2$s', 'all-in-one-seo-pack' ), // Reference: /src/vue/plugins/constants.js:1236 - // Reference: /src/vue/standalone/post-settings/views/mixins/Graphs.js:162 + // Reference: /src/vue/standalone/post-settings/composables/schema.js:70 __( 'Product', 'all-in-one-seo-pack' ), // Reference: /src/vue/utils/tags.js:54 @@ -5230,7 +5264,7 @@ // Reference: /src/vue/plugins/constants.js:1228 __( 'Products & Entertainment', 'all-in-one-seo-pack' ), - // Reference: /src/vue/plugins/constants.js:1517 + // Reference: /src/vue/plugins/constants.js:1534 __( 'Professional Certificate', 'all-in-one-seo-pack' ), // Reference: /src/vue/plugins/constants.js:1323 @@ -5239,8 +5273,8 @@ // Reference: /src/vue/plugins/constants.js:1214 __( 'Profile', 'all-in-one-seo-pack' ), - // Reference: /src/vue/plugins/constants.js:1502 - // Reference: /src/vue/standalone/post-settings/views/mixins/Graphs.js:242 + // Reference: /src/vue/plugins/constants.js:1519 + // Reference: /src/vue/standalone/post-settings/composables/schema.js:150 __( 'Profile Page', 'all-in-one-seo-pack' ), // Reference: /src/vue/plugins/constants.js:1215 @@ -5249,7 +5283,7 @@ // Reference: /src/vue/pages/sitemaps/views/HtmlSitemap.vue:151 __( 'Publication Date', 'all-in-one-seo-pack' ), - // Reference: /src/vue/plugins/constants.js:1479 + // Reference: /src/vue/plugins/constants.js:1490 __( 'Publication Event', 'all-in-one-seo-pack' ), // Reference: /src/vue/pages/sitemaps/composables/NewsSitemap.js:7 @@ -5324,11 +5358,11 @@ // Reference: /src/vue/plugins/constants.js:1325 __( 'Real Estate Agent', 'all-in-one-seo-pack' ), - // Reference: /src/vue/plugins/constants.js:1503 - // Reference: /src/vue/standalone/post-settings/views/mixins/Graphs.js:246 + // Reference: /src/vue/plugins/constants.js:1520 + // Reference: /src/vue/standalone/post-settings/composables/schema.js:154 __( 'Real Estate Listing', 'all-in-one-seo-pack' ), - // Reference: /src/vue/standalone/post-settings/views/mixins/Graphs.js:167 + // Reference: /src/vue/standalone/post-settings/composables/schema.js:75 __( 'Recipe', 'all-in-one-seo-pack' ), // Reference: /src/vue/components/common/core/site-score/Competitor.vue:46 @@ -5447,7 +5481,7 @@ // Reference: /src/vue/standalone/blocks/table-of-contents/vue/App.vue:41 __( 'Reorder', 'all-in-one-seo-pack' ), - // Reference: /src/vue/plugins/constants.js:1491 + // Reference: /src/vue/plugins/constants.js:1502 __( 'Rescheduled', 'all-in-one-seo-pack' ), // Reference: /src/vue/plugins/constants.js:1164 @@ -5525,7 +5559,7 @@ // Reference: /src/vue/pages/search-statistics/views/partials/post-detail/SpeedTest.vue:35 __( 'Running speed test...', 'all-in-one-seo-pack' ), - // Reference: /src/vue/plugins/constants.js:1480 + // Reference: /src/vue/plugins/constants.js:1491 __( 'Sale Event', 'all-in-one-seo-pack' ), // Reference: /src/vue/plugins/constants.js:1165 @@ -5564,20 +5598,20 @@ // Reference: /src/vue/plugins/constants.js:1447 __( 'Schedule', 'all-in-one-seo-pack' ), - // Reference: /src/vue/plugins/constants.js:1488 + // Reference: /src/vue/plugins/constants.js:1499 __( 'Scheduled', 'all-in-one-seo-pack' ), // Reference: /src/vue/pages/search-statistics/views/partials/post-detail/SeoMeta.vue:23 // Reference: /src/vue/standalone/post-settings/views/Main.vue:140 __( 'Schema', 'all-in-one-seo-pack' ), - // Reference: /src/vue/standalone/post-settings/views/lite/partials-schema/CtaModal.vue:70 + // Reference: /src/vue/standalone/post-settings/views/lite/partials-schema/CtaModal.vue:79 __( 'Schema Catalog', 'all-in-one-seo-pack' ), - // Reference: /src/vue/standalone/post-settings/views/lite/partials-schema/CtaModal.vue:26 + // Reference: /src/vue/standalone/post-settings/views/lite/partials-schema/CtaModal.vue:35 __( 'Schema Generator', 'all-in-one-seo-pack' ), - // Reference: /src/vue/standalone/post-settings/views/lite/partials-schema/CtaModal.vue:37 + // Reference: /src/vue/standalone/post-settings/views/lite/partials-schema/CtaModal.vue:46 // Translators: 1 - "PRO". __( 'Schema Generator is a %1$s Feature', 'all-in-one-seo-pack' ), @@ -5592,13 +5626,13 @@ // Translators: 1 - "PRO". __( 'Schema Markup Generator is a %1$s Feature', 'all-in-one-seo-pack' ), - // Reference: /src/vue/standalone/post-settings/views/lite/partials-schema/CtaModal.vue:51 + // Reference: /src/vue/standalone/post-settings/views/lite/partials-schema/CtaModal.vue:60 __( 'Schema Templates', 'all-in-one-seo-pack' ), // Reference: /src/vue/pages/search-appearance/views/partials/lite/Schema.vue:30 __( 'Schema Type', 'all-in-one-seo-pack' ), - // Reference: /src/vue/standalone/post-settings/views/lite/partials-schema/CtaModal.vue:63 + // Reference: /src/vue/standalone/post-settings/views/lite/partials-schema/CtaModal.vue:72 __( 'Schema Validation', 'all-in-one-seo-pack' ), // Reference: /src/vue/plugins/constants.js:1201 @@ -5610,7 +5644,7 @@ // Reference: /src/react/headline-analyzer/components/HeadlineTabCurrentScore.jsx:11 __( 'Score', 'all-in-one-seo-pack' ), - // Reference: /src/vue/plugins/constants.js:1481 + // Reference: /src/vue/plugins/constants.js:1492 __( 'Screening Event', 'all-in-one-seo-pack' ), // Reference: /src/vue/components/common/core/Help.vue:40 @@ -5655,11 +5689,11 @@ // Reference: /src/vue/pages/settings/views/Breadcrumbs.vue:95 __( 'Search Result Format', 'all-in-one-seo-pack' ), - // Reference: /src/vue/plugins/constants.js:1504 - // Reference: /src/vue/standalone/post-settings/views/mixins/Graphs.js:250 + // Reference: /src/vue/plugins/constants.js:1521 + // Reference: /src/vue/standalone/post-settings/composables/schema.js:158 __( 'Search Results Page', 'all-in-one-seo-pack' ), - // Reference: /src/vue/standalone/post-settings/views/lite/partials-schema/CtaModal.vue:32 + // Reference: /src/vue/standalone/post-settings/views/lite/partials-schema/CtaModal.vue:41 __( 'Search Schema', 'all-in-one-seo-pack' ), // Reference: /src/vue/pages/dashboard/views/Main.vue:125 @@ -5803,10 +5837,6 @@ // Translators: 1 - Plugin Short Name ("AIOSEO"). __( 'Select which Taxonomies you want to use the %1$s columns with.', 'all-in-one-seo-pack' ), - // Reference: /src/vue/pages/search-appearance/views/GlobalSettings.vue:69 - // Reference: /src/vue/standalone/setup-wizard/views/AdditionalInformation.vue:62 - __( 'Select which team or department the phone number belongs to.', 'all-in-one-seo-pack' ), - // Reference: /src/vue/standalone/local-business-seo/views/OpeningHours.vue:23 __( 'Select your timezone', 'all-in-one-seo-pack' ), @@ -5914,7 +5944,7 @@ // Reference: /src/vue/pages/settings/views/Breadcrumbs.vue:87 __( 'Separator', 'all-in-one-seo-pack' ), - // Reference: /src/vue/pages/search-appearance/views/GlobalSettings.vue:45 + // Reference: /src/vue/pages/search-appearance/views/GlobalSettings.vue:56 __( 'Separator Character', 'all-in-one-seo-pack' ), // Reference: /src/vue/standalone/post-settings/views/General.vue:104 @@ -5934,7 +5964,7 @@ // Reference: /src/vue/pages/tools/views/SystemStatus.vue:46 __( 'Server Info', 'all-in-one-seo-pack' ), - // Reference: /src/vue/standalone/post-settings/views/mixins/Graphs.js:172 + // Reference: /src/vue/standalone/post-settings/composables/schema.js:80 __( 'Service', 'all-in-one-seo-pack' ), // Reference: /src/vue/plugins/constants.js:1286 @@ -6072,7 +6102,7 @@ // Reference: /src/vue/pages/social-networks/views/Facebook.vue:69 __( 'Site Name', 'all-in-one-seo-pack' ), - // Reference: /src/vue/pages/search-appearance/views/GlobalSettings.vue:53 + // Reference: /src/vue/pages/search-appearance/views/GlobalSettings.vue:64 __( 'Site Title', 'all-in-one-seo-pack' ), // Reference: /src/vue/pages/sitemaps/views/partials/SitemapsWithErrorsModal.vue:149 @@ -6124,7 +6154,7 @@ // Reference: /src/vue/standalone/publish-panel/PrePublish.vue:73 __( 'Social', 'all-in-one-seo-pack' ), - // Reference: /src/vue/plugins/constants.js:1482 + // Reference: /src/vue/plugins/constants.js:1493 __( 'Social Event', 'all-in-one-seo-pack' ), // Reference: /src/vue/standalone/post-settings/views/SocialSideBar.vue:23 @@ -6146,7 +6176,7 @@ // Reference: /src/vue/composables/IndexStatus.js:153 __( 'Soft 404', 'all-in-one-seo-pack' ), - // Reference: /src/vue/standalone/post-settings/views/mixins/Graphs.js:177 + // Reference: /src/vue/standalone/post-settings/composables/schema.js:85 __( 'Software', 'all-in-one-seo-pack' ), // Reference: /src/vue/classes/SiteAnalysis.js:334 @@ -6204,7 +6234,7 @@ // Reference: /src/vue/plugins/constants.js:1329 __( 'Sports Activity Location', 'all-in-one-seo-pack' ), - // Reference: /src/vue/plugins/constants.js:1483 + // Reference: /src/vue/plugins/constants.js:1494 __( 'Sports Event', 'all-in-one-seo-pack' ), // Reference: /src/vue/plugins/constants.js:1191 @@ -6270,6 +6300,9 @@ // Reference: /src/vue/mixins/Wizard.js:105 __( 'Submit articles to Google News that were published in the last 48 hours.', 'all-in-one-seo-pack' ), + // Reference: /src/vue/plugins/constants.js:1507 + __( 'Subscription', 'all-in-one-seo-pack' ), + // Reference: /src/vue/standalone/setup-wizard/router/paths.js:98 __( 'Success', 'all-in-one-seo-pack' ), @@ -6370,7 +6403,7 @@ // Reference: /src/vue/mixins/Wizard.js:85 __( 'Tell Google about your business for display as a Knowledge Graph card or business carousel.', 'all-in-one-seo-pack' ), - // Reference: /src/vue/plugins/constants.js:1510 + // Reference: /src/vue/plugins/constants.js:1527 __( 'Temporary', 'all-in-one-seo-pack' ), // Reference: /src/vue/plugins/constants.js:1274 @@ -6771,7 +6804,7 @@ // Reference: /src/vue/classes/SiteAnalysis.js:228 __( 'The www and non-www versions of your URL are not redirected to the same site.', 'all-in-one-seo-pack' ), - // Reference: /src/vue/plugins/constants.js:1484 + // Reference: /src/vue/plugins/constants.js:1495 __( 'Theater Event', 'all-in-one-seo-pack' ), // Reference: /src/vue/pages/dashboard/views/Main.vue:87 @@ -7054,7 +7087,7 @@ // Reference: /src/vue/pages/search-appearance/views/lite/image-seo/Blur.vue:93 __( 'Title Case', 'all-in-one-seo-pack' ), - // Reference: /src/vue/pages/search-appearance/views/GlobalSettings.vue:44 + // Reference: /src/vue/pages/search-appearance/views/GlobalSettings.vue:55 __( 'Title Separator', 'all-in-one-seo-pack' ), // Reference: /src/vue/standalone/post-settings/views/lite/partials-ai/Modal.vue:76 @@ -7063,6 +7096,9 @@ // Reference: /src/vue/standalone/post-settings/views/lite/partials-ai/Modal.vue:61 __( 'Titles', 'all-in-one-seo-pack' ), + // Reference: /src/vue/pages/search-appearance/views/GlobalSettings.vue:105 + __( 'To', 'all-in-one-seo-pack' ), + // Reference: /src/vue/pages/settings/views/Breadcrumbs.vue:45 // Translators: 1 - The plugin short name ("AIOSEO"), 2 - "Learn More" link. __( 'To add this block, edit a page or post and search for the "%1$s - Breadcrumbs" block. %2$s', 'all-in-one-seo-pack' ), @@ -7312,7 +7348,7 @@ // Translators: 1 - Plugin Short Name ("AIOSEO"). __( 'Uninstall %1$s', 'all-in-one-seo-pack' ), - // Reference: /src/vue/plugins/constants.js:1533 + // Reference: /src/vue/plugins/constants.js:1550 __( 'Unisex', 'all-in-one-seo-pack' ), // Reference: /src/vue/components/common/core/MiIntro.vue:57 @@ -7334,7 +7370,7 @@ __( 'Unknown user agent', 'all-in-one-seo-pack' ), // Reference: /src/vue/pages/search-appearance/views/partials/lite/Schema.vue:44 - // Reference: /src/vue/standalone/post-settings/views/lite/partials-schema/CtaModal.vue:42 + // Reference: /src/vue/standalone/post-settings/views/lite/partials-schema/CtaModal.vue:51 __( 'Unlimited Schema', 'all-in-one-seo-pack' ), // Reference: /src/vue/pages/settings/views/lite/AccessControl.vue:35 @@ -7372,6 +7408,7 @@ // Reference: /src/vue/pages/local-seo/views/lite/locations/Locations.vue:35 // Reference: /src/vue/pages/local-seo/views/lite/maps/Maps.vue:34 // Reference: /src/vue/pages/local-seo/views/lite/opening-hours/OpeningHours.vue:34 + // Reference: /src/vue/pages/search-appearance/views/GlobalSettings.vue:93 __( 'Unlock Local SEO', 'all-in-one-seo-pack' ), // Reference: /src/vue/pages/tools/views/lite/DatabaseTools.vue:38 @@ -7394,7 +7431,7 @@ // Reference: /src/vue/pages/redirects/views/lite/redirects/Redirects.vue:27 __( 'Unlock Redirects', 'all-in-one-seo-pack' ), - // Reference: /src/vue/standalone/post-settings/views/lite/partials-schema/CtaModal.vue:34 + // Reference: /src/vue/standalone/post-settings/views/lite/partials-schema/CtaModal.vue:43 __( 'Unlock Schema Generator', 'all-in-one-seo-pack' ), // Reference: /src/vue/pages/search-appearance/views/partials/lite/Schema.vue:36 @@ -7572,13 +7609,16 @@ // Translators: 1 - The plugin name ("All in One SEO") __( 'Use our configuration wizard to properly set up %1$s with your WordPress website.', 'all-in-one-seo-pack' ), - // Reference: /src/vue/standalone/post-settings/views/lite/partials-schema/CtaModal.vue:29 + // Reference: /src/vue/standalone/post-settings/views/lite/partials-schema/CtaModal.vue:38 // Translators: 1 - Learn more link. __( 'Use our powerful Schema Generator to configure Schema Markup for your content. Search Engines use structured data to better understand what your site is about as well as to display rich snippets in search results. %1$s', 'all-in-one-seo-pack' ), // Reference: /src/vue/pages/social-networks/views/Facebook.vue:105 __( 'Use Post Tags in Article Tags', 'all-in-one-seo-pack' ), + // Reference: /src/vue/pages/search-appearance/views/GlobalSettings.vue:103 + __( 'Use Range', 'all-in-one-seo-pack' ), + // Reference: /src/vue/pages/tools/views/WpCode.vue:32 __( 'Use Snippet', 'all-in-one-seo-pack' ), @@ -7656,7 +7696,7 @@ __( 'Validate Schema', 'all-in-one-seo-pack' ), // Reference: /src/vue/pages/search-appearance/views/partials/lite/Schema.vue:45 - // Reference: /src/vue/standalone/post-settings/views/lite/partials-schema/CtaModal.vue:43 + // Reference: /src/vue/standalone/post-settings/views/lite/partials-schema/CtaModal.vue:52 __( 'Validate with Google', 'all-in-one-seo-pack' ), // Reference: /src/vue/components/common/core/add-redirection/CustomRules.vue:56 @@ -7681,7 +7721,7 @@ // Reference: /src/vue/composables/TruSeoScore.js:15 __( 'Very Good!', 'all-in-one-seo-pack' ), - // Reference: /src/vue/standalone/post-settings/views/mixins/Graphs.js:182 + // Reference: /src/vue/standalone/post-settings/composables/schema.js:90 __( 'Video', 'all-in-one-seo-pack' ), // Reference: /src/vue/pages/feature-manager/views/FeatureManager.vue:64 @@ -7731,13 +7771,13 @@ // Reference: /src/vue/components/lite/settings/NetworkSitesActivation.vue:24 __( 'Visit Site', 'all-in-one-seo-pack' ), - // Reference: /src/vue/plugins/constants.js:1485 + // Reference: /src/vue/plugins/constants.js:1496 __( 'Visual Arts Event', 'all-in-one-seo-pack' ), // Reference: /src/vue/standalone/post-settings/views/partials/general/FocusKeyphrase.vue:64 __( 'Volume', 'all-in-one-seo-pack' ), - // Reference: /src/vue/plugins/constants.js:1512 + // Reference: /src/vue/plugins/constants.js:1529 __( 'Volunteer', 'all-in-one-seo-pack' ), // Reference: /src/vue/components/common/core/GoogleSearchPreview.vue:126 @@ -7847,9 +7887,9 @@ // Translators: 1 - HTML Line break tag. __( 'We\'ve got some%1$swork to do!', 'all-in-one-seo-pack' ), - // Reference: /src/vue/plugins/constants.js:1495 - // Reference: /src/vue/standalone/post-settings/views/mixins/Graphs.js:187 - // Reference: /src/vue/standalone/post-settings/views/mixins/Graphs.js:214 + // Reference: /src/vue/plugins/constants.js:1512 + // Reference: /src/vue/standalone/post-settings/composables/schema.js:122 + // Reference: /src/vue/standalone/post-settings/composables/schema.js:95 __( 'Web Page', 'all-in-one-seo-pack' ), // Reference: /src/vue/mixins/ToolsSettings.js:17 @@ -7862,7 +7902,7 @@ // Reference: /src/vue/plugins/constants.js:1246 __( 'Website', 'all-in-one-seo-pack' ), - // Reference: /src/vue/pages/search-appearance/views/GlobalSettings.vue:83 + // Reference: /src/vue/pages/search-appearance/views/GlobalSettings.vue:97 __( 'Website Name', 'all-in-one-seo-pack' ), // Reference: /src/vue/standalone/local-business-seo/views/BusinessInfo.vue:35 @@ -7879,13 +7919,16 @@ // Reference: /src/vue/standalone/local-business-seo/views/OpeningHours.vue:47 __( 'Wednesday', 'all-in-one-seo-pack' ), - // Reference: /src/vue/plugins/constants.js:1526 + // Reference: /src/vue/plugins/constants.js:1543 __( 'Week', 'all-in-one-seo-pack' ), // Reference: /src/vue/pages/sitemaps/views/partials/AddAdditionalPage.vue:20 // Reference: /src/vue/plugins/constants.js:20 __( 'weekly', 'all-in-one-seo-pack' ), + // Reference: /src/vue/plugins/constants.js:1473 + __( 'Weekly', 'all-in-one-seo-pack' ), + // Reference: /src/vue/standalone/setup-wizard/router/paths.js:17 __( 'Welcome', 'all-in-one-seo-pack' ), @@ -8075,6 +8118,9 @@ // Reference: /src/vue/plugins/constants.js:22 __( 'yearly', 'all-in-one-seo-pack' ), + // Reference: /src/vue/plugins/constants.js:1475 + __( 'Yearly', 'all-in-one-seo-pack' ), + // Reference: /src/vue/utils/date.js:32 // Translators: A number will be prepended to this string, e.g. "2 years ago". __( 'years ago', 'all-in-one-seo-pack' ), @@ -8139,7 +8185,7 @@ // Reference: /src/app/tru-seo/analyzer/analysis/contentHasAssets.js:57 __( 'You are not using rich media like images or videos.', 'all-in-one-seo-pack' ), - // Reference: /src/vue/pages/search-appearance/views/GlobalSettings.vue:48 + // Reference: /src/vue/pages/search-appearance/views/GlobalSettings.vue:59 // Translators: 1 - Opening HTML link tag, 2 - Closing HTML link tag. __( 'You are using a static home page which is found under Pages. You can %1$sedit your home page settings%2$s directly to change the title and description.', 'all-in-one-seo-pack' ), @@ -8473,7 +8519,7 @@ // Translators: 1 - Adds a html tag with an option like: ^, 2 - Adds a html tag with an option like: ^. __( 'Your target URL should be an absolute URL like %1$s or start with a slash %2$s.', 'all-in-one-seo-pack' ), - // Reference: /src/vue/standalone/post-settings/views/lite/partials-schema/CtaModal.vue:74 + // Reference: /src/vue/standalone/post-settings/views/lite/partials-schema/CtaModal.vue:83 __( 'Your Templates', 'all-in-one-seo-pack' ), // Reference: /src/vue/classes/SiteAnalysis.js:434 diff --git a/package-lock.json b/package-lock.json index 74873d823..8c75fa23e 100644 --- a/package-lock.json +++ b/package-lock.json @@ -124,11 +124,11 @@ } }, "node_modules/@babel/code-frame": { - "version": "7.24.2", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.24.2.tgz", - "integrity": "sha512-y5+tLQyV8pg3fsiln67BVLD1P13Eg4lh5RW9mF0zUuvLrv9uIQ4MCL+CRT+FTsBlBjcIan6PGsLcBN0m3ClUyQ==", + "version": "7.24.6", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.24.6.tgz", + "integrity": "sha512-ZJhac6FkEd1yhG2AHOmfcXG4ceoLltoCVJjN5XsWN9BifBQr+cHJbWi0h68HZuSORq+3WtJ2z0hwF2NG1b5kcA==", "dependencies": { - "@babel/highlight": "^7.24.2", + "@babel/highlight": "^7.24.6", "picocolors": "^1.0.0" }, "engines": { @@ -136,30 +136,30 @@ } }, "node_modules/@babel/compat-data": { - "version": "7.24.4", - "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.24.4.tgz", - "integrity": "sha512-vg8Gih2MLK+kOkHJp4gBEIkyaIi00jgWot2D9QOmmfLC8jINSOzmCLta6Bvz/JSBCqnegV0L80jhxkol5GWNfQ==", + "version": "7.24.6", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.24.6.tgz", + "integrity": "sha512-aC2DGhBq5eEdyXWqrDInSqQjO0k8xtPRf5YylULqx8MCd6jBtzqfta/3ETMRpuKIc5hyswfO80ObyA1MvkCcUQ==", "dev": true, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/core": { - "version": "7.24.5", - "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.24.5.tgz", - "integrity": "sha512-tVQRucExLQ02Boi4vdPp49svNGcfL2GhdTCT9aldhXgCJVAI21EtRfBettiuLUwce/7r6bFdgs6JFkcdTiFttA==", + "version": "7.24.6", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.24.6.tgz", + "integrity": "sha512-qAHSfAdVyFmIvl0VHELib8xar7ONuSHrE2hLnsaWkYNTI68dmi1x8GYDhJjMI/e7XWal9QBlZkwbOnkcw7Z8gQ==", "dev": true, "dependencies": { "@ampproject/remapping": "^2.2.0", - "@babel/code-frame": "^7.24.2", - "@babel/generator": "^7.24.5", - "@babel/helper-compilation-targets": "^7.23.6", - "@babel/helper-module-transforms": "^7.24.5", - "@babel/helpers": "^7.24.5", - "@babel/parser": "^7.24.5", - "@babel/template": "^7.24.0", - "@babel/traverse": "^7.24.5", - "@babel/types": "^7.24.5", + "@babel/code-frame": "^7.24.6", + "@babel/generator": "^7.24.6", + "@babel/helper-compilation-targets": "^7.24.6", + "@babel/helper-module-transforms": "^7.24.6", + "@babel/helpers": "^7.24.6", + "@babel/parser": "^7.24.6", + "@babel/template": "^7.24.6", + "@babel/traverse": "^7.24.6", + "@babel/types": "^7.24.6", "convert-source-map": "^2.0.0", "debug": "^4.1.0", "gensync": "^1.0.0-beta.2", @@ -175,12 +175,12 @@ } }, "node_modules/@babel/generator": { - "version": "7.24.5", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.24.5.tgz", - "integrity": "sha512-x32i4hEXvr+iI0NEoEfDKzlemF8AmtOP8CcrRaEcpzysWuoEb1KknpcvMsHKPONoKZiDuItklgWhB18xEhr9PA==", + "version": "7.24.6", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.24.6.tgz", + "integrity": "sha512-S7m4eNa6YAPJRHmKsLHIDJhNAGNKoWNiWefz1MBbpnt8g9lvMDl1hir4P9bo/57bQEmuwEhnRU/AMWsD0G/Fbg==", "dev": true, "dependencies": { - "@babel/types": "^7.24.5", + "@babel/types": "^7.24.6", "@jridgewell/gen-mapping": "^0.3.5", "@jridgewell/trace-mapping": "^0.3.25", "jsesc": "^2.5.1" @@ -190,13 +190,13 @@ } }, "node_modules/@babel/helper-compilation-targets": { - "version": "7.23.6", - "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.23.6.tgz", - "integrity": "sha512-9JB548GZoQVmzrFgp8o7KxdgkTGm6xs9DW0o/Pim72UDjzr5ObUQ6ZzYPqA+g9OTS2bBQoctLJrky0RDCAWRgQ==", + "version": "7.24.6", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.24.6.tgz", + "integrity": "sha512-VZQ57UsDGlX/5fFA7GkVPplZhHsVc+vuErWgdOiysI9Ksnw0Pbbd6pnPiR/mmJyKHgyIW0c7KT32gmhiF+cirg==", "dev": true, "dependencies": { - "@babel/compat-data": "^7.23.5", - "@babel/helper-validator-option": "^7.23.5", + "@babel/compat-data": "^7.24.6", + "@babel/helper-validator-option": "^7.24.6", "browserslist": "^4.22.2", "lru-cache": "^5.1.1", "semver": "^6.3.1" @@ -206,61 +206,61 @@ } }, "node_modules/@babel/helper-environment-visitor": { - "version": "7.22.20", - "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.20.tgz", - "integrity": "sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==", + "version": "7.24.6", + "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.24.6.tgz", + "integrity": "sha512-Y50Cg3k0LKLMjxdPjIl40SdJgMB85iXn27Vk/qbHZCFx/o5XO3PSnpi675h1KEmmDb6OFArfd5SCQEQ5Q4H88g==", "dev": true, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-function-name": { - "version": "7.23.0", - "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.23.0.tgz", - "integrity": "sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==", + "version": "7.24.6", + "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.24.6.tgz", + "integrity": "sha512-xpeLqeeRkbxhnYimfr2PC+iA0Q7ljX/d1eZ9/inYbmfG2jpl8Lu3DyXvpOAnrS5kxkfOWJjioIMQsaMBXFI05w==", "dev": true, "dependencies": { - "@babel/template": "^7.22.15", - "@babel/types": "^7.23.0" + "@babel/template": "^7.24.6", + "@babel/types": "^7.24.6" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-hoist-variables": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz", - "integrity": "sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==", + "version": "7.24.6", + "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.24.6.tgz", + "integrity": "sha512-SF/EMrC3OD7dSta1bLJIlrsVxwtd0UpjRJqLno6125epQMJ/kyFmpTT4pbvPbdQHzCHg+biQ7Syo8lnDtbR+uA==", "dev": true, "dependencies": { - "@babel/types": "^7.22.5" + "@babel/types": "^7.24.6" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-module-imports": { - "version": "7.24.3", - "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.24.3.tgz", - "integrity": "sha512-viKb0F9f2s0BCS22QSF308z/+1YWKV/76mwt61NBzS5izMzDPwdq1pTrzf+Li3npBWX9KdQbkeCt1jSAM7lZqg==", + "version": "7.24.6", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.24.6.tgz", + "integrity": "sha512-a26dmxFJBF62rRO9mmpgrfTLsAuyHk4e1hKTUkD/fcMfynt8gvEKwQPQDVxWhca8dHoDck+55DFt42zV0QMw5g==", "dependencies": { - "@babel/types": "^7.24.0" + "@babel/types": "^7.24.6" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-module-transforms": { - "version": "7.24.5", - "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.24.5.tgz", - "integrity": "sha512-9GxeY8c2d2mdQUP1Dye0ks3VDyIMS98kt/llQ2nUId8IsWqTF0l1LkSX0/uP7l7MCDrzXS009Hyhe2gzTiGW8A==", + "version": "7.24.6", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.24.6.tgz", + "integrity": "sha512-Y/YMPm83mV2HJTbX1Qh2sjgjqcacvOlhbzdCCsSlblOKjSYmQqEbO6rUniWQyRo9ncyfjT8hnUjlG06RXDEmcA==", "dev": true, "dependencies": { - "@babel/helper-environment-visitor": "^7.22.20", - "@babel/helper-module-imports": "^7.24.3", - "@babel/helper-simple-access": "^7.24.5", - "@babel/helper-split-export-declaration": "^7.24.5", - "@babel/helper-validator-identifier": "^7.24.5" + "@babel/helper-environment-visitor": "^7.24.6", + "@babel/helper-module-imports": "^7.24.6", + "@babel/helper-simple-access": "^7.24.6", + "@babel/helper-split-export-declaration": "^7.24.6", + "@babel/helper-validator-identifier": "^7.24.6" }, "engines": { "node": ">=6.9.0" @@ -270,83 +270,82 @@ } }, "node_modules/@babel/helper-plugin-utils": { - "version": "7.24.5", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.24.5.tgz", - "integrity": "sha512-xjNLDopRzW2o6ba0gKbkZq5YWEBaK3PCyTOY1K2P/O07LGMhMqlMXPxwN4S5/RhWuCobT8z0jrlKGlYmeR1OhQ==", + "version": "7.24.6", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.24.6.tgz", + "integrity": "sha512-MZG/JcWfxybKwsA9N9PmtF2lOSFSEMVCpIRrbxccZFLJPrJciJdG/UhSh5W96GEteJI2ARqm5UAHxISwRDLSNg==", "dev": true, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-simple-access": { - "version": "7.24.5", - "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.24.5.tgz", - "integrity": "sha512-uH3Hmf5q5n7n8mz7arjUlDOCbttY/DW4DYhE6FUsjKJ/oYC1kQQUvwEQWxRwUpX9qQKRXeqLwWxrqilMrf32sQ==", + "version": "7.24.6", + "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.24.6.tgz", + "integrity": "sha512-nZzcMMD4ZhmB35MOOzQuiGO5RzL6tJbsT37Zx8M5L/i9KSrukGXWTjLe1knIbb/RmxoJE9GON9soq0c0VEMM5g==", "dev": true, "dependencies": { - "@babel/types": "^7.24.5" + "@babel/types": "^7.24.6" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-split-export-declaration": { - "version": "7.24.5", - "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.24.5.tgz", - "integrity": "sha512-5CHncttXohrHk8GWOFCcCl4oRD9fKosWlIRgWm4ql9VYioKm52Mk2xsmoohvm7f3JoiLSM5ZgJuRaf5QZZYd3Q==", + "version": "7.24.6", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.24.6.tgz", + "integrity": "sha512-CvLSkwXGWnYlF9+J3iZUvwgAxKiYzK3BWuo+mLzD/MDGOZDj7Gq8+hqaOkMxmJwmlv0iu86uH5fdADd9Hxkymw==", "dev": true, "dependencies": { - "@babel/types": "^7.24.5" + "@babel/types": "^7.24.6" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-string-parser": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.24.1.tgz", - "integrity": "sha512-2ofRCjnnA9y+wk8b9IAREroeUP02KHp431N2mhKniy2yKIDKpbrHv9eXwm8cBeWQYcJmzv5qKCu65P47eCF7CQ==", + "version": "7.24.6", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.24.6.tgz", + "integrity": "sha512-WdJjwMEkmBicq5T9fm/cHND3+UlFa2Yj8ALLgmoSQAJZysYbBjw+azChSGPN4DSPLXOcooGRvDwZWMcF/mLO2Q==", "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-validator-identifier": { - "version": "7.24.5", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.24.5.tgz", - "integrity": "sha512-3q93SSKX2TWCG30M2G2kwaKeTYgEUp5Snjuj8qm729SObL6nbtUldAi37qbxkD5gg3xnBio+f9nqpSepGZMvxA==", + "version": "7.24.6", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.24.6.tgz", + "integrity": "sha512-4yA7s865JHaqUdRbnaxarZREuPTHrjpDT+pXoAZ1yhyo6uFnIEpS8VMu16siFOHDpZNKYv5BObhsB//ycbICyw==", "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-validator-option": { - "version": "7.23.5", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.23.5.tgz", - "integrity": "sha512-85ttAOMLsr53VgXkTbkx8oA6YTfT4q7/HzXSLEYmjcSTJPMPQtvq1BD79Byep5xMUYbGRzEpDsjUf3dyp54IKw==", + "version": "7.24.6", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.24.6.tgz", + "integrity": "sha512-Jktc8KkF3zIkePb48QO+IapbXlSapOW9S+ogZZkcO6bABgYAxtZcjZ/O005111YLf+j4M84uEgwYoidDkXbCkQ==", "dev": true, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helpers": { - "version": "7.24.5", - "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.24.5.tgz", - "integrity": "sha512-CiQmBMMpMQHwM5m01YnrM6imUG1ebgYJ+fAIW4FZe6m4qHTPaRHti+R8cggAwkdz4oXhtO4/K9JWlh+8hIfR2Q==", + "version": "7.24.6", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.24.6.tgz", + "integrity": "sha512-V2PI+NqnyFu1i0GyTd/O/cTpxzQCYioSkUIRmgo7gFEHKKCg5w46+r/A6WeUR1+P3TeQ49dspGPNd/E3n9AnnA==", "dev": true, "dependencies": { - "@babel/template": "^7.24.0", - "@babel/traverse": "^7.24.5", - "@babel/types": "^7.24.5" + "@babel/template": "^7.24.6", + "@babel/types": "^7.24.6" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/highlight": { - "version": "7.24.5", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.24.5.tgz", - "integrity": "sha512-8lLmua6AVh/8SLJRRVD6V8p73Hir9w5mJrhE+IPpILG31KKlI9iz5zmBYKcWPS59qSfgP9RaSBQSHHE81WKuEw==", + "version": "7.24.6", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.24.6.tgz", + "integrity": "sha512-2YnuOp4HAk2BsBrJJvYCbItHx0zWscI1C3zgWkz+wDyD9I7GIVrfnLyrR4Y1VR+7p+chAEcrgRQYZAGIKMV7vQ==", "dependencies": { - "@babel/helper-validator-identifier": "^7.24.5", + "@babel/helper-validator-identifier": "^7.24.6", "chalk": "^2.4.2", "js-tokens": "^4.0.0", "picocolors": "^1.0.0" @@ -356,9 +355,9 @@ } }, "node_modules/@babel/parser": { - "version": "7.24.5", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.24.5.tgz", - "integrity": "sha512-EOv5IK8arwh3LI47dz1b0tKUb/1uhHAnHJOrjgtQMIpu1uXd9mlFrJg9IUgGUgZ41Ch0K8REPTYpO7B76b4vJg==", + "version": "7.24.6", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.24.6.tgz", + "integrity": "sha512-eNZXdfU35nJC2h24RznROuOpO94h6x8sg9ju0tT9biNtLZ2vuP8SduLqqV+/8+cebSLV9SJEAN5Z3zQbJG/M+Q==", "bin": { "parser": "bin/babel-parser.js" }, @@ -367,12 +366,12 @@ } }, "node_modules/@babel/plugin-transform-react-jsx-self": { - "version": "7.24.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.24.5.tgz", - "integrity": "sha512-RtCJoUO2oYrYwFPtR1/jkoBEcFuI1ae9a9IMxeyAVa3a1Ap4AnxmyIKG2b2FaJKqkidw/0cxRbWN+HOs6ZWd1w==", + "version": "7.24.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.24.6.tgz", + "integrity": "sha512-FfZfHXtQ5jYPQsCRyLpOv2GeLIIJhs8aydpNh39vRDjhD411XcfWDni5i7OjP/Rs8GAtTn7sWFFELJSHqkIxYg==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.24.5" + "@babel/helper-plugin-utils": "^7.24.6" }, "engines": { "node": ">=6.9.0" @@ -382,12 +381,12 @@ } }, "node_modules/@babel/plugin-transform-react-jsx-source": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.24.1.tgz", - "integrity": "sha512-1v202n7aUq4uXAieRTKcwPzNyphlCuqHHDcdSNc+vdhoTEZcFMh+L5yZuCmGaIO7bs1nJUNfHB89TZyoL48xNA==", + "version": "7.24.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.24.6.tgz", + "integrity": "sha512-BQTBCXmFRreU3oTUXcGKuPOfXAGb1liNY4AvvFKsOBAJ89RKcTsIrSsnMYkj59fNa66OFKnSa4AJZfy5Y4B9WA==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0" + "@babel/helper-plugin-utils": "^7.24.6" }, "engines": { "node": ">=6.9.0" @@ -397,9 +396,9 @@ } }, "node_modules/@babel/runtime": { - "version": "7.24.5", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.24.5.tgz", - "integrity": "sha512-Nms86NXrsaeU9vbBJKni6gXiEXZ4CVpYVzEjDH9Sb8vmZ3UljyA1GSOJl/6LGPO8EHLuSF9H+IxNXHPX8QHJ4g==", + "version": "7.24.6", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.24.6.tgz", + "integrity": "sha512-Ja18XcETdEl5mzzACGd+DKgaGJzPTCow7EglgwTmHdwokzDFYh/MHua6lU6DV/hjF2IaOJ4oX2nqnjG7RElKOw==", "dependencies": { "regenerator-runtime": "^0.14.0" }, @@ -408,33 +407,33 @@ } }, "node_modules/@babel/template": { - "version": "7.24.0", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.24.0.tgz", - "integrity": "sha512-Bkf2q8lMB0AFpX0NFEqSbx1OkTHf0f+0j82mkw+ZpzBnkk7e9Ql0891vlfgi+kHwOk8tQjiQHpqh4LaSa0fKEA==", + "version": "7.24.6", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.24.6.tgz", + "integrity": "sha512-3vgazJlLwNXi9jhrR1ef8qiB65L1RK90+lEQwv4OxveHnqC3BfmnHdgySwRLzf6akhlOYenT+b7AfWq+a//AHw==", "dev": true, "dependencies": { - "@babel/code-frame": "^7.23.5", - "@babel/parser": "^7.24.0", - "@babel/types": "^7.24.0" + "@babel/code-frame": "^7.24.6", + "@babel/parser": "^7.24.6", + "@babel/types": "^7.24.6" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/traverse": { - "version": "7.24.5", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.24.5.tgz", - "integrity": "sha512-7aaBLeDQ4zYcUFDUD41lJc1fG8+5IU9DaNSJAgal866FGvmD5EbWQgnEC6kO1gGLsX0esNkfnJSndbTXA3r7UA==", - "dev": true, - "dependencies": { - "@babel/code-frame": "^7.24.2", - "@babel/generator": "^7.24.5", - "@babel/helper-environment-visitor": "^7.22.20", - "@babel/helper-function-name": "^7.23.0", - "@babel/helper-hoist-variables": "^7.22.5", - "@babel/helper-split-export-declaration": "^7.24.5", - "@babel/parser": "^7.24.5", - "@babel/types": "^7.24.5", + "version": "7.24.6", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.24.6.tgz", + "integrity": "sha512-OsNjaJwT9Zn8ozxcfoBc+RaHdj3gFmCmYoQLUII1o6ZrUwku0BMg80FoOTPx+Gi6XhcQxAYE4xyjPTo4SxEQqw==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.24.6", + "@babel/generator": "^7.24.6", + "@babel/helper-environment-visitor": "^7.24.6", + "@babel/helper-function-name": "^7.24.6", + "@babel/helper-hoist-variables": "^7.24.6", + "@babel/helper-split-export-declaration": "^7.24.6", + "@babel/parser": "^7.24.6", + "@babel/types": "^7.24.6", "debug": "^4.3.1", "globals": "^11.1.0" }, @@ -443,12 +442,12 @@ } }, "node_modules/@babel/types": { - "version": "7.24.5", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.24.5.tgz", - "integrity": "sha512-6mQNsaLeXTw0nxYUYu+NSa4Hx4BlF1x1x8/PMFbiR+GBSr+2DkECc69b8hgy2frEodNcvPffeH8YfWd3LI6jhQ==", + "version": "7.24.6", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.24.6.tgz", + "integrity": "sha512-WaMsgi6Q8zMgMth93GvWPXkhAIEobfsIkLTacoVZoK1J0CevIPGYY2Vo5YvJGqyHqXM6P4ppOYGsIRU8MM9pFQ==", "dependencies": { - "@babel/helper-string-parser": "^7.24.1", - "@babel/helper-validator-identifier": "^7.24.5", + "@babel/helper-string-parser": "^7.24.6", + "@babel/helper-validator-identifier": "^7.24.6", "to-fast-properties": "^2.0.0" }, "engines": { @@ -490,9 +489,9 @@ } }, "node_modules/@codemirror/autocomplete": { - "version": "6.16.0", - "resolved": "https://registry.npmjs.org/@codemirror/autocomplete/-/autocomplete-6.16.0.tgz", - "integrity": "sha512-P/LeCTtZHRTCU4xQsa89vSKWecYv1ZqwzOd5topheGRf+qtacFgBeIMQi3eL8Kt/BUNvxUWkx+5qP2jlGoARrg==", + "version": "6.16.2", + "resolved": "https://registry.npmjs.org/@codemirror/autocomplete/-/autocomplete-6.16.2.tgz", + "integrity": "sha512-MjfDrHy0gHKlPWsvSsikhO1+BOh+eBHNgfH1OXs1+DAf30IonQldgMM3kxLDTG9ktE7kDLaA1j/l7KMPA4KNfw==", "dependencies": { "@codemirror/language": "^6.0.0", "@codemirror/state": "^6.0.0", @@ -527,9 +526,9 @@ } }, "node_modules/@codemirror/language": { - "version": "6.10.1", - "resolved": "https://registry.npmjs.org/@codemirror/language/-/language-6.10.1.tgz", - "integrity": "sha512-5GrXzrhq6k+gL5fjkAwt90nYDmjlzTIJV8THnxNFtNKWotMIlzzN+CpqxqwXOECnUdOndmSeWntVrVcv5axWRQ==", + "version": "6.10.2", + "resolved": "https://registry.npmjs.org/@codemirror/language/-/language-6.10.2.tgz", + "integrity": "sha512-kgbTYTo0Au6dCSc/TFy7fK3fpJmgHDv1sG1KNQKJXVi+xBTEeBPY/M30YXiU6mMXeH+YIDLsbrT4ZwNRdtF+SA==", "dependencies": { "@codemirror/state": "^6.0.0", "@codemirror/view": "^6.23.0", @@ -540,9 +539,9 @@ } }, "node_modules/@codemirror/lint": { - "version": "6.7.1", - "resolved": "https://registry.npmjs.org/@codemirror/lint/-/lint-6.7.1.tgz", - "integrity": "sha512-rELba6QJD20/bNXWP/cKTGLrwVEcpa2ViwULCV03ONcY1Je85++7sczVRUlnE4TJMjatx3IJTz6HX4NXi+moXw==", + "version": "6.8.0", + "resolved": "https://registry.npmjs.org/@codemirror/lint/-/lint-6.8.0.tgz", + "integrity": "sha512-lsFofvaw0lnPRJlQylNsC4IRt/1lI4OD/yYslrSGVndOJfStc58v+8p9dgGiD90ktOfL7OhBWns1ZETYgz0EJA==", "dependencies": { "@codemirror/state": "^6.0.0", "@codemirror/view": "^6.0.0", @@ -1138,9 +1137,9 @@ } }, "node_modules/@eslint-community/regexpp": { - "version": "4.10.0", - "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.10.0.tgz", - "integrity": "sha512-Cu96Sd2By9mCNTx2iyKOmq10v22jUVQv0lQnlGNy16oE9589yE+QADPbrMGCkA51cKZSg3Pu/aTJVTGfL/qjUA==", + "version": "4.10.1", + "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.10.1.tgz", + "integrity": "sha512-Zm2NGpWELsQAD1xsJzGQpYfvICSsFkEpU0jxBjfdC6uNEWXcHnfs9hScFWtXVDVl+rBQJGrl4g1vcKIejpH9dA==", "dev": true, "engines": { "node": "^12.0.0 || ^14.0.0 || >=16.0.0" @@ -1410,9 +1409,9 @@ } }, "node_modules/@lezer/lr": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/@lezer/lr/-/lr-1.4.0.tgz", - "integrity": "sha512-Wst46p51km8gH0ZUmeNrtpRYmdlRHUpN1DQd3GFAyKANi8WVz8c2jHYTf1CVScFaCjQw1iO3ZZdqGDxQPRErTg==", + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/@lezer/lr/-/lr-1.4.1.tgz", + "integrity": "sha512-CHsKq8DMKBf9b3yXPDIU4DbH+ZJd/sJdYOW2llbW/HudP5u0VS6Bfq1hLYfgU7uAYGFIyGGQIsSOXGPEErZiJw==", "dependencies": { "@lezer/common": "^1.0.0" } @@ -2023,9 +2022,9 @@ } }, "node_modules/@rollup/rollup-android-arm-eabi": { - "version": "4.17.2", - "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.17.2.tgz", - "integrity": "sha512-NM0jFxY8bB8QLkoKxIQeObCaDlJKewVlIEkuyYKm5An1tdVZ966w2+MPQ2l8LBZLjR+SgyV+nRkTIunzOYBMLQ==", + "version": "4.18.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.18.0.tgz", + "integrity": "sha512-Tya6xypR10giZV1XzxmH5wr25VcZSncG0pZIjfePT0OVBvqNEurzValetGNarVrGiq66EBVAFn15iYX4w6FKgQ==", "cpu": [ "arm" ], @@ -2036,9 +2035,9 @@ ] }, "node_modules/@rollup/rollup-android-arm64": { - "version": "4.17.2", - "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.17.2.tgz", - "integrity": "sha512-yeX/Usk7daNIVwkq2uGoq2BYJKZY1JfyLTaHO/jaiSwi/lsf8fTFoQW/n6IdAsx5tx+iotu2zCJwz8MxI6D/Bw==", + "version": "4.18.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.18.0.tgz", + "integrity": "sha512-avCea0RAP03lTsDhEyfy+hpfr85KfyTctMADqHVhLAF3MlIkq83CP8UfAHUssgXTYd+6er6PaAhx/QGv4L1EiA==", "cpu": [ "arm64" ], @@ -2049,9 +2048,9 @@ ] }, "node_modules/@rollup/rollup-darwin-arm64": { - "version": "4.17.2", - "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.17.2.tgz", - "integrity": "sha512-kcMLpE6uCwls023+kknm71ug7MZOrtXo+y5p/tsg6jltpDtgQY1Eq5sGfHcQfb+lfuKwhBmEURDga9N0ol4YPw==", + "version": "4.18.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.18.0.tgz", + "integrity": "sha512-IWfdwU7KDSm07Ty0PuA/W2JYoZ4iTj3TUQjkVsO/6U+4I1jN5lcR71ZEvRh52sDOERdnNhhHU57UITXz5jC1/w==", "cpu": [ "arm64" ], @@ -2062,9 +2061,9 @@ ] }, "node_modules/@rollup/rollup-darwin-x64": { - "version": "4.17.2", - "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.17.2.tgz", - "integrity": "sha512-AtKwD0VEx0zWkL0ZjixEkp5tbNLzX+FCqGG1SvOu993HnSz4qDI6S4kGzubrEJAljpVkhRSlg5bzpV//E6ysTQ==", + "version": "4.18.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.18.0.tgz", + "integrity": "sha512-n2LMsUz7Ynu7DoQrSQkBf8iNrjOGyPLrdSg802vk6XT3FtsgX6JbE8IHRvposskFm9SNxzkLYGSq9QdpLYpRNA==", "cpu": [ "x64" ], @@ -2075,9 +2074,9 @@ ] }, "node_modules/@rollup/rollup-linux-arm-gnueabihf": { - "version": "4.17.2", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.17.2.tgz", - "integrity": "sha512-3reX2fUHqN7sffBNqmEyMQVj/CKhIHZd4y631duy0hZqI8Qoqf6lTtmAKvJFYa6bhU95B1D0WgzHkmTg33In0A==", + "version": "4.18.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.18.0.tgz", + "integrity": "sha512-C/zbRYRXFjWvz9Z4haRxcTdnkPt1BtCkz+7RtBSuNmKzMzp3ZxdM28Mpccn6pt28/UWUCTXa+b0Mx1k3g6NOMA==", "cpu": [ "arm" ], @@ -2088,9 +2087,9 @@ ] }, "node_modules/@rollup/rollup-linux-arm-musleabihf": { - "version": "4.17.2", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.17.2.tgz", - "integrity": "sha512-uSqpsp91mheRgw96xtyAGP9FW5ChctTFEoXP0r5FAzj/3ZRv3Uxjtc7taRQSaQM/q85KEKjKsZuiZM3GyUivRg==", + "version": "4.18.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.18.0.tgz", + "integrity": "sha512-l3m9ewPgjQSXrUMHg93vt0hYCGnrMOcUpTz6FLtbwljo2HluS4zTXFy2571YQbisTnfTKPZ01u/ukJdQTLGh9A==", "cpu": [ "arm" ], @@ -2101,9 +2100,9 @@ ] }, "node_modules/@rollup/rollup-linux-arm64-gnu": { - "version": "4.17.2", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.17.2.tgz", - "integrity": "sha512-EMMPHkiCRtE8Wdk3Qhtciq6BndLtstqZIroHiiGzB3C5LDJmIZcSzVtLRbwuXuUft1Cnv+9fxuDtDxz3k3EW2A==", + "version": "4.18.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.18.0.tgz", + "integrity": "sha512-rJ5D47d8WD7J+7STKdCUAgmQk49xuFrRi9pZkWoRD1UeSMakbcepWXPF8ycChBoAqs1pb2wzvbY6Q33WmN2ftw==", "cpu": [ "arm64" ], @@ -2114,9 +2113,9 @@ ] }, "node_modules/@rollup/rollup-linux-arm64-musl": { - "version": "4.17.2", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.17.2.tgz", - "integrity": "sha512-NMPylUUZ1i0z/xJUIx6VUhISZDRT+uTWpBcjdv0/zkp7b/bQDF+NfnfdzuTiB1G6HTodgoFa93hp0O1xl+/UbA==", + "version": "4.18.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.18.0.tgz", + "integrity": "sha512-be6Yx37b24ZwxQ+wOQXXLZqpq4jTckJhtGlWGZs68TgdKXJgw54lUUoFYrg6Zs/kjzAQwEwYbp8JxZVzZLRepQ==", "cpu": [ "arm64" ], @@ -2127,9 +2126,9 @@ ] }, "node_modules/@rollup/rollup-linux-powerpc64le-gnu": { - "version": "4.17.2", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.17.2.tgz", - "integrity": "sha512-T19My13y8uYXPw/L/k0JYaX1fJKFT/PWdXiHr8mTbXWxjVF1t+8Xl31DgBBvEKclw+1b00Chg0hxE2O7bTG7GQ==", + "version": "4.18.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.18.0.tgz", + "integrity": "sha512-hNVMQK+qrA9Todu9+wqrXOHxFiD5YmdEi3paj6vP02Kx1hjd2LLYR2eaN7DsEshg09+9uzWi2W18MJDlG0cxJA==", "cpu": [ "ppc64" ], @@ -2140,9 +2139,9 @@ ] }, "node_modules/@rollup/rollup-linux-riscv64-gnu": { - "version": "4.17.2", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.17.2.tgz", - "integrity": "sha512-BOaNfthf3X3fOWAB+IJ9kxTgPmMqPPH5f5k2DcCsRrBIbWnaJCgX2ll77dV1TdSy9SaXTR5iDXRL8n7AnoP5cg==", + "version": "4.18.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.18.0.tgz", + "integrity": "sha512-ROCM7i+m1NfdrsmvwSzoxp9HFtmKGHEqu5NNDiZWQtXLA8S5HBCkVvKAxJ8U+CVctHwV2Gb5VUaK7UAkzhDjlg==", "cpu": [ "riscv64" ], @@ -2153,9 +2152,9 @@ ] }, "node_modules/@rollup/rollup-linux-s390x-gnu": { - "version": "4.17.2", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.17.2.tgz", - "integrity": "sha512-W0UP/x7bnn3xN2eYMql2T/+wpASLE5SjObXILTMPUBDB/Fg/FxC+gX4nvCfPBCbNhz51C+HcqQp2qQ4u25ok6g==", + "version": "4.18.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.18.0.tgz", + "integrity": "sha512-0UyyRHyDN42QL+NbqevXIIUnKA47A+45WyasO+y2bGJ1mhQrfrtXUpTxCOrfxCR4esV3/RLYyucGVPiUsO8xjg==", "cpu": [ "s390x" ], @@ -2166,9 +2165,9 @@ ] }, "node_modules/@rollup/rollup-linux-x64-gnu": { - "version": "4.17.2", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.17.2.tgz", - "integrity": "sha512-Hy7pLwByUOuyaFC6mAr7m+oMC+V7qyifzs/nW2OJfC8H4hbCzOX07Ov0VFk/zP3kBsELWNFi7rJtgbKYsav9QQ==", + "version": "4.18.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.18.0.tgz", + "integrity": "sha512-xuglR2rBVHA5UsI8h8UbX4VJ470PtGCf5Vpswh7p2ukaqBGFTnsfzxUBetoWBWymHMxbIG0Cmx7Y9qDZzr648w==", "cpu": [ "x64" ], @@ -2179,9 +2178,9 @@ ] }, "node_modules/@rollup/rollup-linux-x64-musl": { - "version": "4.17.2", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.17.2.tgz", - "integrity": "sha512-h1+yTWeYbRdAyJ/jMiVw0l6fOOm/0D1vNLui9iPuqgRGnXA0u21gAqOyB5iHjlM9MMfNOm9RHCQ7zLIzT0x11Q==", + "version": "4.18.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.18.0.tgz", + "integrity": "sha512-LKaqQL9osY/ir2geuLVvRRs+utWUNilzdE90TpyoX0eNqPzWjRm14oMEE+YLve4k/NAqCdPkGYDaDF5Sw+xBfg==", "cpu": [ "x64" ], @@ -2192,9 +2191,9 @@ ] }, "node_modules/@rollup/rollup-win32-arm64-msvc": { - "version": "4.17.2", - "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.17.2.tgz", - "integrity": "sha512-tmdtXMfKAjy5+IQsVtDiCfqbynAQE/TQRpWdVataHmhMb9DCoJxp9vLcCBjEQWMiUYxO1QprH/HbY9ragCEFLA==", + "version": "4.18.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.18.0.tgz", + "integrity": "sha512-7J6TkZQFGo9qBKH0pk2cEVSRhJbL6MtfWxth7Y5YmZs57Pi+4x6c2dStAUvaQkHQLnEQv1jzBUW43GvZW8OFqA==", "cpu": [ "arm64" ], @@ -2205,9 +2204,9 @@ ] }, "node_modules/@rollup/rollup-win32-ia32-msvc": { - "version": "4.17.2", - "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.17.2.tgz", - "integrity": "sha512-7II/QCSTAHuE5vdZaQEwJq2ZACkBpQDOmQsE6D6XUbnBHW8IAhm4eTufL6msLJorzrHDFv3CF8oCA/hSIRuZeQ==", + "version": "4.18.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.18.0.tgz", + "integrity": "sha512-Txjh+IxBPbkUB9+SXZMpv+b/vnTEtFyfWZgJ6iyCmt2tdx0OF5WhFowLmnh8ENGNpfUlUZkdI//4IEmhwPieNg==", "cpu": [ "ia32" ], @@ -2218,9 +2217,9 @@ ] }, "node_modules/@rollup/rollup-win32-x64-msvc": { - "version": "4.17.2", - "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.17.2.tgz", - "integrity": "sha512-TGGO7v7qOq4CYmSBVEYpI1Y5xDuCEnbVC5Vth8mOsW0gDSzxNrVERPc790IGHsrT2dQSimgMr9Ub3Y1Jci5/8w==", + "version": "4.18.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.18.0.tgz", + "integrity": "sha512-UOo5FdvOL0+eIVTgS4tIdbW+TtnBLWg1YBCcU2KWM7nuNwRz9bksDX1bekJJCpu25N1DVWaCwnT39dVQxzqS8g==", "cpu": [ "x64" ], @@ -2406,9 +2405,9 @@ } }, "node_modules/@types/babel__traverse": { - "version": "7.20.5", - "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.20.5.tgz", - "integrity": "sha512-WXCyOcRtH37HAUkpXhUduaxdm82b4GSlyTqajXviN4EfiuPgNYR109xMCKvpl6zPIpua0DGlMEDCq+g8EdoheQ==", + "version": "7.20.6", + "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.20.6.tgz", + "integrity": "sha512-r1bzfrm0tomOI8g1SzvCaQHo6Lcv6zu0EA+W2kHrt8dyrHQxGzBBL4kdkzIS+jBMV+EYcMAEAqXqYaLJq5rOZg==", "dev": true, "dependencies": { "@babel/types": "^7.20.7" @@ -2498,9 +2497,9 @@ "integrity": "sha512-qL0hyIMNPow317QWW/63RvL1x5MVMV+Ru3NaY9f/CuEpCqrmb7WeuK2071ZY5hczOnm38qExWM2i2WtkXLSqFw==" }, "node_modules/@types/node": { - "version": "20.12.12", - "resolved": "https://registry.npmjs.org/@types/node/-/node-20.12.12.tgz", - "integrity": "sha512-eWLDGF/FOSPtAvEqeRAQ4C8LSA7M1I7i0ky1I8U7kD1J5ITyW3AsRhQrKVoWf5pFKZ2kILsEGJhsI9r93PYnOw==", + "version": "20.14.0", + "resolved": "https://registry.npmjs.org/@types/node/-/node-20.14.0.tgz", + "integrity": "sha512-5cHBxFGJx6L4s56Bubp4fglrEpmyJypsqI6RgzMfBHWUJQGWAAi8cWcgetEbZXHYXo9C2Fa4EEds/uSyS4cxmA==", "dependencies": { "undici-types": "~5.26.4" } @@ -2528,9 +2527,9 @@ "integrity": "sha512-5zvhXYtRNRluoE/jAp4GVsSduVUzNWKkOZrCDBWYtE7biZywwdC2AcEzg+cSMLFRfVgeAFqpfNabiPjxFddV1Q==" }, "node_modules/@types/react": { - "version": "18.3.2", - "resolved": "https://registry.npmjs.org/@types/react/-/react-18.3.2.tgz", - "integrity": "sha512-Btgg89dAnqD4vV7R3hlwOxgqobUQKgx3MmrQRi0yYbs/P0ym8XozIAlkqVilPqHQwXs4e9Tf63rrCgl58BcO4w==", + "version": "18.3.3", + "resolved": "https://registry.npmjs.org/@types/react/-/react-18.3.3.tgz", + "integrity": "sha512-hti/R0pS0q1/xx+TsI73XIqk26eBsISZ2R0wUijXIngRK9R/e7Xw/cXVxQK7R5JjW+SV4zGcn5hXjudkN/pLIw==", "dependencies": { "@types/prop-types": "*", "csstype": "^3.0.2" @@ -2622,16 +2621,16 @@ } }, "node_modules/@vitejs/plugin-react": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/@vitejs/plugin-react/-/plugin-react-4.2.1.tgz", - "integrity": "sha512-oojO9IDc4nCUUi8qIR11KoQm0XFFLIwsRBwHRR4d/88IWghn1y6ckz/bJ8GHDCsYEJee8mDzqtJxh15/cisJNQ==", + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/@vitejs/plugin-react/-/plugin-react-4.3.0.tgz", + "integrity": "sha512-KcEbMsn4Dpk+LIbHMj7gDPRKaTMStxxWRkRmxsg/jVdFdJCZWt1SchZcf0M4t8lIKdwwMsEyzhrcOXRrDPtOBw==", "dev": true, "dependencies": { - "@babel/core": "^7.23.5", - "@babel/plugin-transform-react-jsx-self": "^7.23.3", - "@babel/plugin-transform-react-jsx-source": "^7.23.3", + "@babel/core": "^7.24.5", + "@babel/plugin-transform-react-jsx-self": "^7.24.5", + "@babel/plugin-transform-react-jsx-source": "^7.24.1", "@types/babel__core": "^7.20.5", - "react-refresh": "^0.14.0" + "react-refresh": "^0.14.2" }, "engines": { "node": "^14.18.0 || >=16.0.0" @@ -2641,9 +2640,9 @@ } }, "node_modules/@vitejs/plugin-vue": { - "version": "5.0.4", - "resolved": "https://registry.npmjs.org/@vitejs/plugin-vue/-/plugin-vue-5.0.4.tgz", - "integrity": "sha512-WS3hevEszI6CEVEx28F8RjTX97k3KsrcY6kvTg7+Whm5y3oYvcqzVeGCU3hxSAn4uY2CLCkeokkGKpoctccilQ==", + "version": "5.0.5", + "resolved": "https://registry.npmjs.org/@vitejs/plugin-vue/-/plugin-vue-5.0.5.tgz", + "integrity": "sha512-LOjm7XeIimLBZyzinBQ6OSm3UBCNVCpLkxGC0oWmm2YPzVZoxMsdvNVimLTBzpAnR9hl/yn1SHGuRfe6/Td9rQ==", "dev": true, "engines": { "node": "^18.0.0 || >=20.0.0" @@ -2714,9 +2713,9 @@ } }, "node_modules/@vue/devtools-api": { - "version": "6.6.1", - "resolved": "https://registry.npmjs.org/@vue/devtools-api/-/devtools-api-6.6.1.tgz", - "integrity": "sha512-LgPscpE3Vs0x96PzSSB4IGVSZXZBZHpfxs+ZA1d+VEPwHdOXowy/Y2CsvCAIFrf+ssVU1pD1jidj505EpUnfbA==" + "version": "6.6.2", + "resolved": "https://registry.npmjs.org/@vue/devtools-api/-/devtools-api-6.6.2.tgz", + "integrity": "sha512-134clD8u7cBBXdmBbXI282gHGF7T/eAbD/G7mAK2llQF62IbI4ny28IVamZVMoJSvfImC2Xxnj732hXkJvUj6g==" }, "node_modules/@vue/eslint-config-standard": { "version": "8.0.1", @@ -2795,9 +2794,9 @@ } }, "node_modules/@vueuse/core/node_modules/vue-demi": { - "version": "0.14.7", - "resolved": "https://registry.npmjs.org/vue-demi/-/vue-demi-0.14.7.tgz", - "integrity": "sha512-EOG8KXDQNwkJILkx/gPcoL/7vH+hORoBaKgGe+6W7VFMvCYJfmF2dGbvgDroVnI8LU7/kTu8mbjRZGBU1z9NTA==", + "version": "0.14.8", + "resolved": "https://registry.npmjs.org/vue-demi/-/vue-demi-0.14.8.tgz", + "integrity": "sha512-Uuqnk9YE9SsWeReYqK2alDI5YzciATE0r2SkA6iMAtuXvNTMNACJLJEXNXaEy94ECuBe4Sk6RzRU80kjdbIo1Q==", "hasInstallScript": true, "bin": { "vue-demi-fix": "bin/vue-demi-fix.js", @@ -2839,9 +2838,9 @@ } }, "node_modules/@vueuse/shared/node_modules/vue-demi": { - "version": "0.14.7", - "resolved": "https://registry.npmjs.org/vue-demi/-/vue-demi-0.14.7.tgz", - "integrity": "sha512-EOG8KXDQNwkJILkx/gPcoL/7vH+hORoBaKgGe+6W7VFMvCYJfmF2dGbvgDroVnI8LU7/kTu8mbjRZGBU1z9NTA==", + "version": "0.14.8", + "resolved": "https://registry.npmjs.org/vue-demi/-/vue-demi-0.14.8.tgz", + "integrity": "sha512-Uuqnk9YE9SsWeReYqK2alDI5YzciATE0r2SkA6iMAtuXvNTMNACJLJEXNXaEy94ECuBe4Sk6RzRU80kjdbIo1Q==", "hasInstallScript": true, "bin": { "vue-demi-fix": "bin/vue-demi-fix.js", @@ -4514,6 +4513,7 @@ "version": "3.0.1", "resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-3.0.1.tgz", "integrity": "sha512-QZW4EDmGwlYur0Yyf/b2uGucHQMa8aFUP7eu9ddR73vvhFyt4V0Vl3QHPcTNJ8l6qYOBdxgXdnBXQrHilfRQBg==", + "deprecated": "This package is no longer supported.", "dependencies": { "delegates": "^1.0.0", "readable-stream": "^3.6.0" @@ -4875,11 +4875,11 @@ } }, "node_modules/braces": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", - "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", + "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", "dependencies": { - "fill-range": "^7.0.1" + "fill-range": "^7.1.1" }, "engines": { "node": ">=8" @@ -4997,15 +4997,15 @@ } }, "node_modules/cacache/node_modules/glob": { - "version": "10.3.15", - "resolved": "https://registry.npmjs.org/glob/-/glob-10.3.15.tgz", - "integrity": "sha512-0c6RlJt1TICLyvJYIApxb8GsXoai0KUP7AxKKAtsYXdgJR1mGEUa7DgwShbdk1nly0PYoZj01xd4hzbq3fsjpw==", + "version": "10.4.1", + "resolved": "https://registry.npmjs.org/glob/-/glob-10.4.1.tgz", + "integrity": "sha512-2jelhlq3E4ho74ZyVLN03oKdAZVUa6UDZzFLVH1H7dnoax+y9qyaq8zBkfDIggjniU19z0wU18y16jMB2eyVIw==", "dependencies": { "foreground-child": "^3.1.0", - "jackspeak": "^2.3.6", - "minimatch": "^9.0.1", - "minipass": "^7.0.4", - "path-scurry": "^1.11.0" + "jackspeak": "^3.1.2", + "minimatch": "^9.0.4", + "minipass": "^7.1.2", + "path-scurry": "^1.11.1" }, "bin": { "glob": "dist/esm/bin.mjs" @@ -5040,9 +5040,9 @@ } }, "node_modules/cacache/node_modules/minipass": { - "version": "7.1.1", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.1.tgz", - "integrity": "sha512-UZ7eQ+h8ywIRAW1hIEl2AqdwzJucU/Kp59+8kkZeSvafXhZjul247BvIJjEVFVeON6d7lM46XX1HXCduKAS8VA==", + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz", + "integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==", "engines": { "node": ">=16 || 14 >=14.17" } @@ -5138,9 +5138,9 @@ } }, "node_modules/caniuse-lite": { - "version": "1.0.30001620", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001620.tgz", - "integrity": "sha512-WJvYsOjd1/BYUY6SNGUosK9DUidBPDTnOARHp3fSmFO1ekdxaY6nKRttEVrfMmYi80ctS0kz1wiWmm14fVc3ew==", + "version": "1.0.30001627", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001627.tgz", + "integrity": "sha512-4zgNiB8nTyV/tHhwZrFs88ryjls/lHiqFhrxCW4qSTeuRByBVnPYpDInchOIySWknznucaf31Z4KYqjfbrecVw==", "dev": true, "funding": [ { @@ -5703,9 +5703,9 @@ "integrity": "sha512-okzr3f11N6WuqYtZSvm+F776mB41wRZMhKP+hc34YdW+KmtYYK9iqvHSwo2k9FEH3fhGXvOPV6yz2IcSrfRUDg==" }, "node_modules/debug": { - "version": "4.3.4", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", - "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "version": "4.3.5", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.5.tgz", + "integrity": "sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg==", "dependencies": { "ms": "2.1.2" }, @@ -6049,9 +6049,9 @@ "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==" }, "node_modules/electron-to-chromium": { - "version": "1.4.775", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.775.tgz", - "integrity": "sha512-JpOfl1aNAiZ88wFzjPczTLwYIoPIsij8S9/XQH9lqMpiJOf23kxea68B8wje4f68t4rOIq4Bh+vP4I65njiJBw==", + "version": "1.4.788", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.788.tgz", + "integrity": "sha512-ubp5+Ev/VV8KuRoWnfP2QF2Bg+O2ZFdb49DiiNbz2VmgkIqrnyYaqIOqj8A6K/3p1xV0QcU5hBQ1+BmB6ot1OA==", "dev": true }, "node_modules/element-plus": { @@ -6626,15 +6626,18 @@ } }, "node_modules/eslint-plugin-promise": { - "version": "6.1.1", - "resolved": "https://registry.npmjs.org/eslint-plugin-promise/-/eslint-plugin-promise-6.1.1.tgz", - "integrity": "sha512-tjqWDwVZQo7UIPMeDReOpUgHCmCiH+ePnVT+5zVapL0uuHnegBUs2smM13CzOs2Xb5+MHMRFTs9v24yjba4Oig==", + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-promise/-/eslint-plugin-promise-6.2.0.tgz", + "integrity": "sha512-QmAqwizauvnKOlifxyDj2ObfULpHQawlg/zQdgEixur9vl0CvZGv/LCJV2rtj3210QCoeGBzVMfMXqGAOr/4fA==", "dev": true, "engines": { "node": "^12.22.0 || ^14.17.0 || >=16.0.0" }, + "funding": { + "url": "https://opencollective.com/eslint" + }, "peerDependencies": { - "eslint": "^7.0.0 || ^8.0.0" + "eslint": "^7.0.0 || ^8.0.0 || ^9.0.0" } }, "node_modules/eslint-plugin-vue": { @@ -7019,9 +7022,9 @@ } }, "node_modules/fill-range": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", - "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", + "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", "dependencies": { "to-regex-range": "^5.0.1" }, @@ -7147,9 +7150,9 @@ } }, "node_modules/framer-motion": { - "version": "11.2.4", - "resolved": "https://registry.npmjs.org/framer-motion/-/framer-motion-11.2.4.tgz", - "integrity": "sha512-D+EXd0lspaZijv3BJhAcSsyGz+gnvoEdnf+QWkPZdhoFzbeX/2skrH9XSVFb0osgUnCajW8x1frjhLuKwa/Reg==", + "version": "11.2.10", + "resolved": "https://registry.npmjs.org/framer-motion/-/framer-motion-11.2.10.tgz", + "integrity": "sha512-/gr3PLZUVFCc86a9MqCUboVrALscrdluzTb3yew+2/qKBU8CX6nzs918/SRBRCqaPbx0TZP10CB6yFgK2C5cYQ==", "dependencies": { "tslib": "^2.4.0" }, @@ -7182,9 +7185,9 @@ } }, "node_modules/fs-minipass/node_modules/minipass": { - "version": "7.1.1", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.1.tgz", - "integrity": "sha512-UZ7eQ+h8ywIRAW1hIEl2AqdwzJucU/Kp59+8kkZeSvafXhZjul247BvIJjEVFVeON6d7lM46XX1HXCduKAS8VA==", + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz", + "integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==", "engines": { "node": ">=16 || 14 >=14.17" } @@ -7246,6 +7249,7 @@ "version": "4.0.4", "resolved": "https://registry.npmjs.org/gauge/-/gauge-4.0.4.tgz", "integrity": "sha512-f9m+BEN5jkg6a0fZjleidjN51VE1X+mPFQ2DJ0uv1V39oCLCbsGe6yjbBnp7eK7z/+GAon99a3nHuqbuuthyPg==", + "deprecated": "This package is no longer supported.", "dependencies": { "aproba": "^1.0.3 || ^2.0.0", "color-support": "^1.1.3", @@ -7384,6 +7388,7 @@ "version": "7.2.3", "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "deprecated": "Glob versions prior to v9 are no longer supported", "dependencies": { "fs.realpath": "^1.0.0", "inflight": "^1.0.4", @@ -7892,6 +7897,7 @@ "version": "1.0.6", "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", + "deprecated": "This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.", "dependencies": { "once": "^1.3.0", "wrappy": "1" @@ -7903,9 +7909,9 @@ "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" }, "node_modules/ini": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/ini/-/ini-4.1.2.tgz", - "integrity": "sha512-AMB1mvwR1pyBFY/nSevUX6y8nJWS63/SzUKD3JyQn97s4xgIdgQPT75IRouIiBAN4yLQBUShNYVW0+UG25daCw==", + "version": "4.1.3", + "resolved": "https://registry.npmjs.org/ini/-/ini-4.1.3.tgz", + "integrity": "sha512-X7rqawQBvfdjS10YU1y1YVreA3SsLrW9dX2CewP2EbBJM4ypVNLDkO5y04gejPwKIY9lR+7r9gn3rFPt/kmWFg==", "engines": { "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } @@ -8344,9 +8350,9 @@ } }, "node_modules/jackspeak": { - "version": "2.3.6", - "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-2.3.6.tgz", - "integrity": "sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ==", + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-3.2.0.tgz", + "integrity": "sha512-eXIwN9gutMuB1AMW241gIHSEeaSMafWnxWXb/JGYWqifway4QgqBJLl7nYlmhGrxnHQ3wNc/QYFZ95aDtHHzpA==", "dependencies": { "@isaacs/cliui": "^8.0.2" }, @@ -8525,9 +8531,9 @@ } }, "node_modules/libphonenumber-js": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/libphonenumber-js/-/libphonenumber-js-1.11.1.tgz", - "integrity": "sha512-Wze1LPwcnzvcKGcRHFGFECTaLzxOtujwpf924difr5zniyYv1C2PiW0419qDR7m8lKDxsImu5mwxFuXhXpjmvw==" + "version": "1.11.2", + "resolved": "https://registry.npmjs.org/libphonenumber-js/-/libphonenumber-js-1.11.2.tgz", + "integrity": "sha512-V9mGLlaXN1WETzqQvSu6qf6XVAr3nFuJvWsHcuzCCCo6xUKawwSxOPTpan5CGOSKTn5w/bQuCZcLPJkyysgC3w==" }, "node_modules/line-height": { "version": "0.3.1", @@ -8857,11 +8863,11 @@ } }, "node_modules/micromatch": { - "version": "4.0.5", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", - "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "version": "4.0.7", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.7.tgz", + "integrity": "sha512-LPP/3KorzCwBxfeUuZmaR6bG2kdeHSbe0P2tY3FLRU4vYrjYz5hI4QZwV0njUx3jeuKe67YukQ1LSPZBKDqO/Q==", "dependencies": { - "braces": "^3.0.2", + "braces": "^3.0.3", "picomatch": "^2.3.1" }, "engines": { @@ -9003,9 +9009,9 @@ } }, "node_modules/minipass-fetch/node_modules/minipass": { - "version": "7.1.1", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.1.tgz", - "integrity": "sha512-UZ7eQ+h8ywIRAW1hIEl2AqdwzJucU/Kp59+8kkZeSvafXhZjul247BvIJjEVFVeON6d7lM46XX1HXCduKAS8VA==", + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz", + "integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==", "engines": { "node": ">=16 || 14 >=14.17" } @@ -9300,6 +9306,7 @@ "version": "8.1.0", "resolved": "https://registry.npmjs.org/glob/-/glob-8.1.0.tgz", "integrity": "sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==", + "deprecated": "Glob versions prior to v9 are no longer supported", "dependencies": { "fs.realpath": "^1.0.0", "inflight": "^1.0.4", @@ -9637,15 +9644,15 @@ } }, "node_modules/npm-check-updates/node_modules/glob": { - "version": "10.3.15", - "resolved": "https://registry.npmjs.org/glob/-/glob-10.3.15.tgz", - "integrity": "sha512-0c6RlJt1TICLyvJYIApxb8GsXoai0KUP7AxKKAtsYXdgJR1mGEUa7DgwShbdk1nly0PYoZj01xd4hzbq3fsjpw==", + "version": "10.4.1", + "resolved": "https://registry.npmjs.org/glob/-/glob-10.4.1.tgz", + "integrity": "sha512-2jelhlq3E4ho74ZyVLN03oKdAZVUa6UDZzFLVH1H7dnoax+y9qyaq8zBkfDIggjniU19z0wU18y16jMB2eyVIw==", "dependencies": { "foreground-child": "^3.1.0", - "jackspeak": "^2.3.6", - "minimatch": "^9.0.1", - "minipass": "^7.0.4", - "path-scurry": "^1.11.0" + "jackspeak": "^3.1.2", + "minimatch": "^9.0.4", + "minipass": "^7.1.2", + "path-scurry": "^1.11.1" }, "bin": { "glob": "dist/esm/bin.mjs" @@ -9672,9 +9679,9 @@ } }, "node_modules/npm-check-updates/node_modules/minipass": { - "version": "7.1.1", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.1.tgz", - "integrity": "sha512-UZ7eQ+h8ywIRAW1hIEl2AqdwzJucU/Kp59+8kkZeSvafXhZjul247BvIJjEVFVeON6d7lM46XX1HXCduKAS8VA==", + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz", + "integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==", "engines": { "node": ">=16 || 14 >=14.17" } @@ -9863,6 +9870,7 @@ "version": "6.0.2", "resolved": "https://registry.npmjs.org/npmlog/-/npmlog-6.0.2.tgz", "integrity": "sha512-/vBvz5Jfr9dT/aFWd0FIRf+T/Q2WBsLENygUaFUqstqsycmZAP/t5BvFJTK0viFmSUxiUKTUplWy5vt+rvKIxg==", + "deprecated": "This package is no longer supported.", "dependencies": { "are-we-there-yet": "^3.0.0", "console-control-strings": "^1.1.0", @@ -10317,9 +10325,9 @@ } }, "node_modules/pinia/node_modules/vue-demi": { - "version": "0.14.7", - "resolved": "https://registry.npmjs.org/vue-demi/-/vue-demi-0.14.7.tgz", - "integrity": "sha512-EOG8KXDQNwkJILkx/gPcoL/7vH+hORoBaKgGe+6W7VFMvCYJfmF2dGbvgDroVnI8LU7/kTu8mbjRZGBU1z9NTA==", + "version": "0.14.8", + "resolved": "https://registry.npmjs.org/vue-demi/-/vue-demi-0.14.8.tgz", + "integrity": "sha512-Uuqnk9YE9SsWeReYqK2alDI5YzciATE0r2SkA6iMAtuXvNTMNACJLJEXNXaEy94ECuBe4Sk6RzRU80kjdbIo1Q==", "hasInstallScript": true, "bin": { "vue-demi-fix": "bin/vue-demi-fix.js", @@ -10404,9 +10412,9 @@ } }, "node_modules/postcss-rtlcss": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/postcss-rtlcss/-/postcss-rtlcss-5.2.0.tgz", - "integrity": "sha512-Txi4EHwQbB6Jvqp3a03CLK5BypwnaZpmT/bJfDxDO4cTUsz0sXCEr7bqhlcpOMWYSoLV+Yb3SoJlNgXfehlH6Q==", + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/postcss-rtlcss/-/postcss-rtlcss-5.3.0.tgz", + "integrity": "sha512-tZOaKisLBDmd8zIPT8nMS8kFlfkNLKvsZr9QRs61VK82OK99RfgTj9JnIJ56nLM1iqykW8ZzD254+M5+oySofg==", "dev": true, "dependencies": { "rtlcss": "4.1.1" @@ -10419,9 +10427,9 @@ } }, "node_modules/postcss-selector-parser": { - "version": "6.0.16", - "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.16.tgz", - "integrity": "sha512-A0RVJrX+IUkVZbW3ClroRWurercFhieevHB38sr2+l9eUClMqome3LmEmnhlNy+5Mr2EYN6B2Kaw9wYdd+VHiw==", + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.1.0.tgz", + "integrity": "sha512-UMz42UD0UY0EApS0ZL9o1XnLhSTtvvvLe5Dc2H2O56fvRZi+KulDyf5ctDhhtYJBGKStV2FL1fy6253cmLgqVQ==", "dev": true, "dependencies": { "cssesc": "^3.0.0", @@ -10666,9 +10674,9 @@ } }, "node_modules/re-resizable": { - "version": "6.9.16", - "resolved": "https://registry.npmjs.org/re-resizable/-/re-resizable-6.9.16.tgz", - "integrity": "sha512-D9+ofwgPQRC6PL6cwavCZO9MUR8TKKxV1nHjbutSdNaFHK9v5k8m6DcESMXrw1+mRJn7fBHJRhZpa7EQ1ZWEEA==", + "version": "6.9.17", + "resolved": "https://registry.npmjs.org/re-resizable/-/re-resizable-6.9.17.tgz", + "integrity": "sha512-OBqd1BwVXpEJJn/yYROG+CbeqIDBWIp6wathlpB0kzZWWZIY1gPTsgK2yJEui5hOvkCdC2mcexF2V3DZVfLq2g==", "peerDependencies": { "react": "^16.13.1 || ^17.0.0 || ^18.0.0", "react-dom": "^16.13.1 || ^17.0.0 || ^18.0.0" @@ -10863,15 +10871,15 @@ } }, "node_modules/read-package-json/node_modules/glob": { - "version": "10.3.15", - "resolved": "https://registry.npmjs.org/glob/-/glob-10.3.15.tgz", - "integrity": "sha512-0c6RlJt1TICLyvJYIApxb8GsXoai0KUP7AxKKAtsYXdgJR1mGEUa7DgwShbdk1nly0PYoZj01xd4hzbq3fsjpw==", + "version": "10.4.1", + "resolved": "https://registry.npmjs.org/glob/-/glob-10.4.1.tgz", + "integrity": "sha512-2jelhlq3E4ho74ZyVLN03oKdAZVUa6UDZzFLVH1H7dnoax+y9qyaq8zBkfDIggjniU19z0wU18y16jMB2eyVIw==", "dependencies": { "foreground-child": "^3.1.0", - "jackspeak": "^2.3.6", - "minimatch": "^9.0.1", - "minipass": "^7.0.4", - "path-scurry": "^1.11.0" + "jackspeak": "^3.1.2", + "minimatch": "^9.0.4", + "minipass": "^7.1.2", + "path-scurry": "^1.11.1" }, "bin": { "glob": "dist/esm/bin.mjs" @@ -10906,9 +10914,9 @@ } }, "node_modules/read-package-json/node_modules/minipass": { - "version": "7.1.1", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.1.tgz", - "integrity": "sha512-UZ7eQ+h8ywIRAW1hIEl2AqdwzJucU/Kp59+8kkZeSvafXhZjul247BvIJjEVFVeON6d7lM46XX1HXCduKAS8VA==", + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz", + "integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==", "engines": { "node": ">=16 || 14 >=14.17" } @@ -11311,6 +11319,7 @@ "version": "3.0.2", "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "deprecated": "Rimraf versions prior to v4 are no longer supported", "dependencies": { "glob": "^7.1.3" }, @@ -11322,9 +11331,9 @@ } }, "node_modules/rollup": { - "version": "4.17.2", - "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.17.2.tgz", - "integrity": "sha512-/9ClTJPByC0U4zNLowV1tMBe8yMEAxewtR3cUNX5BoEpGH3dQEWpJLr6CLp0fPdYRF/fzVOgvDb1zXuakwF5kQ==", + "version": "4.18.0", + "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.18.0.tgz", + "integrity": "sha512-QmJz14PX3rzbJCN1SG4Xe/bAAX2a6NpCP8ab2vfu2GiUr8AQcr2nCV/oEO3yneFarB67zk8ShlIyWb2LGTb3Sg==", "dev": true, "dependencies": { "@types/estree": "1.0.5" @@ -11337,22 +11346,22 @@ "npm": ">=8.0.0" }, "optionalDependencies": { - "@rollup/rollup-android-arm-eabi": "4.17.2", - "@rollup/rollup-android-arm64": "4.17.2", - "@rollup/rollup-darwin-arm64": "4.17.2", - "@rollup/rollup-darwin-x64": "4.17.2", - "@rollup/rollup-linux-arm-gnueabihf": "4.17.2", - "@rollup/rollup-linux-arm-musleabihf": "4.17.2", - "@rollup/rollup-linux-arm64-gnu": "4.17.2", - "@rollup/rollup-linux-arm64-musl": "4.17.2", - "@rollup/rollup-linux-powerpc64le-gnu": "4.17.2", - "@rollup/rollup-linux-riscv64-gnu": "4.17.2", - "@rollup/rollup-linux-s390x-gnu": "4.17.2", - "@rollup/rollup-linux-x64-gnu": "4.17.2", - "@rollup/rollup-linux-x64-musl": "4.17.2", - "@rollup/rollup-win32-arm64-msvc": "4.17.2", - "@rollup/rollup-win32-ia32-msvc": "4.17.2", - "@rollup/rollup-win32-x64-msvc": "4.17.2", + "@rollup/rollup-android-arm-eabi": "4.18.0", + "@rollup/rollup-android-arm64": "4.18.0", + "@rollup/rollup-darwin-arm64": "4.18.0", + "@rollup/rollup-darwin-x64": "4.18.0", + "@rollup/rollup-linux-arm-gnueabihf": "4.18.0", + "@rollup/rollup-linux-arm-musleabihf": "4.18.0", + "@rollup/rollup-linux-arm64-gnu": "4.18.0", + "@rollup/rollup-linux-arm64-musl": "4.18.0", + "@rollup/rollup-linux-powerpc64le-gnu": "4.18.0", + "@rollup/rollup-linux-riscv64-gnu": "4.18.0", + "@rollup/rollup-linux-s390x-gnu": "4.18.0", + "@rollup/rollup-linux-x64-gnu": "4.18.0", + "@rollup/rollup-linux-x64-musl": "4.18.0", + "@rollup/rollup-win32-arm64-msvc": "4.18.0", + "@rollup/rollup-win32-ia32-msvc": "4.18.0", + "@rollup/rollup-win32-x64-msvc": "4.18.0", "fsevents": "~2.3.2" } }, @@ -11473,9 +11482,9 @@ "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" }, "node_modules/sass": { - "version": "1.77.2", - "resolved": "https://registry.npmjs.org/sass/-/sass-1.77.2.tgz", - "integrity": "sha512-eb4GZt1C3avsX3heBNlrc7I09nyT00IUuo4eFhAbeXWU2fvA7oXI53SxODVAA+zgZCk9aunAZgO+losjR3fAwA==", + "version": "1.77.4", + "resolved": "https://registry.npmjs.org/sass/-/sass-1.77.4.tgz", + "integrity": "sha512-vcF3Ckow6g939GMA4PeU7b2K/9FALXk2KF9J87txdHzXbUF9XRQRwSxcAs/fGaTnJeBFd7UoV22j3lzMLdM0Pw==", "dev": true, "dependencies": { "chokidar": ">=3.0.0 <4.0.0", @@ -11824,9 +11833,9 @@ } }, "node_modules/spdx-license-ids": { - "version": "3.0.17", - "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.17.tgz", - "integrity": "sha512-sh8PWc/ftMqAAdFiBu6Fy6JUOYjqDJBJvIhpfDMyHrr0Rbp5liZqd4TjtQ/RgfLjKFZb+LMx5hpml5qOWy0qvg==" + "version": "3.0.18", + "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.18.tgz", + "integrity": "sha512-xxRs31BqRYHwiMzudOrpSiHtZ8i/GeionCBDSilhYRj+9gIcI8wCZTlXZKu9vZIVqViP3dcp9qE5G6AlIaD+TQ==" }, "node_modules/sprintf-js": { "version": "1.1.3", @@ -11845,9 +11854,9 @@ } }, "node_modules/ssri/node_modules/minipass": { - "version": "7.1.1", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.1.tgz", - "integrity": "sha512-UZ7eQ+h8ywIRAW1hIEl2AqdwzJucU/Kp59+8kkZeSvafXhZjul247BvIJjEVFVeON6d7lM46XX1HXCduKAS8VA==", + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz", + "integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==", "engines": { "node": ">=16 || 14 >=14.17" } @@ -12753,9 +12762,9 @@ } }, "node_modules/vite": { - "version": "5.2.11", - "resolved": "https://registry.npmjs.org/vite/-/vite-5.2.11.tgz", - "integrity": "sha512-HndV31LWW05i1BLPMUCE1B9E9GFbOu1MbenhS58FuK6owSO5qHm7GiCotrNY1YE5rMeQSFBGmT5ZaLEjFizgiQ==", + "version": "5.2.12", + "resolved": "https://registry.npmjs.org/vite/-/vite-5.2.12.tgz", + "integrity": "sha512-/gC8GxzxMK5ntBwb48pR32GGhENnjtY30G4A0jemunsBkiEZFw60s8InGpN8gkhHEkjnRK1aSAxeQgwvFhUHAA==", "dev": true, "dependencies": { "esbuild": "^0.20.1", @@ -12896,9 +12905,9 @@ } }, "node_modules/vue-eslint-parser": { - "version": "9.4.2", - "resolved": "https://registry.npmjs.org/vue-eslint-parser/-/vue-eslint-parser-9.4.2.tgz", - "integrity": "sha512-Ry9oiGmCAK91HrKMtCrKFWmSFWvYkpGglCeFAIqDdr9zdXmMMpJOmUJS7WWsW7fX81h6mwHmUZCQQ1E0PkSwYQ==", + "version": "9.4.3", + "resolved": "https://registry.npmjs.org/vue-eslint-parser/-/vue-eslint-parser-9.4.3.tgz", + "integrity": "sha512-2rYRLWlIpaiN8xbPiDyXZXRgLGOtWxERV7ND5fFAv5qo1D2N9Fu9MNajBNc6o13lZ+24DAWCkQCvj4klgmcITg==", "dev": true, "dependencies": { "debug": "^4.3.4", diff --git a/readme.txt b/readme.txt index 609e13226..20bc63b71 100644 --- a/readme.txt +++ b/readme.txt @@ -1,14 +1,14 @@ -=== All in One SEO – Best WordPress SEO Plugin – Easily Improve SEO Rankings & Increase Traffic === +=== All in One SEO – Powerful SEO Plugin to Boost SEO Rankings & Increase Traffic === Contributors: aioseo, smub, benjaminprojas Tags: SEO, Google Search Console, XML Sitemap, meta description, schema Tested up to: 6.5.3 Requires at least: 5.3 Requires PHP: 7.0 -Stable tag: 4.6.3 +Stable tag: 4.6.4 License: GPLv3 or later License URI: https://www.gnu.org/licenses/gpl-3.0.txt -The original WordPress SEO plugin. Improve your WordPress SEO rankings and traffic with our comprehensive SEO tools and smart SEO optimizations! +AIOSEO is the most powerful WordPress SEO plugin. Improve SEO rankings and traffic with comprehensive SEO tools and smart AI SEO optimizations! == Description == @@ -145,7 +145,7 @@ Connect with Google webmaster tools and Google Search Console to see SEO insight Improves your WooCommerce SEO rankings. Easily optimize WooCommerce product pages, product categories, and more for best eCommerce SEO results. * **Knowledge Panel SEO** -Improve website SEO apperance by adding social media profile links for Facebook, Twitter, Wikipedia, Instagram, LinkedIn, Yelp, YouTube, and more. +Improve website SEO appearance by adding social media profile links for Facebook, Twitter, Wikipedia, Instagram, LinkedIn, Yelp, YouTube, and more. * **Webmaster Tool Integrations** Connect with all webmaster tools including Google Search Console, Bing SEO, Yandex SEO, Baidu SEO, Google Analytics, Pinterest site verification, and more. @@ -227,6 +227,20 @@ AIOSEO® is a registered trademark of Semper Plugins LLC. When writing about == Changelog == +**New in Version 4.6.4** + +* New: Added support for Course Info schema and integrated it with various membership plugins including MemberPress, MemberMouse and Wishlist Member. +* Updated: Organization schema has been updated to Google's latest specifications. Various new fields have been added, including Organization Description, E-mail Address, Address, Founding Date and Number of Employees. +* Updated: Website Name, Organization Name and Organization Description fields now support smart tags. +* Updated: Schema graphs from AIOSEO blocks are now visible in the graph overview and schema validator. Click the icon in their card to highlight them in the Block Editor. +* Updated: Added support for the valueAddedTaxIncluded field to autogenerated WooCommerce Product schema. +* Updated: Added support for delivery times to generic Product schema. +* Updated: Schema validator now regenerates the schema preview more frequently to provide more accurate results. +* Updated: Increased height of Schema Generator modal in Block Editor. +* Fixed: SEO Preview no longer sends an absurd amount of requests to REST API to get the schema output. +* Fixed: Saved templates not showing their graph subtype (if applicable) in the schema templates overview. +* Fixed: Label of phone number input fields no longer turns green when phone number is valid. + **New in Version 4.6.3** * Updated: New filters have been added to adjust the number of posts per action during the import process from other SEO plugins. @@ -315,69 +329,6 @@ AIOSEO® is a registered trademark of Semper Plugins LLC. When writing about * Updated: Compatibility with new ACF image data format. * Fixed: TruSEO sometimes freezes when used with particular languages. -**New in Version 4.5.7.3** - -* Fixed: Setup Wizard no longer freezes in Lite when the sitemap feature is selected for activation. - -**New in Version 4.5.7.2** - -* Fixed: Adding a Focus Keyphrase in TruSEO sometimes fails when user is using a language that is not officially supported. - -**New in Version 4.5.7.1** - -* Fixed: Plugin conflict with WPBakery page builder when a post was previously edited with WPBakery and the page builder is then deactivated. -* Fixed: SEO Preview no longer triggers a 404 request when fetching the schema output for the preview in Lite. - -**New in Version 4.5.7** - -* Updated: Added a new Featured Image tag for the RSS feed settings. -* Updated: Improved TruSEO Highlighter support for the Classic Editor. -* Fixed: Author sitemap would sometimes not load correctly for multisites due to incorrect users table name. -* Fixed: Default priority for terms of a given taxonomy not correctly reflected in the sitemap. -* Fixed: XML sitemap header no longer includes query args. -* Fixed: %currentyear% smart tag is now correctly imported from Rank Math into AIOSEO. -* Fixed: Search Statistics link to check Index Status in Google Search Console now considers subfolder WordPress installs. -* Fixed: Error in Link Assistant when site has no posts at all. -* Fixed: Deleting a redirect now correctly closes the editor. -* Fixed: Redirects table header no longer renders line breaks when used on small screens. -* Fixed: Redirect testing of a pass-through redirect now works as expected. -* Fixed: Redirects are no longer triggered when WP CLI is running. -* Fixed: Conflict with Simple Link Directory plugin where AIOSEO modals are opened on post/term edit. -* Fixed: Flyout menu box shadows and icons not rendered correctly in Safari. -* Fixed: Revision count for new, unpublished posts is no longer incorrect inside Avada and WPBakery. -* Fixed: Wrong social image output in some cases for various page builders. -* Fixed: Canonical URL for the dedicated HTML Sitemap page is now correct and no longer based on the post permalink structure. -* Fixed: Post/term details column sometimes not loading for authors and editors. -* Fixed: Issue causing TruSEO to sometimes not detect foreign languages correctly. -* Fixed: Issue where the "Focus Keyphrase in Introduction" check was not detecting content inside custom fields unless the shortcode block is used. - -**New in Version 4.5.6** - -* New: SEO Preview Redesign - Our revamped preview better reflects how your pages may look like in search results and now also supports various Google rich results snippets, including products, FAQ pages and more. -* New: Redirect Schedules - Add redirects for your pages ahead of time or schedule them for a specific date range thanks to our new scheduling ability. -* New: Redirect CSV Importer - Import redirects directly into AIOSEO by uploading a CSV file. -* Updated: Added Author SEO tab with additional settings for the Author SEO (E-E-A-T) addon. -* Updated: Added support for PHP 8.3. -* Updated: Bumped the minimum required WordPress Core version to 5.3. -* Fixed: ProfilePage schema error because "mainEntity" property is missing. - -**New in Version 4.5.5** - -* Updated: Various AI Title/Description Generator improvements for more reliable results and better foreign language support. -* Updated: Removed Search Statistics Index status background scan in favour of loading results on-the-fly to prevent quota from running out. -* Updated: Added a survey that triggers when users deactivate the plugin. -* Updated: Added WooCommerce Shop page to the breadcrumb trail for WooCommerce Products and related taxonomies. -* Updated: Added Broken Link Checker as an installable plugin to the Setup Wizard and About Us page. -* Fixed: Block settings sidebar not re-expanding after user closed it previously. -* Fixed: Primary term not included in canonical URL for WooCommerce products. -* Fixed: Schema not correctly reflecting Out of Stock status for variable products in WooCommerce. -* Fixed: Schema Generator graph/template search box disappeared when certain special characters were entered. -* Fixed: SEO Revisions not created for attachments. -* Fixed: Plugin conflict with WPBingo Core where AIOSEO setting tabs are collapsed. -* Fixed: Conflict between AIOSEO Redirects and Divi page builder. -* Fixed: Redirection plugins are no longer marked as conflicting when AIOSEO Redirects isn’t installed. -* Fixed: AIOSEO Details column on post list page would sometimes load unnecessarily. - **See our [changelog on aioseo.com](https://aioseo.com/changelog/?utm_source=wprepo&utm_medium=link&utm_campaign=liteplugin) for previous releases.** == Frequently Asked Questions == @@ -459,6 +410,6 @@ Additionally, AIOSEO can also provide you with data on the most frequently used == Upgrade Notice == -= 4.6.3 = += 4.6.4 = This update adds major improvements and bug fixes. \ No newline at end of file diff --git a/src/vue/components/common/base/Phone.vue b/src/vue/components/common/base/Phone.vue index fd719a42d..ffccf07a0 100644 --- a/src/vue/components/common/base/Phone.vue +++ b/src/vue/components/common/base/Phone.vue @@ -77,6 +77,7 @@ export default { .aioseo-app .aioseo-phone-number.m-phone-number-input { --maz-color-text: #141B38; --maz-color-muted: #8C8F9A; + --maz-color-success-600: #8C8F9A; --maz-border-radius: 3px; --maz-color-bg: #fff; --maz-border-width: 1px; @@ -84,16 +85,7 @@ export default { max-width: 600px; input { - &.m-select-list__search-input, - &.m-phone-number-input__select, - &.m-phone-number-input__input { - font-size: 14px; - - &:focus { - border: none; - box-shadow: none; - } - } + font-size: 14px; } .m-input-wrapper { @@ -105,6 +97,39 @@ export default { } } + > div:first-of-type { + input:focus { + border: none; + box-shadow: none; + } + + .m-input-wrapper { + border-top: 1px solid $input-border; + border-bottom: 1px solid $input-border; + border-left: 1px solid $input-border; + border-right: none; + border-radius: 3px; + + .m-input-label { + font-size: 14px; + } + } + } + + > div:last-of-type.--is-focused { + z-index: 10; + + > div { + border: 2px solid $blue; + border-radius: 3px; + } + + input { + border: none; + box-shadow: none; + } + } + .m-select-list { background: #fff !important; box-shadow: 0px 4px 26px rgba(44, 50, 76, 0.12); @@ -114,9 +139,10 @@ export default { } .m-select { - - .m-select-list-item { - + .m-phone-number-input__select__item { + display: flex; + align-items: center; + gap: 6px; &.--is-selected.--primary { background-color: $blue; color: $white; diff --git a/src/vue/components/common/core/Tooltip.vue b/src/vue/components/common/core/Tooltip.vue index 990c18463..3f0bc3087 100644 --- a/src/vue/components/common/core/Tooltip.vue +++ b/src/vue/components/common/core/Tooltip.vue @@ -97,5 +97,9 @@ export default { display: inline-flex; align-items: center; justify-content: center; + + div:nth-of-type(2) { + display: flex; + } } \ No newline at end of file diff --git a/src/vue/pages/search-appearance/views/GlobalSettings.vue b/src/vue/pages/search-appearance/views/GlobalSettings.vue index 985b3e570..ce8a90270 100644 --- a/src/vue/pages/search-appearance/views/GlobalSettings.vue +++ b/src/vue/pages/search-appearance/views/GlobalSettings.vue @@ -169,9 +169,13 @@ :name="strings.websiteName" > + + + + + +
@@ -363,7 +435,9 @@
+ {{ strings.goToLocalSeoSettings }} + + + {{ strings.unlockLocalSeo }} +
@@ -379,15 +463,22 @@ diff --git a/src/vue/stores/SchemaStore.js b/src/vue/stores/SchemaStore.js index 1b12c6f7f..7f6b9cfeb 100644 --- a/src/vue/stores/SchemaStore.js +++ b/src/vue/stores/SchemaStore.js @@ -9,6 +9,9 @@ import { useLicenseStore } from '@/vue/stores' +import { useSchema } from '@/vue/standalone/post-settings/composables/schema' + +import { escapeRegex } from '@/vue/utils/regex' import { isBlockEditor } from '@/vue/utils/context' export const useSchemaStore = defineStore('SchemaStore', { @@ -34,7 +37,8 @@ export const useSchemaStore = defineStore('SchemaStore', { generator : 'schema-templates', templates : 'schema-catalog' }, - templateName : '' + templateName : '', + previousOutputRequestData : null }), actions : { getCustomObject () { @@ -76,8 +80,6 @@ export const useSchemaStore = defineStore('SchemaStore', { this.graphCardsKey = this.graphCardsKey + 1 this.modalOpenMetabox = false this.modalOpenSidebar = false - - this.updateSchemaOutput() }, addCustomAsTemplate () { const postEditorStore = usePostEditorStore() @@ -112,8 +114,6 @@ export const useSchemaStore = defineStore('SchemaStore', { this.graphCardsKey = this.graphCardsKey + 1 this.modalOpenMetabox = false this.modalOpenSidebar = false - - this.updateSchemaOutput() }, addDefaultGraph () { const postEditorStore = usePostEditorStore() @@ -124,8 +124,6 @@ export const useSchemaStore = defineStore('SchemaStore', { this.graphCardsKey = this.graphCardsKey + 1 this.modalOpenMetabox = false this.modalOpenSidebar = false - - this.updateSchemaOutput() }, addGraph () { const postEditorStore = usePostEditorStore() @@ -140,12 +138,16 @@ export const useSchemaStore = defineStore('SchemaStore', { this.graphCardsKey = this.graphCardsKey + 1 this.modalOpenMetabox = false this.modalOpenSidebar = false - - this.updateSchemaOutput() }, addGraphAsTemplate () { + const schema = useSchema() + // First, set the name the user entered for the template. - this.graph.label = this.graph.graphName + ' - ' + this.templateName + if (this.graph?.properties?.type && this.graph.properties.type !== this.graph.graphName) { + this.graph.label = schema.getGraphObject(this.graph, true)?.label + ' - ' + schema.getGraphObject(this.graph)?.label + ' - ' + this.templateName + } else { + this.graph.label = schema.getGraphObject(this.graph, true)?.label + ' - ' + this.templateName + } const template = JSON.parse(JSON.stringify(this.graph)) @@ -166,14 +168,22 @@ export const useSchemaStore = defineStore('SchemaStore', { } }) }, - addTemplateAsGraph (templateIndex) { + addTemplateAsGraph (templateIndex, searchTerm = '') { const optionsStore = useOptionsStore() + + // First, filter the templates based on the search term. + let templates = optionsStore.internalOptions.internal.schema.templates + if (searchTerm) { + const pattern = new RegExp(escapeRegex(searchTerm).replace(/\s/g, '\\s'), 'i') + templates = templates.filter(x => x.label.match(pattern)) + } + if (undefined === templateIndex) { // If we don't have a template index, then we're adding the template from the edit screen. In that case, we just need to grab it from the session. - templateIndex = optionsStore.internalOptions.internal.schema.templates.findIndex(x => x.id === this.graph.id) + templateIndex = templates.findIndex(x => x.id === this.graph.id) } - const template = JSON.parse(JSON.stringify(optionsStore.internalOptions.internal.schema.templates[templateIndex])) + const template = JSON.parse(JSON.stringify(templates[templateIndex])) // Add a random suffix to the ID to prevent duplicate keys in case the same graph has been added twice. template.id = template.id + new Date().getTime().toString(18) @@ -198,8 +208,6 @@ export const useSchemaStore = defineStore('SchemaStore', { this.graphCardsKey = this.graphCardsKey + 1 this.modalOpenMetabox = false this.modalOpenSidebar = false - - this.updateSchemaOutput() }, deleteCustomGraph (graphIndex) { const postEditorStore = usePostEditorStore() @@ -215,8 +223,6 @@ export const useSchemaStore = defineStore('SchemaStore', { this.graphCardsKey = this.graphCardsKey + 1 this.modalOpenMetabox = false this.modalOpenSidebar = false - - this.updateSchemaOutput() }, deleteDefaultGraph () { const postEditorStore = usePostEditorStore() @@ -227,8 +233,6 @@ export const useSchemaStore = defineStore('SchemaStore', { this.graphCardsKey = this.graphCardsKey + 1 this.modalOpenMetabox = false this.modalOpenSidebar = false - - this.updateSchemaOutput() }, deleteGraph (graphIndex) { const postEditorStore = usePostEditorStore() @@ -244,8 +248,6 @@ export const useSchemaStore = defineStore('SchemaStore', { this.graphCardsKey = this.graphCardsKey + 1 this.modalOpenMetabox = false this.modalOpenSidebar = false - - this.updateSchemaOutput() }, deleteTemplate (templateIndex) { const templateId = this.graph.id @@ -326,10 +328,18 @@ export const useSchemaStore = defineStore('SchemaStore', { // Turn off the isDirty flag since we JUST opened up the edit modal. this.isDirty = false }, - async editTemplate (templateIndex) { + async editTemplate (templateIndex, searchTerm = '') { + const optionsStore = useOptionsStore() + + // First, filter the templates based on the search term. + let templates = optionsStore.internalOptions.internal.schema.templates + if (searchTerm) { + const pattern = new RegExp(escapeRegex(searchTerm).replace(/\s/g, '\\s'), 'i') + templates = templates.filter(x => x.label.match(pattern)) + } + // It's important to create a clone so that we're not editing the existing template object. - const optionsStore = useOptionsStore() - const editedTemplate = JSON.parse(JSON.stringify(optionsStore.internalOptions.internal.schema.templates[templateIndex])) + const editedTemplate = JSON.parse(JSON.stringify(templates[templateIndex])) this.graph = editedTemplate @@ -370,8 +380,6 @@ export const useSchemaStore = defineStore('SchemaStore', { this.graphCardsKey = this.graphCardsKey + 1 this.modalOpenMetabox = false this.modalOpenSidebar = false - - this.updateSchemaOutput() }, updateDefaultGraph () { const postEditorStore = usePostEditorStore() @@ -382,8 +390,6 @@ export const useSchemaStore = defineStore('SchemaStore', { this.graphCardsKey = this.graphCardsKey + 1 this.modalOpenMetabox = false this.modalOpenSidebar = false - - this.updateSchemaOutput() }, updateGraph () { const postEditorStore = usePostEditorStore() @@ -403,8 +409,6 @@ export const useSchemaStore = defineStore('SchemaStore', { this.graphCardsKey = this.graphCardsKey + 1 this.modalOpenMetabox = false this.modalOpenSidebar = false - - this.updateSchemaOutput() }, updateSchemaOutput () { const postEditorStore = usePostEditorStore() @@ -423,14 +427,22 @@ export const useSchemaStore = defineStore('SchemaStore', { return } + const data = { + postId : postId, + graphs : postEditorStore.currentPost.schema.graphs, + customGraphs : postEditorStore.currentPost.schema.customGraphs, + default : postEditorStore.currentPost.schema.default, + blockGraphs : postEditorStore.currentPost.schema.blockGraphs + } + + if (JSON.stringify(data) === this.previousOutputRequestData) { + return + } + + this.previousOutputRequestData = JSON.stringify(data) + http.post(links.restUrl('schema/validator/output')) - .send({ - postId : postId, - graphs : postEditorStore.currentPost.schema.graphs, - customGraphs : postEditorStore.currentPost.schema.customGraphs, - defaultGraph : postEditorStore.currentPost.schema.defaultGraph, - blockGraphs : postEditorStore.currentPost.schema.blockGraphs - }) + .send(data) .then((response) => { if (response.body.success && response.body.output) { let output = null diff --git a/src/vue/stores/SeoPreviewStore.js b/src/vue/stores/SeoPreviewStore.js index 0a2decfd8..fc4b47387 100644 --- a/src/vue/stores/SeoPreviewStore.js +++ b/src/vue/stores/SeoPreviewStore.js @@ -13,15 +13,14 @@ export const useSeoPreviewStore = defineStore('SeoPreviewStore', { getters : { // Get the rich results for the admin preview. richResults () { + const schemaStore = useSchemaStore() const tableOfContentsStore = useTableOfContentsStore() + let anchorLinks = (flattenHeadings(tableOfContentsStore.headings, 4) || [])?.map(h => h?.content || '') if (!Array.isArray(anchorLinks) || !anchorLinks.length) { anchorLinks = [] } - const schemaStore = useSchemaStore() - schemaStore.updateSchemaOutput() - return { anchorLinks : anchorLinks.filter((c) => !!c), reviewSnippet : this.extractReviewSnippet(schemaStore.output), diff --git a/src/vue/stores/SetupWizardStore.js b/src/vue/stores/SetupWizardStore.js index 504b93267..0e0cf448a 100644 --- a/src/vue/stores/SetupWizardStore.js +++ b/src/vue/stores/SetupWizardStore.js @@ -30,17 +30,16 @@ export const useSetupWizardStore = defineStore('SetupWizardStore', { metaDescription : '' }, additionalInformation : { - siteRepresents : 'organization', - person : null, - organizationName : null, - organizationLogo : null, - personName : null, - personLogo : null, - phone : null, - contactType : null, - contactTypeManual : null, - socialShareImage : null, - social : { + siteRepresents : 'organization', + person : null, + organizationName : null, + orgnaizationDescription : null, + organizationLogo : null, + personName : null, + personLogo : null, + phone : null, + socialShareImage : null, + social : { profiles : { sameUsername : { enable : true, diff --git a/src/vue/utils/links.js b/src/vue/utils/links.js index 75672c094..b1bb7c96d 100644 --- a/src/vue/utils/links.js +++ b/src/vue/utils/links.js @@ -107,6 +107,7 @@ const docLinks = { cornerstoneContent : `${marketingSite}docs/cornerstone-content/`, eeat : `${marketingSite}docs/adding-author-seo-e-e-a-t-to-your-site/`, eeatAuthorBioInjection : `${marketingSite}docs/adding-author-seo-e-e-a-t-to-your-site/#aioseo-automatically-displaying-the-author-excerpt`, + businessPhoneNumber : `${marketingSite}docs/best-business-phone-services`, queryArgMonitor : `${marketingSite}docs/query-arg-monitor/` } diff --git a/vendor/autoload.php b/vendor/autoload.php index 9d9e931c8..80f921a0b 100644 --- a/vendor/autoload.php +++ b/vendor/autoload.php @@ -22,4 +22,4 @@ require_once __DIR__ . '/composer/autoload_real.php'; -return ComposerAutoloaderInit651aebe52d12925c0afecab162ebab77::getLoader(); +return ComposerAutoloaderInit7eb11f5f8ea46ec64cbb126389b52db1::getLoader(); diff --git a/vendor/composer/autoload_classmap.php b/vendor/composer/autoload_classmap.php index 9f37c1492..9ba7cba1c 100644 --- a/vendor/composer/autoload_classmap.php +++ b/vendor/composer/autoload_classmap.php @@ -6,395 +6,6 @@ $baseDir = dirname($vendorDir); return array( - 'AIOSEO\\Plugin\\AIOSEO' => $baseDir . '/app/AIOSEO.php', - 'AIOSEO\\Plugin\\Common\\Admin\\Admin' => $baseDir . '/app/Common/Admin/Admin.php', - 'AIOSEO\\Plugin\\Common\\Admin\\ConflictingPlugins' => $baseDir . '/app/Common/Admin/ConflictingPlugins.php', - 'AIOSEO\\Plugin\\Common\\Admin\\Dashboard' => $baseDir . '/app/Common/Admin/Dashboard.php', - 'AIOSEO\\Plugin\\Common\\Admin\\DeactivationSurvey' => $baseDir . '/app/Common/Admin/DeactivationSurvey.php', - 'AIOSEO\\Plugin\\Common\\Admin\\NetworkAdmin' => $baseDir . '/app/Common/Admin/NetworkAdmin.php', - 'AIOSEO\\Plugin\\Common\\Admin\\Notices\\ConflictingPlugins' => $baseDir . '/app/Common/Admin/Notices/ConflictingPlugins.php', - 'AIOSEO\\Plugin\\Common\\Admin\\Notices\\DeprecatedWordPress' => $baseDir . '/app/Common/Admin/Notices/DeprecatedWordPress.php', - 'AIOSEO\\Plugin\\Common\\Admin\\Notices\\Import' => $baseDir . '/app/Common/Admin/Notices/Import.php', - 'AIOSEO\\Plugin\\Common\\Admin\\Notices\\Migration' => $baseDir . '/app/Common/Admin/Notices/Migration.php', - 'AIOSEO\\Plugin\\Common\\Admin\\Notices\\Notices' => $baseDir . '/app/Common/Admin/Notices/Notices.php', - 'AIOSEO\\Plugin\\Common\\Admin\\Notices\\Review' => $baseDir . '/app/Common/Admin/Notices/Review.php', - 'AIOSEO\\Plugin\\Common\\Admin\\Notices\\WpNotices' => $baseDir . '/app/Common/Admin/Notices/WpNotices.php', - 'AIOSEO\\Plugin\\Common\\Admin\\PostSettings' => $baseDir . '/app/Common/Admin/PostSettings.php', - 'AIOSEO\\Plugin\\Common\\Admin\\SeoAnalysis' => $baseDir . '/app/Common/Admin/SeoAnalysis.php', - 'AIOSEO\\Plugin\\Common\\Admin\\SiteHealth' => $baseDir . '/app/Common/Admin/SiteHealth.php', - 'AIOSEO\\Plugin\\Common\\Admin\\SlugMonitor' => $baseDir . '/app/Common/Admin/SlugMonitor.php', - 'AIOSEO\\Plugin\\Common\\Admin\\Usage' => $baseDir . '/app/Common/Admin/Usage.php', - 'AIOSEO\\Plugin\\Common\\Api\\Analyze' => $baseDir . '/app/Common/Api/Analyze.php', - 'AIOSEO\\Plugin\\Common\\Api\\Api' => $baseDir . '/app/Common/Api/Api.php', - 'AIOSEO\\Plugin\\Common\\Api\\Connect' => $baseDir . '/app/Common/Api/Connect.php', - 'AIOSEO\\Plugin\\Common\\Api\\Integrations\\Semrush' => $baseDir . '/app/Common/Api/Integrations/Semrush.php', - 'AIOSEO\\Plugin\\Common\\Api\\Integrations\\WpCode' => $baseDir . '/app/Common/Api/Integrations/WpCode.php', - 'AIOSEO\\Plugin\\Common\\Api\\Migration' => $baseDir . '/app/Common/Api/Migration.php', - 'AIOSEO\\Plugin\\Common\\Api\\Network' => $baseDir . '/app/Common/Api/Network.php', - 'AIOSEO\\Plugin\\Common\\Api\\Notifications' => $baseDir . '/app/Common/Api/Notifications.php', - 'AIOSEO\\Plugin\\Common\\Api\\Ping' => $baseDir . '/app/Common/Api/Ping.php', - 'AIOSEO\\Plugin\\Common\\Api\\Plugins' => $baseDir . '/app/Common/Api/Plugins.php', - 'AIOSEO\\Plugin\\Common\\Api\\PostsTerms' => $baseDir . '/app/Common/Api/PostsTerms.php', - 'AIOSEO\\Plugin\\Common\\Api\\Settings' => $baseDir . '/app/Common/Api/Settings.php', - 'AIOSEO\\Plugin\\Common\\Api\\Sitemaps' => $baseDir . '/app/Common/Api/Sitemaps.php', - 'AIOSEO\\Plugin\\Common\\Api\\Tags' => $baseDir . '/app/Common/Api/Tags.php', - 'AIOSEO\\Plugin\\Common\\Api\\Tools' => $baseDir . '/app/Common/Api/Tools.php', - 'AIOSEO\\Plugin\\Common\\Api\\User' => $baseDir . '/app/Common/Api/User.php', - 'AIOSEO\\Plugin\\Common\\Api\\Wizard' => $baseDir . '/app/Common/Api/Wizard.php', - 'AIOSEO\\Plugin\\Common\\Breadcrumbs\\Block' => $baseDir . '/app/Common/Breadcrumbs/Block.php', - 'AIOSEO\\Plugin\\Common\\Breadcrumbs\\Breadcrumbs' => $baseDir . '/app/Common/Breadcrumbs/Breadcrumbs.php', - 'AIOSEO\\Plugin\\Common\\Breadcrumbs\\Frontend' => $baseDir . '/app/Common/Breadcrumbs/Frontend.php', - 'AIOSEO\\Plugin\\Common\\Breadcrumbs\\Shortcode' => $baseDir . '/app/Common/Breadcrumbs/Shortcode.php', - 'AIOSEO\\Plugin\\Common\\Breadcrumbs\\Tags' => $baseDir . '/app/Common/Breadcrumbs/Tags.php', - 'AIOSEO\\Plugin\\Common\\Breadcrumbs\\Widget' => $baseDir . '/app/Common/Breadcrumbs/Widget.php', - 'AIOSEO\\Plugin\\Common\\Core\\Core' => $baseDir . '/app/Common/Core/Core.php', - 'AIOSEO\\Plugin\\Common\\Help\\Help' => $baseDir . '/app/Common/Help/Help.php', - 'AIOSEO\\Plugin\\Common\\ImportExport\\Helpers' => $baseDir . '/app/Common/ImportExport/Helpers.php', - 'AIOSEO\\Plugin\\Common\\ImportExport\\ImportExport' => $baseDir . '/app/Common/ImportExport/ImportExport.php', - 'AIOSEO\\Plugin\\Common\\ImportExport\\Importer' => $baseDir . '/app/Common/ImportExport/Importer.php', - 'AIOSEO\\Plugin\\Common\\ImportExport\\RankMath\\GeneralSettings' => $baseDir . '/app/Common/ImportExport/RankMath/GeneralSettings.php', - 'AIOSEO\\Plugin\\Common\\ImportExport\\RankMath\\Helpers' => $baseDir . '/app/Common/ImportExport/RankMath/Helpers.php', - 'AIOSEO\\Plugin\\Common\\ImportExport\\RankMath\\PostMeta' => $baseDir . '/app/Common/ImportExport/RankMath/PostMeta.php', - 'AIOSEO\\Plugin\\Common\\ImportExport\\RankMath\\RankMath' => $baseDir . '/app/Common/ImportExport/RankMath/RankMath.php', - 'AIOSEO\\Plugin\\Common\\ImportExport\\RankMath\\Sitemap' => $baseDir . '/app/Common/ImportExport/RankMath/Sitemap.php', - 'AIOSEO\\Plugin\\Common\\ImportExport\\RankMath\\TitleMeta' => $baseDir . '/app/Common/ImportExport/RankMath/TitleMeta.php', - 'AIOSEO\\Plugin\\Common\\ImportExport\\SearchAppearance' => $baseDir . '/app/Common/ImportExport/SearchAppearance.php', - 'AIOSEO\\Plugin\\Common\\ImportExport\\SeoPress\\Analytics' => $baseDir . '/app/Common/ImportExport/SeoPress/Analytics.php', - 'AIOSEO\\Plugin\\Common\\ImportExport\\SeoPress\\Breadcrumbs' => $baseDir . '/app/Common/ImportExport/SeoPress/Breadcrumbs.php', - 'AIOSEO\\Plugin\\Common\\ImportExport\\SeoPress\\GeneralSettings' => $baseDir . '/app/Common/ImportExport/SeoPress/GeneralSettings.php', - 'AIOSEO\\Plugin\\Common\\ImportExport\\SeoPress\\Helpers' => $baseDir . '/app/Common/ImportExport/SeoPress/Helpers.php', - 'AIOSEO\\Plugin\\Common\\ImportExport\\SeoPress\\PostMeta' => $baseDir . '/app/Common/ImportExport/SeoPress/PostMeta.php', - 'AIOSEO\\Plugin\\Common\\ImportExport\\SeoPress\\RobotsTxt' => $baseDir . '/app/Common/ImportExport/SeoPress/RobotsTxt.php', - 'AIOSEO\\Plugin\\Common\\ImportExport\\SeoPress\\Rss' => $baseDir . '/app/Common/ImportExport/SeoPress/Rss.php', - 'AIOSEO\\Plugin\\Common\\ImportExport\\SeoPress\\SeoPress' => $baseDir . '/app/Common/ImportExport/SeoPress/SeoPress.php', - 'AIOSEO\\Plugin\\Common\\ImportExport\\SeoPress\\Sitemap' => $baseDir . '/app/Common/ImportExport/SeoPress/Sitemap.php', - 'AIOSEO\\Plugin\\Common\\ImportExport\\SeoPress\\SocialMeta' => $baseDir . '/app/Common/ImportExport/SeoPress/SocialMeta.php', - 'AIOSEO\\Plugin\\Common\\ImportExport\\SeoPress\\Titles' => $baseDir . '/app/Common/ImportExport/SeoPress/Titles.php', - 'AIOSEO\\Plugin\\Common\\ImportExport\\YoastSeo\\GeneralSettings' => $baseDir . '/app/Common/ImportExport/YoastSeo/GeneralSettings.php', - 'AIOSEO\\Plugin\\Common\\ImportExport\\YoastSeo\\Helpers' => $baseDir . '/app/Common/ImportExport/YoastSeo/Helpers.php', - 'AIOSEO\\Plugin\\Common\\ImportExport\\YoastSeo\\PostMeta' => $baseDir . '/app/Common/ImportExport/YoastSeo/PostMeta.php', - 'AIOSEO\\Plugin\\Common\\ImportExport\\YoastSeo\\SearchAppearance' => $baseDir . '/app/Common/ImportExport/YoastSeo/SearchAppearance.php', - 'AIOSEO\\Plugin\\Common\\ImportExport\\YoastSeo\\SocialMeta' => $baseDir . '/app/Common/ImportExport/YoastSeo/SocialMeta.php', - 'AIOSEO\\Plugin\\Common\\ImportExport\\YoastSeo\\UserMeta' => $baseDir . '/app/Common/ImportExport/YoastSeo/UserMeta.php', - 'AIOSEO\\Plugin\\Common\\ImportExport\\YoastSeo\\YoastSeo' => $baseDir . '/app/Common/ImportExport/YoastSeo/YoastSeo.php', - 'AIOSEO\\Plugin\\Common\\Integrations\\Semrush' => $baseDir . '/app/Common/Integrations/Semrush.php', - 'AIOSEO\\Plugin\\Common\\Integrations\\WpCode' => $baseDir . '/app/Common/Integrations/WpCode.php', - 'AIOSEO\\Plugin\\Common\\Main\\Activate' => $baseDir . '/app/Common/Main/Activate.php', - 'AIOSEO\\Plugin\\Common\\Main\\Filters' => $baseDir . '/app/Common/Main/Filters.php', - 'AIOSEO\\Plugin\\Common\\Main\\Head' => $baseDir . '/app/Common/Main/Head.php', - 'AIOSEO\\Plugin\\Common\\Main\\Main' => $baseDir . '/app/Common/Main/Main.php', - 'AIOSEO\\Plugin\\Common\\Main\\Media' => $baseDir . '/app/Common/Main/Media.php', - 'AIOSEO\\Plugin\\Common\\Main\\PreUpdates' => $baseDir . '/app/Common/Main/PreUpdates.php', - 'AIOSEO\\Plugin\\Common\\Main\\QueryArgs' => $baseDir . '/app/Common/Main/QueryArgs.php', - 'AIOSEO\\Plugin\\Common\\Main\\Title' => $baseDir . '/app/Common/Main/Title.php', - 'AIOSEO\\Plugin\\Common\\Main\\Updates' => $baseDir . '/app/Common/Main/Updates.php', - 'AIOSEO\\Plugin\\Common\\Meta\\Amp' => $baseDir . '/app/Common/Meta/Amp.php', - 'AIOSEO\\Plugin\\Common\\Meta\\Description' => $baseDir . '/app/Common/Meta/Description.php', - 'AIOSEO\\Plugin\\Common\\Meta\\Helpers' => $baseDir . '/app/Common/Meta/Helpers.php', - 'AIOSEO\\Plugin\\Common\\Meta\\Included' => $baseDir . '/app/Common/Meta/Included.php', - 'AIOSEO\\Plugin\\Common\\Meta\\Keywords' => $baseDir . '/app/Common/Meta/Keywords.php', - 'AIOSEO\\Plugin\\Common\\Meta\\Links' => $baseDir . '/app/Common/Meta/Links.php', - 'AIOSEO\\Plugin\\Common\\Meta\\Meta' => $baseDir . '/app/Common/Meta/Meta.php', - 'AIOSEO\\Plugin\\Common\\Meta\\MetaData' => $baseDir . '/app/Common/Meta/MetaData.php', - 'AIOSEO\\Plugin\\Common\\Meta\\Robots' => $baseDir . '/app/Common/Meta/Robots.php', - 'AIOSEO\\Plugin\\Common\\Meta\\SiteVerification' => $baseDir . '/app/Common/Meta/SiteVerification.php', - 'AIOSEO\\Plugin\\Common\\Meta\\Title' => $baseDir . '/app/Common/Meta/Title.php', - 'AIOSEO\\Plugin\\Common\\Migration\\BadRobots' => $baseDir . '/app/Common/Migration/BadRobots.php', - 'AIOSEO\\Plugin\\Common\\Migration\\GeneralSettings' => $baseDir . '/app/Common/Migration/GeneralSettings.php', - 'AIOSEO\\Plugin\\Common\\Migration\\Helpers' => $baseDir . '/app/Common/Migration/Helpers.php', - 'AIOSEO\\Plugin\\Common\\Migration\\Meta' => $baseDir . '/app/Common/Migration/Meta.php', - 'AIOSEO\\Plugin\\Common\\Migration\\Migration' => $baseDir . '/app/Common/Migration/Migration.php', - 'AIOSEO\\Plugin\\Common\\Migration\\OldOptions' => $baseDir . '/app/Common/Migration/OldOptions.php', - 'AIOSEO\\Plugin\\Common\\Migration\\RobotsTxt' => $baseDir . '/app/Common/Migration/RobotsTxt.php', - 'AIOSEO\\Plugin\\Common\\Migration\\Sitemap' => $baseDir . '/app/Common/Migration/Sitemap.php', - 'AIOSEO\\Plugin\\Common\\Migration\\SocialMeta' => $baseDir . '/app/Common/Migration/SocialMeta.php', - 'AIOSEO\\Plugin\\Common\\Migration\\Wpml' => $baseDir . '/app/Common/Migration/Wpml.php', - 'AIOSEO\\Plugin\\Common\\Models\\CrawlCleanupBlockedArg' => $baseDir . '/app/Common/Models/CrawlCleanupBlockedArg.php', - 'AIOSEO\\Plugin\\Common\\Models\\CrawlCleanupLog' => $baseDir . '/app/Common/Models/CrawlCleanupLog.php', - 'AIOSEO\\Plugin\\Common\\Models\\Model' => $baseDir . '/app/Common/Models/Model.php', - 'AIOSEO\\Plugin\\Common\\Models\\Notification' => $baseDir . '/app/Common/Models/Notification.php', - 'AIOSEO\\Plugin\\Common\\Models\\Post' => $baseDir . '/app/Common/Models/Post.php', - 'AIOSEO\\Plugin\\Common\\Options\\Cache' => $baseDir . '/app/Common/Options/Cache.php', - 'AIOSEO\\Plugin\\Common\\Options\\DynamicBackup' => $baseDir . '/app/Common/Options/DynamicBackup.php', - 'AIOSEO\\Plugin\\Common\\Options\\DynamicOptions' => $baseDir . '/app/Common/Options/DynamicOptions.php', - 'AIOSEO\\Plugin\\Common\\Options\\InternalNetworkOptions' => $baseDir . '/app/Common/Options/InternalNetworkOptions.php', - 'AIOSEO\\Plugin\\Common\\Options\\InternalOptions' => $baseDir . '/app/Common/Options/InternalOptions.php', - 'AIOSEO\\Plugin\\Common\\Options\\NetworkOptions' => $baseDir . '/app/Common/Options/NetworkOptions.php', - 'AIOSEO\\Plugin\\Common\\Options\\Options' => $baseDir . '/app/Common/Options/Options.php', - 'AIOSEO\\Plugin\\Common\\QueryArgs\\CrawlCleanup' => $baseDir . '/app/Common/QueryArgs/CrawlCleanup.php', - 'AIOSEO\\Plugin\\Common\\Rss' => $baseDir . '/app/Common/Rss.php', - 'AIOSEO\\Plugin\\Common\\Schema\\Breadcrumb' => $baseDir . '/app/Common/Schema/Breadcrumb.php', - 'AIOSEO\\Plugin\\Common\\Schema\\Context' => $baseDir . '/app/Common/Schema/Context.php', - 'AIOSEO\\Plugin\\Common\\Schema\\Graphs\\Article\\Article' => $baseDir . '/app/Common/Schema/Graphs/Article/Article.php', - 'AIOSEO\\Plugin\\Common\\Schema\\Graphs\\Article\\BlogPosting' => $baseDir . '/app/Common/Schema/Graphs/Article/BlogPosting.php', - 'AIOSEO\\Plugin\\Common\\Schema\\Graphs\\Article\\NewsArticle' => $baseDir . '/app/Common/Schema/Graphs/Article/NewsArticle.php', - 'AIOSEO\\Plugin\\Common\\Schema\\Graphs\\BreadcrumbList' => $baseDir . '/app/Common/Schema/Graphs/BreadcrumbList.php', - 'AIOSEO\\Plugin\\Common\\Schema\\Graphs\\Graph' => $baseDir . '/app/Common/Schema/Graphs/Graph.php', - 'AIOSEO\\Plugin\\Common\\Schema\\Graphs\\KnowledgeGraph\\KgOrganization' => $baseDir . '/app/Common/Schema/Graphs/KnowledgeGraph/KgOrganization.php', - 'AIOSEO\\Plugin\\Common\\Schema\\Graphs\\KnowledgeGraph\\KgPerson' => $baseDir . '/app/Common/Schema/Graphs/KnowledgeGraph/KgPerson.php', - 'AIOSEO\\Plugin\\Common\\Schema\\Graphs\\Traits\\Image' => $baseDir . '/app/Common/Schema/Graphs/Traits/Image.php', - 'AIOSEO\\Plugin\\Common\\Schema\\Graphs\\WebPage\\AboutPage' => $baseDir . '/app/Common/Schema/Graphs/WebPage/AboutPage.php', - 'AIOSEO\\Plugin\\Common\\Schema\\Graphs\\WebPage\\CollectionPage' => $baseDir . '/app/Common/Schema/Graphs/WebPage/CollectionPage.php', - 'AIOSEO\\Plugin\\Common\\Schema\\Graphs\\WebPage\\ContactPage' => $baseDir . '/app/Common/Schema/Graphs/WebPage/ContactPage.php', - 'AIOSEO\\Plugin\\Common\\Schema\\Graphs\\WebPage\\FAQPage' => $baseDir . '/app/Common/Schema/Graphs/WebPage/FAQPage.php', - 'AIOSEO\\Plugin\\Common\\Schema\\Graphs\\WebPage\\ItemPage' => $baseDir . '/app/Common/Schema/Graphs/WebPage/ItemPage.php', - 'AIOSEO\\Plugin\\Common\\Schema\\Graphs\\WebPage\\PersonAuthor' => $baseDir . '/app/Common/Schema/Graphs/WebPage/PersonAuthor.php', - 'AIOSEO\\Plugin\\Common\\Schema\\Graphs\\WebPage\\ProfilePage' => $baseDir . '/app/Common/Schema/Graphs/WebPage/ProfilePage.php', - 'AIOSEO\\Plugin\\Common\\Schema\\Graphs\\WebPage\\RealEstateListing' => $baseDir . '/app/Common/Schema/Graphs/WebPage/RealEstateListing.php', - 'AIOSEO\\Plugin\\Common\\Schema\\Graphs\\WebPage\\SearchResultsPage' => $baseDir . '/app/Common/Schema/Graphs/WebPage/SearchResultsPage.php', - 'AIOSEO\\Plugin\\Common\\Schema\\Graphs\\WebPage\\WebPage' => $baseDir . '/app/Common/Schema/Graphs/WebPage/WebPage.php', - 'AIOSEO\\Plugin\\Common\\Schema\\Graphs\\WebSite' => $baseDir . '/app/Common/Schema/Graphs/WebSite.php', - 'AIOSEO\\Plugin\\Common\\Schema\\Helpers' => $baseDir . '/app/Common/Schema/Helpers.php', - 'AIOSEO\\Plugin\\Common\\Schema\\Schema' => $baseDir . '/app/Common/Schema/Schema.php', - 'AIOSEO\\Plugin\\Common\\SearchStatistics\\SearchStatistics' => $baseDir . '/app/Common/SearchStatistics/SearchStatistics.php', - 'AIOSEO\\Plugin\\Common\\SeoRevisions\\SeoRevisions' => $baseDir . '/app/Common/SeoRevisions/SeoRevisions.php', - 'AIOSEO\\Plugin\\Common\\Sitemap\\Content' => $baseDir . '/app/Common/Sitemap/Content.php', - 'AIOSEO\\Plugin\\Common\\Sitemap\\File' => $baseDir . '/app/Common/Sitemap/File.php', - 'AIOSEO\\Plugin\\Common\\Sitemap\\Helpers' => $baseDir . '/app/Common/Sitemap/Helpers.php', - 'AIOSEO\\Plugin\\Common\\Sitemap\\Html\\Block' => $baseDir . '/app/Common/Sitemap/Html/Block.php', - 'AIOSEO\\Plugin\\Common\\Sitemap\\Html\\CompactArchive' => $baseDir . '/app/Common/Sitemap/Html/CompactArchive.php', - 'AIOSEO\\Plugin\\Common\\Sitemap\\Html\\Frontend' => $baseDir . '/app/Common/Sitemap/Html/Frontend.php', - 'AIOSEO\\Plugin\\Common\\Sitemap\\Html\\Query' => $baseDir . '/app/Common/Sitemap/Html/Query.php', - 'AIOSEO\\Plugin\\Common\\Sitemap\\Html\\Shortcode' => $baseDir . '/app/Common/Sitemap/Html/Shortcode.php', - 'AIOSEO\\Plugin\\Common\\Sitemap\\Html\\Sitemap' => $baseDir . '/app/Common/Sitemap/Html/Sitemap.php', - 'AIOSEO\\Plugin\\Common\\Sitemap\\Html\\Widget' => $baseDir . '/app/Common/Sitemap/Html/Widget.php', - 'AIOSEO\\Plugin\\Common\\Sitemap\\Image\\Image' => $baseDir . '/app/Common/Sitemap/Image/Image.php', - 'AIOSEO\\Plugin\\Common\\Sitemap\\Image\\ThirdParty' => $baseDir . '/app/Common/Sitemap/Image/ThirdParty.php', - 'AIOSEO\\Plugin\\Common\\Sitemap\\Localization' => $baseDir . '/app/Common/Sitemap/Localization.php', - 'AIOSEO\\Plugin\\Common\\Sitemap\\Output' => $baseDir . '/app/Common/Sitemap/Output.php', - 'AIOSEO\\Plugin\\Common\\Sitemap\\Ping' => $baseDir . '/app/Common/Sitemap/Ping.php', - 'AIOSEO\\Plugin\\Common\\Sitemap\\Priority' => $baseDir . '/app/Common/Sitemap/Priority.php', - 'AIOSEO\\Plugin\\Common\\Sitemap\\Query' => $baseDir . '/app/Common/Sitemap/Query.php', - 'AIOSEO\\Plugin\\Common\\Sitemap\\RequestParser' => $baseDir . '/app/Common/Sitemap/RequestParser.php', - 'AIOSEO\\Plugin\\Common\\Sitemap\\Root' => $baseDir . '/app/Common/Sitemap/Root.php', - 'AIOSEO\\Plugin\\Common\\Sitemap\\Sitemap' => $baseDir . '/app/Common/Sitemap/Sitemap.php', - 'AIOSEO\\Plugin\\Common\\Sitemap\\SitemapAbstract' => $baseDir . '/app/Common/Sitemap/SitemapAbstract.php', - 'AIOSEO\\Plugin\\Common\\Sitemap\\Xsl' => $baseDir . '/app/Common/Sitemap/Xsl.php', - 'AIOSEO\\Plugin\\Common\\Social\\Facebook' => $baseDir . '/app/Common/Social/Facebook.php', - 'AIOSEO\\Plugin\\Common\\Social\\Image' => $baseDir . '/app/Common/Social/Image.php', - 'AIOSEO\\Plugin\\Common\\Social\\Output' => $baseDir . '/app/Common/Social/Output.php', - 'AIOSEO\\Plugin\\Common\\Social\\Social' => $baseDir . '/app/Common/Social/Social.php', - 'AIOSEO\\Plugin\\Common\\Social\\Twitter' => $baseDir . '/app/Common/Social/Twitter.php', - 'AIOSEO\\Plugin\\Common\\Standalone\\Blocks\\Blocks' => $baseDir . '/app/Common/Standalone/Blocks/Blocks.php', - 'AIOSEO\\Plugin\\Common\\Standalone\\Blocks\\FaqPage' => $baseDir . '/app/Common/Standalone/Blocks/FaqPage.php', - 'AIOSEO\\Plugin\\Common\\Standalone\\Blocks\\TableOfContents' => $baseDir . '/app/Common/Standalone/Blocks/TableOfContents.php', - 'AIOSEO\\Plugin\\Common\\Standalone\\DetailsColumn' => $baseDir . '/app/Common/Standalone/DetailsColumn.php', - 'AIOSEO\\Plugin\\Common\\Standalone\\FlyoutMenu' => $baseDir . '/app/Common/Standalone/FlyoutMenu.php', - 'AIOSEO\\Plugin\\Common\\Standalone\\HeadlineAnalyzer' => $baseDir . '/app/Common/Standalone/HeadlineAnalyzer.php', - 'AIOSEO\\Plugin\\Common\\Standalone\\LimitModifiedDate' => $baseDir . '/app/Common/Standalone/LimitModifiedDate.php', - 'AIOSEO\\Plugin\\Common\\Standalone\\Notifications' => $baseDir . '/app/Common/Standalone/Notifications.php', - 'AIOSEO\\Plugin\\Common\\Standalone\\PageBuilders\\Avada' => $baseDir . '/app/Common/Standalone/PageBuilders/Avada.php', - 'AIOSEO\\Plugin\\Common\\Standalone\\PageBuilders\\Base' => $baseDir . '/app/Common/Standalone/PageBuilders/Base.php', - 'AIOSEO\\Plugin\\Common\\Standalone\\PageBuilders\\Divi' => $baseDir . '/app/Common/Standalone/PageBuilders/Divi.php', - 'AIOSEO\\Plugin\\Common\\Standalone\\PageBuilders\\Elementor' => $baseDir . '/app/Common/Standalone/PageBuilders/Elementor.php', - 'AIOSEO\\Plugin\\Common\\Standalone\\PageBuilders\\SeedProd' => $baseDir . '/app/Common/Standalone/PageBuilders/SeedProd.php', - 'AIOSEO\\Plugin\\Common\\Standalone\\PageBuilders\\WPBakery' => $baseDir . '/app/Common/Standalone/PageBuilders/WPBakery.php', - 'AIOSEO\\Plugin\\Common\\Standalone\\PrimaryTerm' => $baseDir . '/app/Common/Standalone/PrimaryTerm.php', - 'AIOSEO\\Plugin\\Common\\Standalone\\PublishPanel' => $baseDir . '/app/Common/Standalone/PublishPanel.php', - 'AIOSEO\\Plugin\\Common\\Standalone\\SeoPreview' => $baseDir . '/app/Common/Standalone/SeoPreview.php', - 'AIOSEO\\Plugin\\Common\\Standalone\\SetupWizard' => $baseDir . '/app/Common/Standalone/SetupWizard.php', - 'AIOSEO\\Plugin\\Common\\Standalone\\Standalone' => $baseDir . '/app/Common/Standalone/Standalone.php', - 'AIOSEO\\Plugin\\Common\\Standalone\\UserProfileTab' => $baseDir . '/app/Common/Standalone/UserProfileTab.php', - 'AIOSEO\\Plugin\\Common\\Standalone\\WpCode' => $baseDir . '/app/Common/Standalone/WpCode.php', - 'AIOSEO\\Plugin\\Common\\Tools\\BadBotBlocker' => $baseDir . '/app/Common/Tools/BadBotBlocker.php', - 'AIOSEO\\Plugin\\Common\\Tools\\Htaccess' => $baseDir . '/app/Common/Tools/Htaccess.php', - 'AIOSEO\\Plugin\\Common\\Tools\\RobotsTxt' => $baseDir . '/app/Common/Tools/RobotsTxt.php', - 'AIOSEO\\Plugin\\Common\\Tools\\SystemStatus' => $baseDir . '/app/Common/Tools/SystemStatus.php', - 'AIOSEO\\Plugin\\Common\\Traits\\Assets' => $baseDir . '/app/Common/Traits/Assets.php', - 'AIOSEO\\Plugin\\Common\\Traits\\Helpers\\Api' => $baseDir . '/app/Common/Traits/Helpers/Api.php', - 'AIOSEO\\Plugin\\Common\\Traits\\Helpers\\Arrays' => $baseDir . '/app/Common/Traits/Helpers/Arrays.php', - 'AIOSEO\\Plugin\\Common\\Traits\\Helpers\\Constants' => $baseDir . '/app/Common/Traits/Helpers/Constants.php', - 'AIOSEO\\Plugin\\Common\\Traits\\Helpers\\DateTime' => $baseDir . '/app/Common/Traits/Helpers/DateTime.php', - 'AIOSEO\\Plugin\\Common\\Traits\\Helpers\\Deprecated' => $baseDir . '/app/Common/Traits/Helpers/Deprecated.php', - 'AIOSEO\\Plugin\\Common\\Traits\\Helpers\\Language' => $baseDir . '/app/Common/Traits/Helpers/Language.php', - 'AIOSEO\\Plugin\\Common\\Traits\\Helpers\\PostType' => $baseDir . '/app/Common/Traits/Helpers/PostType.php', - 'AIOSEO\\Plugin\\Common\\Traits\\Helpers\\Request' => $baseDir . '/app/Common/Traits/Helpers/Request.php', - 'AIOSEO\\Plugin\\Common\\Traits\\Helpers\\Shortcodes' => $baseDir . '/app/Common/Traits/Helpers/Shortcodes.php', - 'AIOSEO\\Plugin\\Common\\Traits\\Helpers\\Strings' => $baseDir . '/app/Common/Traits/Helpers/Strings.php', - 'AIOSEO\\Plugin\\Common\\Traits\\Helpers\\Svg' => $baseDir . '/app/Common/Traits/Helpers/Svg.php', - 'AIOSEO\\Plugin\\Common\\Traits\\Helpers\\ThirdParty' => $baseDir . '/app/Common/Traits/Helpers/ThirdParty.php', - 'AIOSEO\\Plugin\\Common\\Traits\\Helpers\\Url' => $baseDir . '/app/Common/Traits/Helpers/Url.php', - 'AIOSEO\\Plugin\\Common\\Traits\\Helpers\\Vue' => $baseDir . '/app/Common/Traits/Helpers/Vue.php', - 'AIOSEO\\Plugin\\Common\\Traits\\Helpers\\Wp' => $baseDir . '/app/Common/Traits/Helpers/Wp.php', - 'AIOSEO\\Plugin\\Common\\Traits\\Helpers\\WpContext' => $baseDir . '/app/Common/Traits/Helpers/WpContext.php', - 'AIOSEO\\Plugin\\Common\\Traits\\Helpers\\WpMultisite' => $baseDir . '/app/Common/Traits/Helpers/WpMultisite.php', - 'AIOSEO\\Plugin\\Common\\Traits\\Helpers\\WpUri' => $baseDir . '/app/Common/Traits/Helpers/WpUri.php', - 'AIOSEO\\Plugin\\Common\\Traits\\NetworkOptions' => $baseDir . '/app/Common/Traits/NetworkOptions.php', - 'AIOSEO\\Plugin\\Common\\Traits\\Options' => $baseDir . '/app/Common/Traits/Options.php', - 'AIOSEO\\Plugin\\Common\\Traits\\SocialProfiles' => $baseDir . '/app/Common/Traits/SocialProfiles.php', - 'AIOSEO\\Plugin\\Common\\Utils\\Access' => $baseDir . '/app/Common/Utils/Access.php', - 'AIOSEO\\Plugin\\Common\\Utils\\ActionScheduler' => $baseDir . '/app/Common/Utils/ActionScheduler.php', - 'AIOSEO\\Plugin\\Common\\Utils\\Addons' => $baseDir . '/app/Common/Utils/Addons.php', - 'AIOSEO\\Plugin\\Common\\Utils\\Assets' => $baseDir . '/app/Common/Utils/Assets.php', - 'AIOSEO\\Plugin\\Common\\Utils\\Backup' => $baseDir . '/app/Common/Utils/Backup.php', - 'AIOSEO\\Plugin\\Common\\Utils\\Blocks' => $baseDir . '/app/Common/Utils/Blocks.php', - 'AIOSEO\\Plugin\\Common\\Utils\\Cache' => $baseDir . '/app/Common/Utils/Cache.php', - 'AIOSEO\\Plugin\\Common\\Utils\\CachePrune' => $baseDir . '/app/Common/Utils/CachePrune.php', - 'AIOSEO\\Plugin\\Common\\Utils\\Database' => $baseDir . '/app/Common/Utils/Database.php', - 'AIOSEO\\Plugin\\Common\\Utils\\Features' => $baseDir . '/app/Common/Utils/Features.php', - 'AIOSEO\\Plugin\\Common\\Utils\\Filesystem' => $baseDir . '/app/Common/Utils/Filesystem.php', - 'AIOSEO\\Plugin\\Common\\Utils\\Helpers' => $baseDir . '/app/Common/Utils/Helpers.php', - 'AIOSEO\\Plugin\\Common\\Utils\\NetworkCache' => $baseDir . '/app/Common/Utils/NetworkCache.php', - 'AIOSEO\\Plugin\\Common\\Utils\\PluginUpgraderSilentAjax' => $baseDir . '/app/Common/Utils/PluginUpgraderSilentAjax.php', - 'AIOSEO\\Plugin\\Common\\Utils\\PluginUpgraderSkin' => $baseDir . '/app/Common/Utils/PluginUpgraderSkin.php', - 'AIOSEO\\Plugin\\Common\\Utils\\Tags' => $baseDir . '/app/Common/Utils/Tags.php', - 'AIOSEO\\Plugin\\Common\\Utils\\Templates' => $baseDir . '/app/Common/Utils/Templates.php', - 'AIOSEO\\Plugin\\Common\\Utils\\VueSettings' => $baseDir . '/app/Common/Utils/VueSettings.php', - 'AIOSEO\\Plugin\\Lite\\Admin\\Admin' => $baseDir . '/app/Lite/Admin/Admin.php', - 'AIOSEO\\Plugin\\Lite\\Admin\\Connect' => $baseDir . '/app/Lite/Admin/Connect.php', - 'AIOSEO\\Plugin\\Lite\\Admin\\Notices\\Notices' => $baseDir . '/app/Lite/Admin/Notices/Notices.php', - 'AIOSEO\\Plugin\\Lite\\Admin\\PostSettings' => $baseDir . '/app/Lite/Admin/PostSettings.php', - 'AIOSEO\\Plugin\\Lite\\Admin\\Usage' => $baseDir . '/app/Lite/Admin/Usage.php', - 'AIOSEO\\Plugin\\Lite\\Api\\Api' => $baseDir . '/app/Lite/Api/Api.php', - 'AIOSEO\\Plugin\\Lite\\Api\\Wizard' => $baseDir . '/app/Lite/Api/Wizard.php', - 'AIOSEO\\Plugin\\Lite\\Main\\Filters' => $baseDir . '/app/Lite/Main/Filters.php', - 'AIOSEO\\Plugin\\Lite\\Options\\InternalOptions' => $baseDir . '/app/Lite/Options/InternalOptions.php', - 'AIOSEO\\Plugin\\Lite\\Options\\Options' => $baseDir . '/app/Lite/Options/Options.php', - 'AIOSEO\\Plugin\\Lite\\Traits\\Options' => $baseDir . '/app/Lite/Traits/Options.php', - 'AIOSEO\\Plugin\\Lite\\Utils\\Helpers' => $baseDir . '/app/Lite/Utils/Helpers.php', - 'AIOSEO\\Plugin\\Pro\\Admin\\Admin' => $baseDir . '/app/Pro/Admin/Admin.php', - 'AIOSEO\\Plugin\\Pro\\Admin\\AutoUpdates' => $baseDir . '/app/Pro/Admin/AutoUpdates.php', - 'AIOSEO\\Plugin\\Pro\\Admin\\ConflictingPlugins' => $baseDir . '/app/Pro/Admin/ConflictingPlugins.php', - 'AIOSEO\\Plugin\\Pro\\Admin\\CornerstoneContent' => $baseDir . '/app/Pro/Admin/CornerstoneContent.php', - 'AIOSEO\\Plugin\\Pro\\Admin\\Dashboard' => $baseDir . '/app/Pro/Admin/Dashboard.php', - 'AIOSEO\\Plugin\\Pro\\Admin\\License' => $baseDir . '/app/Pro/Admin/License.php', - 'AIOSEO\\Plugin\\Pro\\Admin\\NetworkAdmin' => $baseDir . '/app/Pro/Admin/NetworkAdmin.php', - 'AIOSEO\\Plugin\\Pro\\Admin\\NetworkLicense' => $baseDir . '/app/Pro/Admin/NetworkLicense.php', - 'AIOSEO\\Plugin\\Pro\\Admin\\Notices\\Notices' => $baseDir . '/app/Pro/Admin/Notices/Notices.php', - 'AIOSEO\\Plugin\\Pro\\Admin\\PostSettings' => $baseDir . '/app/Pro/Admin/PostSettings.php', - 'AIOSEO\\Plugin\\Pro\\Admin\\SiteHealth' => $baseDir . '/app/Pro/Admin/SiteHealth.php', - 'AIOSEO\\Plugin\\Pro\\Admin\\Term' => $baseDir . '/app/Pro/Admin/Term.php', - 'AIOSEO\\Plugin\\Pro\\Admin\\Updates' => $baseDir . '/app/Pro/Admin/Updates.php', - 'AIOSEO\\Plugin\\Pro\\Admin\\Usage' => $baseDir . '/app/Pro/Admin/Usage.php', - 'AIOSEO\\Plugin\\Pro\\Ai\\Ai' => $baseDir . '/app/Pro/Ai/Ai.php', - 'AIOSEO\\Plugin\\Pro\\Api\\Ai' => $baseDir . '/app/Pro/Api/Ai.php', - 'AIOSEO\\Plugin\\Pro\\Api\\Api' => $baseDir . '/app/Pro/Api/Api.php', - 'AIOSEO\\Plugin\\Pro\\Api\\License' => $baseDir . '/app/Pro/Api/License.php', - 'AIOSEO\\Plugin\\Pro\\Api\\Network' => $baseDir . '/app/Pro/Api/Network.php', - 'AIOSEO\\Plugin\\Pro\\Api\\Notifications' => $baseDir . '/app/Pro/Api/Notifications.php', - 'AIOSEO\\Plugin\\Pro\\Api\\PostsTerms' => $baseDir . '/app/Pro/Api/PostsTerms.php', - 'AIOSEO\\Plugin\\Pro\\Api\\Schema' => $baseDir . '/app/Pro/Api/Schema.php', - 'AIOSEO\\Plugin\\Pro\\Api\\SearchStatistics' => $baseDir . '/app/Pro/Api/SearchStatistics.php', - 'AIOSEO\\Plugin\\Pro\\Api\\SeoRevisions' => $baseDir . '/app/Pro/Api/SeoRevisions.php', - 'AIOSEO\\Plugin\\Pro\\Api\\Settings' => $baseDir . '/app/Pro/Api/Settings.php', - 'AIOSEO\\Plugin\\Pro\\Api\\Sitemaps' => $baseDir . '/app/Pro/Api/Sitemaps.php', - 'AIOSEO\\Plugin\\Pro\\Api\\Tools' => $baseDir . '/app/Pro/Api/Tools.php', - 'AIOSEO\\Plugin\\Pro\\Api\\Wizard' => $baseDir . '/app/Pro/Api/Wizard.php', - 'AIOSEO\\Plugin\\Pro\\Breadcrumbs\\Breadcrumbs' => $baseDir . '/app/Pro/Breadcrumbs/Breadcrumbs.php', - 'AIOSEO\\Plugin\\Pro\\Breadcrumbs\\Frontend' => $baseDir . '/app/Pro/Breadcrumbs/Frontend.php', - 'AIOSEO\\Plugin\\Pro\\ImportExport\\ImportExport' => $baseDir . '/app/Pro/ImportExport/ImportExport.php', - 'AIOSEO\\Plugin\\Pro\\ImportExport\\RankMath\\GeneralSettings' => $baseDir . '/app/Pro/ImportExport/RankMath/GeneralSettings.php', - 'AIOSEO\\Plugin\\Pro\\ImportExport\\RankMath\\RankMath' => $baseDir . '/app/Pro/ImportExport/RankMath/RankMath.php', - 'AIOSEO\\Plugin\\Pro\\ImportExport\\RankMath\\TermMeta' => $baseDir . '/app/Pro/ImportExport/RankMath/TermMeta.php', - 'AIOSEO\\Plugin\\Pro\\ImportExport\\RankMath\\TitleMeta' => $baseDir . '/app/Pro/ImportExport/RankMath/TitleMeta.php', - 'AIOSEO\\Plugin\\Pro\\ImportExport\\SeoPress\\Breadcrumbs' => $baseDir . '/app/Pro/ImportExport/SeoPress/Breadcrumbs.php', - 'AIOSEO\\Plugin\\Pro\\ImportExport\\SeoPress\\NewsSitemap' => $baseDir . '/app/Pro/ImportExport/SeoPress/NewsSitemap.php', - 'AIOSEO\\Plugin\\Pro\\ImportExport\\SeoPress\\PostMeta' => $baseDir . '/app/Pro/ImportExport/SeoPress/PostMeta.php', - 'AIOSEO\\Plugin\\Pro\\ImportExport\\SeoPress\\SeoPress' => $baseDir . '/app/Pro/ImportExport/SeoPress/SeoPress.php', - 'AIOSEO\\Plugin\\Pro\\ImportExport\\SeoPress\\TermMeta' => $baseDir . '/app/Pro/ImportExport/SeoPress/TermMeta.php', - 'AIOSEO\\Plugin\\Pro\\ImportExport\\SeoPress\\VideoSitemap' => $baseDir . '/app/Pro/ImportExport/SeoPress/VideoSitemap.php', - 'AIOSEO\\Plugin\\Pro\\ImportExport\\YoastSeo\\GeneralSettings' => $baseDir . '/app/Pro/ImportExport/YoastSeo/GeneralSettings.php', - 'AIOSEO\\Plugin\\Pro\\ImportExport\\YoastSeo\\NewsSitemap' => $baseDir . '/app/Pro/ImportExport/YoastSeo/NewsSitemap.php', - 'AIOSEO\\Plugin\\Pro\\ImportExport\\YoastSeo\\SearchAppearance' => $baseDir . '/app/Pro/ImportExport/YoastSeo/SearchAppearance.php', - 'AIOSEO\\Plugin\\Pro\\ImportExport\\YoastSeo\\SocialMeta' => $baseDir . '/app/Pro/ImportExport/YoastSeo/SocialMeta.php', - 'AIOSEO\\Plugin\\Pro\\ImportExport\\YoastSeo\\TermMeta' => $baseDir . '/app/Pro/ImportExport/YoastSeo/TermMeta.php', - 'AIOSEO\\Plugin\\Pro\\ImportExport\\YoastSeo\\VideoSitemap' => $baseDir . '/app/Pro/ImportExport/YoastSeo/VideoSitemap.php', - 'AIOSEO\\Plugin\\Pro\\ImportExport\\YoastSeo\\YoastSeo' => $baseDir . '/app/Pro/ImportExport/YoastSeo/YoastSeo.php', - 'AIOSEO\\Plugin\\Pro\\Main\\Activate' => $baseDir . '/app/Pro/Main/Activate.php', - 'AIOSEO\\Plugin\\Pro\\Main\\CategoryBase' => $baseDir . '/app/Pro/Main/CategoryBase.php', - 'AIOSEO\\Plugin\\Pro\\Main\\Filters' => $baseDir . '/app/Pro/Main/Filters.php', - 'AIOSEO\\Plugin\\Pro\\Main\\GoogleAnalytics' => $baseDir . '/app/Pro/Main/GoogleAnalytics.php', - 'AIOSEO\\Plugin\\Pro\\Main\\Head' => $baseDir . '/app/Pro/Main/Head.php', - 'AIOSEO\\Plugin\\Pro\\Main\\Main' => $baseDir . '/app/Pro/Main/Main.php', - 'AIOSEO\\Plugin\\Pro\\Main\\PreUpdates' => $baseDir . '/app/Pro/Main/PreUpdates.php', - 'AIOSEO\\Plugin\\Pro\\Main\\Translations' => $baseDir . '/app/Pro/Main/Translations.php', - 'AIOSEO\\Plugin\\Pro\\Main\\Updates' => $baseDir . '/app/Pro/Main/Updates.php', - 'AIOSEO\\Plugin\\Pro\\Meta\\Description' => $baseDir . '/app/Pro/Meta/Description.php', - 'AIOSEO\\Plugin\\Pro\\Meta\\Included' => $baseDir . '/app/Pro/Meta/Included.php', - 'AIOSEO\\Plugin\\Pro\\Meta\\Keywords' => $baseDir . '/app/Pro/Meta/Keywords.php', - 'AIOSEO\\Plugin\\Pro\\Meta\\Meta' => $baseDir . '/app/Pro/Meta/Meta.php', - 'AIOSEO\\Plugin\\Pro\\Meta\\MetaData' => $baseDir . '/app/Pro/Meta/MetaData.php', - 'AIOSEO\\Plugin\\Pro\\Meta\\Robots' => $baseDir . '/app/Pro/Meta/Robots.php', - 'AIOSEO\\Plugin\\Pro\\Meta\\Title' => $baseDir . '/app/Pro/Meta/Title.php', - 'AIOSEO\\Plugin\\Pro\\Migration\\GeneralSettings' => $baseDir . '/app/Pro/Migration/GeneralSettings.php', - 'AIOSEO\\Plugin\\Pro\\Migration\\ImageSeo' => $baseDir . '/app/Pro/Migration/ImageSeo.php', - 'AIOSEO\\Plugin\\Pro\\Migration\\LocalBusiness' => $baseDir . '/app/Pro/Migration/LocalBusiness.php', - 'AIOSEO\\Plugin\\Pro\\Migration\\Meta' => $baseDir . '/app/Pro/Migration/Meta.php', - 'AIOSEO\\Plugin\\Pro\\Migration\\Migration' => $baseDir . '/app/Pro/Migration/Migration.php', - 'AIOSEO\\Plugin\\Pro\\Migration\\OldOptions' => $baseDir . '/app/Pro/Migration/OldOptions.php', - 'AIOSEO\\Plugin\\Pro\\Migration\\Sitemap' => $baseDir . '/app/Pro/Migration/Sitemap.php', - 'AIOSEO\\Plugin\\Pro\\Migration\\VideoSitemap' => $baseDir . '/app/Pro/Migration/VideoSitemap.php', - 'AIOSEO\\Plugin\\Pro\\Models\\SearchStatistics\\WpObject' => $baseDir . '/app/Pro/Models/SearchStatistics/WpObject.php', - 'AIOSEO\\Plugin\\Pro\\Models\\SeoRevision' => $baseDir . '/app/Pro/Models/SeoRevision.php', - 'AIOSEO\\Plugin\\Pro\\Models\\Term' => $baseDir . '/app/Pro/Models/Term.php', - 'AIOSEO\\Plugin\\Pro\\Options\\DynamicBackup' => $baseDir . '/app/Pro/Options/DynamicBackup.php', - 'AIOSEO\\Plugin\\Pro\\Options\\DynamicOptions' => $baseDir . '/app/Pro/Options/DynamicOptions.php', - 'AIOSEO\\Plugin\\Pro\\Options\\InternalNetworkOptions' => $baseDir . '/app/Pro/Options/InternalNetworkOptions.php', - 'AIOSEO\\Plugin\\Pro\\Options\\InternalOptions' => $baseDir . '/app/Pro/Options/InternalOptions.php', - 'AIOSEO\\Plugin\\Pro\\Options\\NetworkOptions' => $baseDir . '/app/Pro/Options/NetworkOptions.php', - 'AIOSEO\\Plugin\\Pro\\Options\\Options' => $baseDir . '/app/Pro/Options/Options.php', - 'AIOSEO\\Plugin\\Pro\\Schema\\Graphs\\Book' => $baseDir . '/app/Pro/Schema/Graphs/Book.php', - 'AIOSEO\\Plugin\\Pro\\Schema\\Graphs\\Course' => $baseDir . '/app/Pro/Schema/Graphs/Course.php', - 'AIOSEO\\Plugin\\Pro\\Schema\\Graphs\\Dataset' => $baseDir . '/app/Pro/Schema/Graphs/Dataset.php', - 'AIOSEO\\Plugin\\Pro\\Schema\\Graphs\\Event' => $baseDir . '/app/Pro/Schema/Graphs/Event.php', - 'AIOSEO\\Plugin\\Pro\\Schema\\Graphs\\FAQPage' => $baseDir . '/app/Pro/Schema/Graphs/FAQPage.php', - 'AIOSEO\\Plugin\\Pro\\Schema\\Graphs\\FactCheck' => $baseDir . '/app/Pro/Schema/Graphs/FactCheck.php', - 'AIOSEO\\Plugin\\Pro\\Schema\\Graphs\\HowTo' => $baseDir . '/app/Pro/Schema/Graphs/HowTo.php', - 'AIOSEO\\Plugin\\Pro\\Schema\\Graphs\\JobPosting' => $baseDir . '/app/Pro/Schema/Graphs/JobPosting.php', - 'AIOSEO\\Plugin\\Pro\\Schema\\Graphs\\Movie' => $baseDir . '/app/Pro/Schema/Graphs/Movie.php', - 'AIOSEO\\Plugin\\Pro\\Schema\\Graphs\\Music\\Music' => $baseDir . '/app/Pro/Schema/Graphs/Music/Music.php', - 'AIOSEO\\Plugin\\Pro\\Schema\\Graphs\\Music\\MusicAlbum' => $baseDir . '/app/Pro/Schema/Graphs/Music/MusicAlbum.php', - 'AIOSEO\\Plugin\\Pro\\Schema\\Graphs\\Music\\MusicGroup' => $baseDir . '/app/Pro/Schema/Graphs/Music/MusicGroup.php', - 'AIOSEO\\Plugin\\Pro\\Schema\\Graphs\\Person' => $baseDir . '/app/Pro/Schema/Graphs/Person.php', - 'AIOSEO\\Plugin\\Pro\\Schema\\Graphs\\Product\\EddProduct' => $baseDir . '/app/Pro/Schema/Graphs/Product/EddProduct.php', - 'AIOSEO\\Plugin\\Pro\\Schema\\Graphs\\Product\\Product' => $baseDir . '/app/Pro/Schema/Graphs/Product/Product.php', - 'AIOSEO\\Plugin\\Pro\\Schema\\Graphs\\Product\\WooCommerceProduct' => $baseDir . '/app/Pro/Schema/Graphs/Product/WooCommerceProduct.php', - 'AIOSEO\\Plugin\\Pro\\Schema\\Graphs\\Recipe' => $baseDir . '/app/Pro/Schema/Graphs/Recipe.php', - 'AIOSEO\\Plugin\\Pro\\Schema\\Graphs\\Service' => $baseDir . '/app/Pro/Schema/Graphs/Service.php', - 'AIOSEO\\Plugin\\Pro\\Schema\\Graphs\\SoftwareApplication' => $baseDir . '/app/Pro/Schema/Graphs/SoftwareApplication.php', - 'AIOSEO\\Plugin\\Pro\\Schema\\Graphs\\Video' => $baseDir . '/app/Pro/Schema/Graphs/Video.php', - 'AIOSEO\\Plugin\\Pro\\Schema\\Schema' => $baseDir . '/app/Pro/Schema/Schema.php', - 'AIOSEO\\Plugin\\Pro\\SearchStatistics\\Api\\Api' => $baseDir . '/app/Pro/SearchStatistics/Api/Api.php', - 'AIOSEO\\Plugin\\Pro\\SearchStatistics\\Api\\Auth' => $baseDir . '/app/Pro/SearchStatistics/Api/Auth.php', - 'AIOSEO\\Plugin\\Pro\\SearchStatistics\\Api\\Listener' => $baseDir . '/app/Pro/SearchStatistics/Api/Listener.php', - 'AIOSEO\\Plugin\\Pro\\SearchStatistics\\Api\\Request' => $baseDir . '/app/Pro/SearchStatistics/Api/Request.php', - 'AIOSEO\\Plugin\\Pro\\SearchStatistics\\Api\\TrustToken' => $baseDir . '/app/Pro/SearchStatistics/Api/TrustToken.php', - 'AIOSEO\\Plugin\\Pro\\SearchStatistics\\Helpers' => $baseDir . '/app/Pro/SearchStatistics/Helpers.php', - 'AIOSEO\\Plugin\\Pro\\SearchStatistics\\Markers' => $baseDir . '/app/Pro/SearchStatistics/Markers.php', - 'AIOSEO\\Plugin\\Pro\\SearchStatistics\\Objects' => $baseDir . '/app/Pro/SearchStatistics/Objects.php', - 'AIOSEO\\Plugin\\Pro\\SearchStatistics\\PageSpeed' => $baseDir . '/app/Pro/SearchStatistics/PageSpeed.php', - 'AIOSEO\\Plugin\\Pro\\SearchStatistics\\SearchStatistics' => $baseDir . '/app/Pro/SearchStatistics/SearchStatistics.php', - 'AIOSEO\\Plugin\\Pro\\SearchStatistics\\Stats\\Keywords' => $baseDir . '/app/Pro/SearchStatistics/Stats/Keywords.php', - 'AIOSEO\\Plugin\\Pro\\SearchStatistics\\Stats\\Posts' => $baseDir . '/app/Pro/SearchStatistics/Stats/Posts.php', - 'AIOSEO\\Plugin\\Pro\\SearchStatistics\\Stats\\Stats' => $baseDir . '/app/Pro/SearchStatistics/Stats/Stats.php', - 'AIOSEO\\Plugin\\Pro\\SearchStatistics\\UrlInspection' => $baseDir . '/app/Pro/SearchStatistics/UrlInspection.php', - 'AIOSEO\\Plugin\\Pro\\SeoRevisions\\Helpers' => $baseDir . '/app/Pro/SeoRevisions/Helpers.php', - 'AIOSEO\\Plugin\\Pro\\SeoRevisions\\ObjectRevisions' => $baseDir . '/app/Pro/SeoRevisions/ObjectRevisions.php', - 'AIOSEO\\Plugin\\Pro\\SeoRevisions\\SeoRevisions' => $baseDir . '/app/Pro/SeoRevisions/SeoRevisions.php', - 'AIOSEO\\Plugin\\Pro\\SeoRevisions\\TextDiffRendererTable' => $baseDir . '/app/Pro/SeoRevisions/TextDiffRendererTable.php', - 'AIOSEO\\Plugin\\Pro\\Sitemap\\Helpers' => $baseDir . '/app/Pro/Sitemap/Helpers.php', - 'AIOSEO\\Plugin\\Pro\\Sitemap\\Priority' => $baseDir . '/app/Pro/Sitemap/Priority.php', - 'AIOSEO\\Plugin\\Pro\\Sitemap\\Query' => $baseDir . '/app/Pro/Sitemap/Query.php', - 'AIOSEO\\Plugin\\Pro\\Sitemap\\RequestParser' => $baseDir . '/app/Pro/Sitemap/RequestParser.php', - 'AIOSEO\\Plugin\\Pro\\Sitemap\\Sitemap' => $baseDir . '/app/Pro/Sitemap/Sitemap.php', - 'AIOSEO\\Plugin\\Pro\\Social\\Facebook' => $baseDir . '/app/Pro/Social/Facebook.php', - 'AIOSEO\\Plugin\\Pro\\Social\\Image' => $baseDir . '/app/Pro/Social/Image.php', - 'AIOSEO\\Plugin\\Pro\\Social\\Output' => $baseDir . '/app/Pro/Social/Output.php', - 'AIOSEO\\Plugin\\Pro\\Social\\Social' => $baseDir . '/app/Pro/Social/Social.php', - 'AIOSEO\\Plugin\\Pro\\Social\\Twitter' => $baseDir . '/app/Pro/Social/Twitter.php', - 'AIOSEO\\Plugin\\Pro\\Standalone\\DetailsColumn' => $baseDir . '/app/Pro/Standalone/DetailsColumn.php', - 'AIOSEO\\Plugin\\Pro\\Standalone\\PrimaryTerm' => $baseDir . '/app/Pro/Standalone/PrimaryTerm.php', - 'AIOSEO\\Plugin\\Pro\\Traits\\Helpers\\ThirdParty' => $baseDir . '/app/Pro/Traits/Helpers/ThirdParty.php', - 'AIOSEO\\Plugin\\Pro\\Traits\\Helpers\\Vue' => $baseDir . '/app/Pro/Traits/Helpers/Vue.php', - 'AIOSEO\\Plugin\\Pro\\Traits\\NetworkOptions' => $baseDir . '/app/Pro/Traits/NetworkOptions.php', - 'AIOSEO\\Plugin\\Pro\\Traits\\Options' => $baseDir . '/app/Pro/Traits/Options.php', - 'AIOSEO\\Plugin\\Pro\\Traits\\Updates' => $baseDir . '/app/Pro/Traits/Updates.php', - 'AIOSEO\\Plugin\\Pro\\Utils\\Access' => $baseDir . '/app/Pro/Utils/Access.php', - 'AIOSEO\\Plugin\\Pro\\Utils\\Addons' => $baseDir . '/app/Pro/Utils/Addons.php', - 'AIOSEO\\Plugin\\Pro\\Utils\\Features' => $baseDir . '/app/Pro/Utils/Features.php', - 'AIOSEO\\Plugin\\Pro\\Utils\\Helpers' => $baseDir . '/app/Pro/Utils/Helpers.php', - 'AIOSEO\\Plugin\\Pro\\Utils\\Tags' => $baseDir . '/app/Pro/Utils/Tags.php', - 'AIOSEO\\Plugin\\Pro\\Utils\\Templates' => $baseDir . '/app/Pro/Utils/Templates.php', 'AIOSEO\\Vendor\\Monolog\\ErrorHandler' => $baseDir . '/vendor_prefixed/monolog/monolog/src/Monolog/ErrorHandler.php', 'AIOSEO\\Vendor\\Monolog\\Formatter\\ChromePHPFormatter' => $baseDir . '/vendor_prefixed/monolog/monolog/src/Monolog/Formatter/ChromePHPFormatter.php', 'AIOSEO\\Vendor\\Monolog\\Formatter\\ElasticaFormatter' => $baseDir . '/vendor_prefixed/monolog/monolog/src/Monolog/Formatter/ElasticaFormatter.php', @@ -505,63 +116,8 @@ 'AIOSEO\\Vendor\\Psr\\Log\\Test\\TestLogger' => $baseDir . '/vendor_prefixed/psr/log/Psr/Log/Test/TestLogger.php', 'Attribute' => $vendorDir . '/symfony/polyfill-php80/Resources/stubs/Attribute.php', 'Composer\\InstalledVersions' => $vendorDir . '/composer/InstalledVersions.php', - 'Dotenv\\Dotenv' => $vendorDir . '/vlucas/phpdotenv/src/Dotenv.php', - 'Dotenv\\Exception\\ExceptionInterface' => $vendorDir . '/vlucas/phpdotenv/src/Exception/ExceptionInterface.php', - 'Dotenv\\Exception\\InvalidEncodingException' => $vendorDir . '/vlucas/phpdotenv/src/Exception/InvalidEncodingException.php', - 'Dotenv\\Exception\\InvalidFileException' => $vendorDir . '/vlucas/phpdotenv/src/Exception/InvalidFileException.php', - 'Dotenv\\Exception\\InvalidPathException' => $vendorDir . '/vlucas/phpdotenv/src/Exception/InvalidPathException.php', - 'Dotenv\\Exception\\ValidationException' => $vendorDir . '/vlucas/phpdotenv/src/Exception/ValidationException.php', - 'Dotenv\\Loader\\Loader' => $vendorDir . '/vlucas/phpdotenv/src/Loader/Loader.php', - 'Dotenv\\Loader\\LoaderInterface' => $vendorDir . '/vlucas/phpdotenv/src/Loader/LoaderInterface.php', - 'Dotenv\\Loader\\Resolver' => $vendorDir . '/vlucas/phpdotenv/src/Loader/Resolver.php', - 'Dotenv\\Parser\\Entry' => $vendorDir . '/vlucas/phpdotenv/src/Parser/Entry.php', - 'Dotenv\\Parser\\EntryParser' => $vendorDir . '/vlucas/phpdotenv/src/Parser/EntryParser.php', - 'Dotenv\\Parser\\Lexer' => $vendorDir . '/vlucas/phpdotenv/src/Parser/Lexer.php', - 'Dotenv\\Parser\\Lines' => $vendorDir . '/vlucas/phpdotenv/src/Parser/Lines.php', - 'Dotenv\\Parser\\Parser' => $vendorDir . '/vlucas/phpdotenv/src/Parser/Parser.php', - 'Dotenv\\Parser\\ParserInterface' => $vendorDir . '/vlucas/phpdotenv/src/Parser/ParserInterface.php', - 'Dotenv\\Parser\\Value' => $vendorDir . '/vlucas/phpdotenv/src/Parser/Value.php', - 'Dotenv\\Repository\\AdapterRepository' => $vendorDir . '/vlucas/phpdotenv/src/Repository/AdapterRepository.php', - 'Dotenv\\Repository\\Adapter\\AdapterInterface' => $vendorDir . '/vlucas/phpdotenv/src/Repository/Adapter/AdapterInterface.php', - 'Dotenv\\Repository\\Adapter\\ApacheAdapter' => $vendorDir . '/vlucas/phpdotenv/src/Repository/Adapter/ApacheAdapter.php', - 'Dotenv\\Repository\\Adapter\\ArrayAdapter' => $vendorDir . '/vlucas/phpdotenv/src/Repository/Adapter/ArrayAdapter.php', - 'Dotenv\\Repository\\Adapter\\EnvConstAdapter' => $vendorDir . '/vlucas/phpdotenv/src/Repository/Adapter/EnvConstAdapter.php', - 'Dotenv\\Repository\\Adapter\\GuardedWriter' => $vendorDir . '/vlucas/phpdotenv/src/Repository/Adapter/GuardedWriter.php', - 'Dotenv\\Repository\\Adapter\\ImmutableWriter' => $vendorDir . '/vlucas/phpdotenv/src/Repository/Adapter/ImmutableWriter.php', - 'Dotenv\\Repository\\Adapter\\MultiReader' => $vendorDir . '/vlucas/phpdotenv/src/Repository/Adapter/MultiReader.php', - 'Dotenv\\Repository\\Adapter\\MultiWriter' => $vendorDir . '/vlucas/phpdotenv/src/Repository/Adapter/MultiWriter.php', - 'Dotenv\\Repository\\Adapter\\PutenvAdapter' => $vendorDir . '/vlucas/phpdotenv/src/Repository/Adapter/PutenvAdapter.php', - 'Dotenv\\Repository\\Adapter\\ReaderInterface' => $vendorDir . '/vlucas/phpdotenv/src/Repository/Adapter/ReaderInterface.php', - 'Dotenv\\Repository\\Adapter\\ReplacingWriter' => $vendorDir . '/vlucas/phpdotenv/src/Repository/Adapter/ReplacingWriter.php', - 'Dotenv\\Repository\\Adapter\\ServerConstAdapter' => $vendorDir . '/vlucas/phpdotenv/src/Repository/Adapter/ServerConstAdapter.php', - 'Dotenv\\Repository\\Adapter\\WriterInterface' => $vendorDir . '/vlucas/phpdotenv/src/Repository/Adapter/WriterInterface.php', - 'Dotenv\\Repository\\RepositoryBuilder' => $vendorDir . '/vlucas/phpdotenv/src/Repository/RepositoryBuilder.php', - 'Dotenv\\Repository\\RepositoryInterface' => $vendorDir . '/vlucas/phpdotenv/src/Repository/RepositoryInterface.php', - 'Dotenv\\Store\\FileStore' => $vendorDir . '/vlucas/phpdotenv/src/Store/FileStore.php', - 'Dotenv\\Store\\File\\Paths' => $vendorDir . '/vlucas/phpdotenv/src/Store/File/Paths.php', - 'Dotenv\\Store\\File\\Reader' => $vendorDir . '/vlucas/phpdotenv/src/Store/File/Reader.php', - 'Dotenv\\Store\\StoreBuilder' => $vendorDir . '/vlucas/phpdotenv/src/Store/StoreBuilder.php', - 'Dotenv\\Store\\StoreInterface' => $vendorDir . '/vlucas/phpdotenv/src/Store/StoreInterface.php', - 'Dotenv\\Store\\StringStore' => $vendorDir . '/vlucas/phpdotenv/src/Store/StringStore.php', - 'Dotenv\\Util\\Regex' => $vendorDir . '/vlucas/phpdotenv/src/Util/Regex.php', - 'Dotenv\\Util\\Str' => $vendorDir . '/vlucas/phpdotenv/src/Util/Str.php', - 'Dotenv\\Validator' => $vendorDir . '/vlucas/phpdotenv/src/Validator.php', - 'GrahamCampbell\\ResultType\\Error' => $vendorDir . '/graham-campbell/result-type/src/Error.php', - 'GrahamCampbell\\ResultType\\Result' => $vendorDir . '/graham-campbell/result-type/src/Result.php', - 'GrahamCampbell\\ResultType\\Success' => $vendorDir . '/graham-campbell/result-type/src/Success.php', - 'InstituteWeb\\ComposerScripts\\ImprovedScriptExecution' => $vendorDir . '/instituteweb/composer-scripts/src/ImprovedScriptExecution.php', - 'PHPInsight\\Autoloader' => $vendorDir . '/jwhennessey/phpinsight/lib/PHPInsight/Autoloader.php', - 'PHPInsight\\Sentiment' => $vendorDir . '/jwhennessey/phpinsight/lib/PHPInsight/Sentiment.php', - 'PhpOption\\LazyOption' => $vendorDir . '/phpoption/phpoption/src/PhpOption/LazyOption.php', - 'PhpOption\\None' => $vendorDir . '/phpoption/phpoption/src/PhpOption/None.php', - 'PhpOption\\Option' => $vendorDir . '/phpoption/phpoption/src/PhpOption/Option.php', - 'PhpOption\\Some' => $vendorDir . '/phpoption/phpoption/src/PhpOption/Some.php', 'PhpToken' => $vendorDir . '/symfony/polyfill-php80/Resources/stubs/PhpToken.php', 'Stringable' => $vendorDir . '/symfony/polyfill-php80/Resources/stubs/Stringable.php', - 'Symfony\\Polyfill\\Ctype\\Ctype' => $vendorDir . '/symfony/polyfill-ctype/Ctype.php', - 'Symfony\\Polyfill\\Mbstring\\Mbstring' => $vendorDir . '/symfony/polyfill-mbstring/Mbstring.php', - 'Symfony\\Polyfill\\Php80\\Php80' => $vendorDir . '/symfony/polyfill-php80/Php80.php', - 'Symfony\\Polyfill\\Php80\\PhpToken' => $vendorDir . '/symfony/polyfill-php80/PhpToken.php', 'UnhandledMatchError' => $vendorDir . '/symfony/polyfill-php80/Resources/stubs/UnhandledMatchError.php', 'ValueError' => $vendorDir . '/symfony/polyfill-php80/Resources/stubs/ValueError.php', ); diff --git a/vendor/composer/autoload_real.php b/vendor/composer/autoload_real.php index dbc80532e..33f977c6a 100644 --- a/vendor/composer/autoload_real.php +++ b/vendor/composer/autoload_real.php @@ -2,7 +2,7 @@ // autoload_real.php @generated by Composer -class ComposerAutoloaderInit651aebe52d12925c0afecab162ebab77 +class ComposerAutoloaderInit7eb11f5f8ea46ec64cbb126389b52db1 { private static $loader; @@ -24,16 +24,16 @@ public static function getLoader() require __DIR__ . '/platform_check.php'; - spl_autoload_register(array('ComposerAutoloaderInit651aebe52d12925c0afecab162ebab77', 'loadClassLoader'), true, true); + spl_autoload_register(array('ComposerAutoloaderInit7eb11f5f8ea46ec64cbb126389b52db1', 'loadClassLoader'), true, true); self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__)); - spl_autoload_unregister(array('ComposerAutoloaderInit651aebe52d12925c0afecab162ebab77', 'loadClassLoader')); + spl_autoload_unregister(array('ComposerAutoloaderInit7eb11f5f8ea46ec64cbb126389b52db1', 'loadClassLoader')); require __DIR__ . '/autoload_static.php'; - call_user_func(\Composer\Autoload\ComposerStaticInit651aebe52d12925c0afecab162ebab77::getInitializer($loader)); + call_user_func(\Composer\Autoload\ComposerStaticInit7eb11f5f8ea46ec64cbb126389b52db1::getInitializer($loader)); $loader->register(true); - $filesToLoad = \Composer\Autoload\ComposerStaticInit651aebe52d12925c0afecab162ebab77::$files; + $filesToLoad = \Composer\Autoload\ComposerStaticInit7eb11f5f8ea46ec64cbb126389b52db1::$files; $requireFile = \Closure::bind(static function ($fileIdentifier, $file) { if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) { $GLOBALS['__composer_autoload_files'][$fileIdentifier] = true; diff --git a/vendor/composer/autoload_static.php b/vendor/composer/autoload_static.php index 512996d87..00342488a 100644 --- a/vendor/composer/autoload_static.php +++ b/vendor/composer/autoload_static.php @@ -4,7 +4,7 @@ namespace Composer\Autoload; -class ComposerStaticInit651aebe52d12925c0afecab162ebab77 +class ComposerStaticInit7eb11f5f8ea46ec64cbb126389b52db1 { public static $files = array ( '320cde22f66dd4f5d3fd621d3e88b98f' => __DIR__ . '/..' . '/symfony/polyfill-ctype/bootstrap.php', @@ -87,395 +87,6 @@ class ComposerStaticInit651aebe52d12925c0afecab162ebab77 ); public static $classMap = array ( - 'AIOSEO\\Plugin\\AIOSEO' => __DIR__ . '/../..' . '/app/AIOSEO.php', - 'AIOSEO\\Plugin\\Common\\Admin\\Admin' => __DIR__ . '/../..' . '/app/Common/Admin/Admin.php', - 'AIOSEO\\Plugin\\Common\\Admin\\ConflictingPlugins' => __DIR__ . '/../..' . '/app/Common/Admin/ConflictingPlugins.php', - 'AIOSEO\\Plugin\\Common\\Admin\\Dashboard' => __DIR__ . '/../..' . '/app/Common/Admin/Dashboard.php', - 'AIOSEO\\Plugin\\Common\\Admin\\DeactivationSurvey' => __DIR__ . '/../..' . '/app/Common/Admin/DeactivationSurvey.php', - 'AIOSEO\\Plugin\\Common\\Admin\\NetworkAdmin' => __DIR__ . '/../..' . '/app/Common/Admin/NetworkAdmin.php', - 'AIOSEO\\Plugin\\Common\\Admin\\Notices\\ConflictingPlugins' => __DIR__ . '/../..' . '/app/Common/Admin/Notices/ConflictingPlugins.php', - 'AIOSEO\\Plugin\\Common\\Admin\\Notices\\DeprecatedWordPress' => __DIR__ . '/../..' . '/app/Common/Admin/Notices/DeprecatedWordPress.php', - 'AIOSEO\\Plugin\\Common\\Admin\\Notices\\Import' => __DIR__ . '/../..' . '/app/Common/Admin/Notices/Import.php', - 'AIOSEO\\Plugin\\Common\\Admin\\Notices\\Migration' => __DIR__ . '/../..' . '/app/Common/Admin/Notices/Migration.php', - 'AIOSEO\\Plugin\\Common\\Admin\\Notices\\Notices' => __DIR__ . '/../..' . '/app/Common/Admin/Notices/Notices.php', - 'AIOSEO\\Plugin\\Common\\Admin\\Notices\\Review' => __DIR__ . '/../..' . '/app/Common/Admin/Notices/Review.php', - 'AIOSEO\\Plugin\\Common\\Admin\\Notices\\WpNotices' => __DIR__ . '/../..' . '/app/Common/Admin/Notices/WpNotices.php', - 'AIOSEO\\Plugin\\Common\\Admin\\PostSettings' => __DIR__ . '/../..' . '/app/Common/Admin/PostSettings.php', - 'AIOSEO\\Plugin\\Common\\Admin\\SeoAnalysis' => __DIR__ . '/../..' . '/app/Common/Admin/SeoAnalysis.php', - 'AIOSEO\\Plugin\\Common\\Admin\\SiteHealth' => __DIR__ . '/../..' . '/app/Common/Admin/SiteHealth.php', - 'AIOSEO\\Plugin\\Common\\Admin\\SlugMonitor' => __DIR__ . '/../..' . '/app/Common/Admin/SlugMonitor.php', - 'AIOSEO\\Plugin\\Common\\Admin\\Usage' => __DIR__ . '/../..' . '/app/Common/Admin/Usage.php', - 'AIOSEO\\Plugin\\Common\\Api\\Analyze' => __DIR__ . '/../..' . '/app/Common/Api/Analyze.php', - 'AIOSEO\\Plugin\\Common\\Api\\Api' => __DIR__ . '/../..' . '/app/Common/Api/Api.php', - 'AIOSEO\\Plugin\\Common\\Api\\Connect' => __DIR__ . '/../..' . '/app/Common/Api/Connect.php', - 'AIOSEO\\Plugin\\Common\\Api\\Integrations\\Semrush' => __DIR__ . '/../..' . '/app/Common/Api/Integrations/Semrush.php', - 'AIOSEO\\Plugin\\Common\\Api\\Integrations\\WpCode' => __DIR__ . '/../..' . '/app/Common/Api/Integrations/WpCode.php', - 'AIOSEO\\Plugin\\Common\\Api\\Migration' => __DIR__ . '/../..' . '/app/Common/Api/Migration.php', - 'AIOSEO\\Plugin\\Common\\Api\\Network' => __DIR__ . '/../..' . '/app/Common/Api/Network.php', - 'AIOSEO\\Plugin\\Common\\Api\\Notifications' => __DIR__ . '/../..' . '/app/Common/Api/Notifications.php', - 'AIOSEO\\Plugin\\Common\\Api\\Ping' => __DIR__ . '/../..' . '/app/Common/Api/Ping.php', - 'AIOSEO\\Plugin\\Common\\Api\\Plugins' => __DIR__ . '/../..' . '/app/Common/Api/Plugins.php', - 'AIOSEO\\Plugin\\Common\\Api\\PostsTerms' => __DIR__ . '/../..' . '/app/Common/Api/PostsTerms.php', - 'AIOSEO\\Plugin\\Common\\Api\\Settings' => __DIR__ . '/../..' . '/app/Common/Api/Settings.php', - 'AIOSEO\\Plugin\\Common\\Api\\Sitemaps' => __DIR__ . '/../..' . '/app/Common/Api/Sitemaps.php', - 'AIOSEO\\Plugin\\Common\\Api\\Tags' => __DIR__ . '/../..' . '/app/Common/Api/Tags.php', - 'AIOSEO\\Plugin\\Common\\Api\\Tools' => __DIR__ . '/../..' . '/app/Common/Api/Tools.php', - 'AIOSEO\\Plugin\\Common\\Api\\User' => __DIR__ . '/../..' . '/app/Common/Api/User.php', - 'AIOSEO\\Plugin\\Common\\Api\\Wizard' => __DIR__ . '/../..' . '/app/Common/Api/Wizard.php', - 'AIOSEO\\Plugin\\Common\\Breadcrumbs\\Block' => __DIR__ . '/../..' . '/app/Common/Breadcrumbs/Block.php', - 'AIOSEO\\Plugin\\Common\\Breadcrumbs\\Breadcrumbs' => __DIR__ . '/../..' . '/app/Common/Breadcrumbs/Breadcrumbs.php', - 'AIOSEO\\Plugin\\Common\\Breadcrumbs\\Frontend' => __DIR__ . '/../..' . '/app/Common/Breadcrumbs/Frontend.php', - 'AIOSEO\\Plugin\\Common\\Breadcrumbs\\Shortcode' => __DIR__ . '/../..' . '/app/Common/Breadcrumbs/Shortcode.php', - 'AIOSEO\\Plugin\\Common\\Breadcrumbs\\Tags' => __DIR__ . '/../..' . '/app/Common/Breadcrumbs/Tags.php', - 'AIOSEO\\Plugin\\Common\\Breadcrumbs\\Widget' => __DIR__ . '/../..' . '/app/Common/Breadcrumbs/Widget.php', - 'AIOSEO\\Plugin\\Common\\Core\\Core' => __DIR__ . '/../..' . '/app/Common/Core/Core.php', - 'AIOSEO\\Plugin\\Common\\Help\\Help' => __DIR__ . '/../..' . '/app/Common/Help/Help.php', - 'AIOSEO\\Plugin\\Common\\ImportExport\\Helpers' => __DIR__ . '/../..' . '/app/Common/ImportExport/Helpers.php', - 'AIOSEO\\Plugin\\Common\\ImportExport\\ImportExport' => __DIR__ . '/../..' . '/app/Common/ImportExport/ImportExport.php', - 'AIOSEO\\Plugin\\Common\\ImportExport\\Importer' => __DIR__ . '/../..' . '/app/Common/ImportExport/Importer.php', - 'AIOSEO\\Plugin\\Common\\ImportExport\\RankMath\\GeneralSettings' => __DIR__ . '/../..' . '/app/Common/ImportExport/RankMath/GeneralSettings.php', - 'AIOSEO\\Plugin\\Common\\ImportExport\\RankMath\\Helpers' => __DIR__ . '/../..' . '/app/Common/ImportExport/RankMath/Helpers.php', - 'AIOSEO\\Plugin\\Common\\ImportExport\\RankMath\\PostMeta' => __DIR__ . '/../..' . '/app/Common/ImportExport/RankMath/PostMeta.php', - 'AIOSEO\\Plugin\\Common\\ImportExport\\RankMath\\RankMath' => __DIR__ . '/../..' . '/app/Common/ImportExport/RankMath/RankMath.php', - 'AIOSEO\\Plugin\\Common\\ImportExport\\RankMath\\Sitemap' => __DIR__ . '/../..' . '/app/Common/ImportExport/RankMath/Sitemap.php', - 'AIOSEO\\Plugin\\Common\\ImportExport\\RankMath\\TitleMeta' => __DIR__ . '/../..' . '/app/Common/ImportExport/RankMath/TitleMeta.php', - 'AIOSEO\\Plugin\\Common\\ImportExport\\SearchAppearance' => __DIR__ . '/../..' . '/app/Common/ImportExport/SearchAppearance.php', - 'AIOSEO\\Plugin\\Common\\ImportExport\\SeoPress\\Analytics' => __DIR__ . '/../..' . '/app/Common/ImportExport/SeoPress/Analytics.php', - 'AIOSEO\\Plugin\\Common\\ImportExport\\SeoPress\\Breadcrumbs' => __DIR__ . '/../..' . '/app/Common/ImportExport/SeoPress/Breadcrumbs.php', - 'AIOSEO\\Plugin\\Common\\ImportExport\\SeoPress\\GeneralSettings' => __DIR__ . '/../..' . '/app/Common/ImportExport/SeoPress/GeneralSettings.php', - 'AIOSEO\\Plugin\\Common\\ImportExport\\SeoPress\\Helpers' => __DIR__ . '/../..' . '/app/Common/ImportExport/SeoPress/Helpers.php', - 'AIOSEO\\Plugin\\Common\\ImportExport\\SeoPress\\PostMeta' => __DIR__ . '/../..' . '/app/Common/ImportExport/SeoPress/PostMeta.php', - 'AIOSEO\\Plugin\\Common\\ImportExport\\SeoPress\\RobotsTxt' => __DIR__ . '/../..' . '/app/Common/ImportExport/SeoPress/RobotsTxt.php', - 'AIOSEO\\Plugin\\Common\\ImportExport\\SeoPress\\Rss' => __DIR__ . '/../..' . '/app/Common/ImportExport/SeoPress/Rss.php', - 'AIOSEO\\Plugin\\Common\\ImportExport\\SeoPress\\SeoPress' => __DIR__ . '/../..' . '/app/Common/ImportExport/SeoPress/SeoPress.php', - 'AIOSEO\\Plugin\\Common\\ImportExport\\SeoPress\\Sitemap' => __DIR__ . '/../..' . '/app/Common/ImportExport/SeoPress/Sitemap.php', - 'AIOSEO\\Plugin\\Common\\ImportExport\\SeoPress\\SocialMeta' => __DIR__ . '/../..' . '/app/Common/ImportExport/SeoPress/SocialMeta.php', - 'AIOSEO\\Plugin\\Common\\ImportExport\\SeoPress\\Titles' => __DIR__ . '/../..' . '/app/Common/ImportExport/SeoPress/Titles.php', - 'AIOSEO\\Plugin\\Common\\ImportExport\\YoastSeo\\GeneralSettings' => __DIR__ . '/../..' . '/app/Common/ImportExport/YoastSeo/GeneralSettings.php', - 'AIOSEO\\Plugin\\Common\\ImportExport\\YoastSeo\\Helpers' => __DIR__ . '/../..' . '/app/Common/ImportExport/YoastSeo/Helpers.php', - 'AIOSEO\\Plugin\\Common\\ImportExport\\YoastSeo\\PostMeta' => __DIR__ . '/../..' . '/app/Common/ImportExport/YoastSeo/PostMeta.php', - 'AIOSEO\\Plugin\\Common\\ImportExport\\YoastSeo\\SearchAppearance' => __DIR__ . '/../..' . '/app/Common/ImportExport/YoastSeo/SearchAppearance.php', - 'AIOSEO\\Plugin\\Common\\ImportExport\\YoastSeo\\SocialMeta' => __DIR__ . '/../..' . '/app/Common/ImportExport/YoastSeo/SocialMeta.php', - 'AIOSEO\\Plugin\\Common\\ImportExport\\YoastSeo\\UserMeta' => __DIR__ . '/../..' . '/app/Common/ImportExport/YoastSeo/UserMeta.php', - 'AIOSEO\\Plugin\\Common\\ImportExport\\YoastSeo\\YoastSeo' => __DIR__ . '/../..' . '/app/Common/ImportExport/YoastSeo/YoastSeo.php', - 'AIOSEO\\Plugin\\Common\\Integrations\\Semrush' => __DIR__ . '/../..' . '/app/Common/Integrations/Semrush.php', - 'AIOSEO\\Plugin\\Common\\Integrations\\WpCode' => __DIR__ . '/../..' . '/app/Common/Integrations/WpCode.php', - 'AIOSEO\\Plugin\\Common\\Main\\Activate' => __DIR__ . '/../..' . '/app/Common/Main/Activate.php', - 'AIOSEO\\Plugin\\Common\\Main\\Filters' => __DIR__ . '/../..' . '/app/Common/Main/Filters.php', - 'AIOSEO\\Plugin\\Common\\Main\\Head' => __DIR__ . '/../..' . '/app/Common/Main/Head.php', - 'AIOSEO\\Plugin\\Common\\Main\\Main' => __DIR__ . '/../..' . '/app/Common/Main/Main.php', - 'AIOSEO\\Plugin\\Common\\Main\\Media' => __DIR__ . '/../..' . '/app/Common/Main/Media.php', - 'AIOSEO\\Plugin\\Common\\Main\\PreUpdates' => __DIR__ . '/../..' . '/app/Common/Main/PreUpdates.php', - 'AIOSEO\\Plugin\\Common\\Main\\QueryArgs' => __DIR__ . '/../..' . '/app/Common/Main/QueryArgs.php', - 'AIOSEO\\Plugin\\Common\\Main\\Title' => __DIR__ . '/../..' . '/app/Common/Main/Title.php', - 'AIOSEO\\Plugin\\Common\\Main\\Updates' => __DIR__ . '/../..' . '/app/Common/Main/Updates.php', - 'AIOSEO\\Plugin\\Common\\Meta\\Amp' => __DIR__ . '/../..' . '/app/Common/Meta/Amp.php', - 'AIOSEO\\Plugin\\Common\\Meta\\Description' => __DIR__ . '/../..' . '/app/Common/Meta/Description.php', - 'AIOSEO\\Plugin\\Common\\Meta\\Helpers' => __DIR__ . '/../..' . '/app/Common/Meta/Helpers.php', - 'AIOSEO\\Plugin\\Common\\Meta\\Included' => __DIR__ . '/../..' . '/app/Common/Meta/Included.php', - 'AIOSEO\\Plugin\\Common\\Meta\\Keywords' => __DIR__ . '/../..' . '/app/Common/Meta/Keywords.php', - 'AIOSEO\\Plugin\\Common\\Meta\\Links' => __DIR__ . '/../..' . '/app/Common/Meta/Links.php', - 'AIOSEO\\Plugin\\Common\\Meta\\Meta' => __DIR__ . '/../..' . '/app/Common/Meta/Meta.php', - 'AIOSEO\\Plugin\\Common\\Meta\\MetaData' => __DIR__ . '/../..' . '/app/Common/Meta/MetaData.php', - 'AIOSEO\\Plugin\\Common\\Meta\\Robots' => __DIR__ . '/../..' . '/app/Common/Meta/Robots.php', - 'AIOSEO\\Plugin\\Common\\Meta\\SiteVerification' => __DIR__ . '/../..' . '/app/Common/Meta/SiteVerification.php', - 'AIOSEO\\Plugin\\Common\\Meta\\Title' => __DIR__ . '/../..' . '/app/Common/Meta/Title.php', - 'AIOSEO\\Plugin\\Common\\Migration\\BadRobots' => __DIR__ . '/../..' . '/app/Common/Migration/BadRobots.php', - 'AIOSEO\\Plugin\\Common\\Migration\\GeneralSettings' => __DIR__ . '/../..' . '/app/Common/Migration/GeneralSettings.php', - 'AIOSEO\\Plugin\\Common\\Migration\\Helpers' => __DIR__ . '/../..' . '/app/Common/Migration/Helpers.php', - 'AIOSEO\\Plugin\\Common\\Migration\\Meta' => __DIR__ . '/../..' . '/app/Common/Migration/Meta.php', - 'AIOSEO\\Plugin\\Common\\Migration\\Migration' => __DIR__ . '/../..' . '/app/Common/Migration/Migration.php', - 'AIOSEO\\Plugin\\Common\\Migration\\OldOptions' => __DIR__ . '/../..' . '/app/Common/Migration/OldOptions.php', - 'AIOSEO\\Plugin\\Common\\Migration\\RobotsTxt' => __DIR__ . '/../..' . '/app/Common/Migration/RobotsTxt.php', - 'AIOSEO\\Plugin\\Common\\Migration\\Sitemap' => __DIR__ . '/../..' . '/app/Common/Migration/Sitemap.php', - 'AIOSEO\\Plugin\\Common\\Migration\\SocialMeta' => __DIR__ . '/../..' . '/app/Common/Migration/SocialMeta.php', - 'AIOSEO\\Plugin\\Common\\Migration\\Wpml' => __DIR__ . '/../..' . '/app/Common/Migration/Wpml.php', - 'AIOSEO\\Plugin\\Common\\Models\\CrawlCleanupBlockedArg' => __DIR__ . '/../..' . '/app/Common/Models/CrawlCleanupBlockedArg.php', - 'AIOSEO\\Plugin\\Common\\Models\\CrawlCleanupLog' => __DIR__ . '/../..' . '/app/Common/Models/CrawlCleanupLog.php', - 'AIOSEO\\Plugin\\Common\\Models\\Model' => __DIR__ . '/../..' . '/app/Common/Models/Model.php', - 'AIOSEO\\Plugin\\Common\\Models\\Notification' => __DIR__ . '/../..' . '/app/Common/Models/Notification.php', - 'AIOSEO\\Plugin\\Common\\Models\\Post' => __DIR__ . '/../..' . '/app/Common/Models/Post.php', - 'AIOSEO\\Plugin\\Common\\Options\\Cache' => __DIR__ . '/../..' . '/app/Common/Options/Cache.php', - 'AIOSEO\\Plugin\\Common\\Options\\DynamicBackup' => __DIR__ . '/../..' . '/app/Common/Options/DynamicBackup.php', - 'AIOSEO\\Plugin\\Common\\Options\\DynamicOptions' => __DIR__ . '/../..' . '/app/Common/Options/DynamicOptions.php', - 'AIOSEO\\Plugin\\Common\\Options\\InternalNetworkOptions' => __DIR__ . '/../..' . '/app/Common/Options/InternalNetworkOptions.php', - 'AIOSEO\\Plugin\\Common\\Options\\InternalOptions' => __DIR__ . '/../..' . '/app/Common/Options/InternalOptions.php', - 'AIOSEO\\Plugin\\Common\\Options\\NetworkOptions' => __DIR__ . '/../..' . '/app/Common/Options/NetworkOptions.php', - 'AIOSEO\\Plugin\\Common\\Options\\Options' => __DIR__ . '/../..' . '/app/Common/Options/Options.php', - 'AIOSEO\\Plugin\\Common\\QueryArgs\\CrawlCleanup' => __DIR__ . '/../..' . '/app/Common/QueryArgs/CrawlCleanup.php', - 'AIOSEO\\Plugin\\Common\\Rss' => __DIR__ . '/../..' . '/app/Common/Rss.php', - 'AIOSEO\\Plugin\\Common\\Schema\\Breadcrumb' => __DIR__ . '/../..' . '/app/Common/Schema/Breadcrumb.php', - 'AIOSEO\\Plugin\\Common\\Schema\\Context' => __DIR__ . '/../..' . '/app/Common/Schema/Context.php', - 'AIOSEO\\Plugin\\Common\\Schema\\Graphs\\Article\\Article' => __DIR__ . '/../..' . '/app/Common/Schema/Graphs/Article/Article.php', - 'AIOSEO\\Plugin\\Common\\Schema\\Graphs\\Article\\BlogPosting' => __DIR__ . '/../..' . '/app/Common/Schema/Graphs/Article/BlogPosting.php', - 'AIOSEO\\Plugin\\Common\\Schema\\Graphs\\Article\\NewsArticle' => __DIR__ . '/../..' . '/app/Common/Schema/Graphs/Article/NewsArticle.php', - 'AIOSEO\\Plugin\\Common\\Schema\\Graphs\\BreadcrumbList' => __DIR__ . '/../..' . '/app/Common/Schema/Graphs/BreadcrumbList.php', - 'AIOSEO\\Plugin\\Common\\Schema\\Graphs\\Graph' => __DIR__ . '/../..' . '/app/Common/Schema/Graphs/Graph.php', - 'AIOSEO\\Plugin\\Common\\Schema\\Graphs\\KnowledgeGraph\\KgOrganization' => __DIR__ . '/../..' . '/app/Common/Schema/Graphs/KnowledgeGraph/KgOrganization.php', - 'AIOSEO\\Plugin\\Common\\Schema\\Graphs\\KnowledgeGraph\\KgPerson' => __DIR__ . '/../..' . '/app/Common/Schema/Graphs/KnowledgeGraph/KgPerson.php', - 'AIOSEO\\Plugin\\Common\\Schema\\Graphs\\Traits\\Image' => __DIR__ . '/../..' . '/app/Common/Schema/Graphs/Traits/Image.php', - 'AIOSEO\\Plugin\\Common\\Schema\\Graphs\\WebPage\\AboutPage' => __DIR__ . '/../..' . '/app/Common/Schema/Graphs/WebPage/AboutPage.php', - 'AIOSEO\\Plugin\\Common\\Schema\\Graphs\\WebPage\\CollectionPage' => __DIR__ . '/../..' . '/app/Common/Schema/Graphs/WebPage/CollectionPage.php', - 'AIOSEO\\Plugin\\Common\\Schema\\Graphs\\WebPage\\ContactPage' => __DIR__ . '/../..' . '/app/Common/Schema/Graphs/WebPage/ContactPage.php', - 'AIOSEO\\Plugin\\Common\\Schema\\Graphs\\WebPage\\FAQPage' => __DIR__ . '/../..' . '/app/Common/Schema/Graphs/WebPage/FAQPage.php', - 'AIOSEO\\Plugin\\Common\\Schema\\Graphs\\WebPage\\ItemPage' => __DIR__ . '/../..' . '/app/Common/Schema/Graphs/WebPage/ItemPage.php', - 'AIOSEO\\Plugin\\Common\\Schema\\Graphs\\WebPage\\PersonAuthor' => __DIR__ . '/../..' . '/app/Common/Schema/Graphs/WebPage/PersonAuthor.php', - 'AIOSEO\\Plugin\\Common\\Schema\\Graphs\\WebPage\\ProfilePage' => __DIR__ . '/../..' . '/app/Common/Schema/Graphs/WebPage/ProfilePage.php', - 'AIOSEO\\Plugin\\Common\\Schema\\Graphs\\WebPage\\RealEstateListing' => __DIR__ . '/../..' . '/app/Common/Schema/Graphs/WebPage/RealEstateListing.php', - 'AIOSEO\\Plugin\\Common\\Schema\\Graphs\\WebPage\\SearchResultsPage' => __DIR__ . '/../..' . '/app/Common/Schema/Graphs/WebPage/SearchResultsPage.php', - 'AIOSEO\\Plugin\\Common\\Schema\\Graphs\\WebPage\\WebPage' => __DIR__ . '/../..' . '/app/Common/Schema/Graphs/WebPage/WebPage.php', - 'AIOSEO\\Plugin\\Common\\Schema\\Graphs\\WebSite' => __DIR__ . '/../..' . '/app/Common/Schema/Graphs/WebSite.php', - 'AIOSEO\\Plugin\\Common\\Schema\\Helpers' => __DIR__ . '/../..' . '/app/Common/Schema/Helpers.php', - 'AIOSEO\\Plugin\\Common\\Schema\\Schema' => __DIR__ . '/../..' . '/app/Common/Schema/Schema.php', - 'AIOSEO\\Plugin\\Common\\SearchStatistics\\SearchStatistics' => __DIR__ . '/../..' . '/app/Common/SearchStatistics/SearchStatistics.php', - 'AIOSEO\\Plugin\\Common\\SeoRevisions\\SeoRevisions' => __DIR__ . '/../..' . '/app/Common/SeoRevisions/SeoRevisions.php', - 'AIOSEO\\Plugin\\Common\\Sitemap\\Content' => __DIR__ . '/../..' . '/app/Common/Sitemap/Content.php', - 'AIOSEO\\Plugin\\Common\\Sitemap\\File' => __DIR__ . '/../..' . '/app/Common/Sitemap/File.php', - 'AIOSEO\\Plugin\\Common\\Sitemap\\Helpers' => __DIR__ . '/../..' . '/app/Common/Sitemap/Helpers.php', - 'AIOSEO\\Plugin\\Common\\Sitemap\\Html\\Block' => __DIR__ . '/../..' . '/app/Common/Sitemap/Html/Block.php', - 'AIOSEO\\Plugin\\Common\\Sitemap\\Html\\CompactArchive' => __DIR__ . '/../..' . '/app/Common/Sitemap/Html/CompactArchive.php', - 'AIOSEO\\Plugin\\Common\\Sitemap\\Html\\Frontend' => __DIR__ . '/../..' . '/app/Common/Sitemap/Html/Frontend.php', - 'AIOSEO\\Plugin\\Common\\Sitemap\\Html\\Query' => __DIR__ . '/../..' . '/app/Common/Sitemap/Html/Query.php', - 'AIOSEO\\Plugin\\Common\\Sitemap\\Html\\Shortcode' => __DIR__ . '/../..' . '/app/Common/Sitemap/Html/Shortcode.php', - 'AIOSEO\\Plugin\\Common\\Sitemap\\Html\\Sitemap' => __DIR__ . '/../..' . '/app/Common/Sitemap/Html/Sitemap.php', - 'AIOSEO\\Plugin\\Common\\Sitemap\\Html\\Widget' => __DIR__ . '/../..' . '/app/Common/Sitemap/Html/Widget.php', - 'AIOSEO\\Plugin\\Common\\Sitemap\\Image\\Image' => __DIR__ . '/../..' . '/app/Common/Sitemap/Image/Image.php', - 'AIOSEO\\Plugin\\Common\\Sitemap\\Image\\ThirdParty' => __DIR__ . '/../..' . '/app/Common/Sitemap/Image/ThirdParty.php', - 'AIOSEO\\Plugin\\Common\\Sitemap\\Localization' => __DIR__ . '/../..' . '/app/Common/Sitemap/Localization.php', - 'AIOSEO\\Plugin\\Common\\Sitemap\\Output' => __DIR__ . '/../..' . '/app/Common/Sitemap/Output.php', - 'AIOSEO\\Plugin\\Common\\Sitemap\\Ping' => __DIR__ . '/../..' . '/app/Common/Sitemap/Ping.php', - 'AIOSEO\\Plugin\\Common\\Sitemap\\Priority' => __DIR__ . '/../..' . '/app/Common/Sitemap/Priority.php', - 'AIOSEO\\Plugin\\Common\\Sitemap\\Query' => __DIR__ . '/../..' . '/app/Common/Sitemap/Query.php', - 'AIOSEO\\Plugin\\Common\\Sitemap\\RequestParser' => __DIR__ . '/../..' . '/app/Common/Sitemap/RequestParser.php', - 'AIOSEO\\Plugin\\Common\\Sitemap\\Root' => __DIR__ . '/../..' . '/app/Common/Sitemap/Root.php', - 'AIOSEO\\Plugin\\Common\\Sitemap\\Sitemap' => __DIR__ . '/../..' . '/app/Common/Sitemap/Sitemap.php', - 'AIOSEO\\Plugin\\Common\\Sitemap\\SitemapAbstract' => __DIR__ . '/../..' . '/app/Common/Sitemap/SitemapAbstract.php', - 'AIOSEO\\Plugin\\Common\\Sitemap\\Xsl' => __DIR__ . '/../..' . '/app/Common/Sitemap/Xsl.php', - 'AIOSEO\\Plugin\\Common\\Social\\Facebook' => __DIR__ . '/../..' . '/app/Common/Social/Facebook.php', - 'AIOSEO\\Plugin\\Common\\Social\\Image' => __DIR__ . '/../..' . '/app/Common/Social/Image.php', - 'AIOSEO\\Plugin\\Common\\Social\\Output' => __DIR__ . '/../..' . '/app/Common/Social/Output.php', - 'AIOSEO\\Plugin\\Common\\Social\\Social' => __DIR__ . '/../..' . '/app/Common/Social/Social.php', - 'AIOSEO\\Plugin\\Common\\Social\\Twitter' => __DIR__ . '/../..' . '/app/Common/Social/Twitter.php', - 'AIOSEO\\Plugin\\Common\\Standalone\\Blocks\\Blocks' => __DIR__ . '/../..' . '/app/Common/Standalone/Blocks/Blocks.php', - 'AIOSEO\\Plugin\\Common\\Standalone\\Blocks\\FaqPage' => __DIR__ . '/../..' . '/app/Common/Standalone/Blocks/FaqPage.php', - 'AIOSEO\\Plugin\\Common\\Standalone\\Blocks\\TableOfContents' => __DIR__ . '/../..' . '/app/Common/Standalone/Blocks/TableOfContents.php', - 'AIOSEO\\Plugin\\Common\\Standalone\\DetailsColumn' => __DIR__ . '/../..' . '/app/Common/Standalone/DetailsColumn.php', - 'AIOSEO\\Plugin\\Common\\Standalone\\FlyoutMenu' => __DIR__ . '/../..' . '/app/Common/Standalone/FlyoutMenu.php', - 'AIOSEO\\Plugin\\Common\\Standalone\\HeadlineAnalyzer' => __DIR__ . '/../..' . '/app/Common/Standalone/HeadlineAnalyzer.php', - 'AIOSEO\\Plugin\\Common\\Standalone\\LimitModifiedDate' => __DIR__ . '/../..' . '/app/Common/Standalone/LimitModifiedDate.php', - 'AIOSEO\\Plugin\\Common\\Standalone\\Notifications' => __DIR__ . '/../..' . '/app/Common/Standalone/Notifications.php', - 'AIOSEO\\Plugin\\Common\\Standalone\\PageBuilders\\Avada' => __DIR__ . '/../..' . '/app/Common/Standalone/PageBuilders/Avada.php', - 'AIOSEO\\Plugin\\Common\\Standalone\\PageBuilders\\Base' => __DIR__ . '/../..' . '/app/Common/Standalone/PageBuilders/Base.php', - 'AIOSEO\\Plugin\\Common\\Standalone\\PageBuilders\\Divi' => __DIR__ . '/../..' . '/app/Common/Standalone/PageBuilders/Divi.php', - 'AIOSEO\\Plugin\\Common\\Standalone\\PageBuilders\\Elementor' => __DIR__ . '/../..' . '/app/Common/Standalone/PageBuilders/Elementor.php', - 'AIOSEO\\Plugin\\Common\\Standalone\\PageBuilders\\SeedProd' => __DIR__ . '/../..' . '/app/Common/Standalone/PageBuilders/SeedProd.php', - 'AIOSEO\\Plugin\\Common\\Standalone\\PageBuilders\\WPBakery' => __DIR__ . '/../..' . '/app/Common/Standalone/PageBuilders/WPBakery.php', - 'AIOSEO\\Plugin\\Common\\Standalone\\PrimaryTerm' => __DIR__ . '/../..' . '/app/Common/Standalone/PrimaryTerm.php', - 'AIOSEO\\Plugin\\Common\\Standalone\\PublishPanel' => __DIR__ . '/../..' . '/app/Common/Standalone/PublishPanel.php', - 'AIOSEO\\Plugin\\Common\\Standalone\\SeoPreview' => __DIR__ . '/../..' . '/app/Common/Standalone/SeoPreview.php', - 'AIOSEO\\Plugin\\Common\\Standalone\\SetupWizard' => __DIR__ . '/../..' . '/app/Common/Standalone/SetupWizard.php', - 'AIOSEO\\Plugin\\Common\\Standalone\\Standalone' => __DIR__ . '/../..' . '/app/Common/Standalone/Standalone.php', - 'AIOSEO\\Plugin\\Common\\Standalone\\UserProfileTab' => __DIR__ . '/../..' . '/app/Common/Standalone/UserProfileTab.php', - 'AIOSEO\\Plugin\\Common\\Standalone\\WpCode' => __DIR__ . '/../..' . '/app/Common/Standalone/WpCode.php', - 'AIOSEO\\Plugin\\Common\\Tools\\BadBotBlocker' => __DIR__ . '/../..' . '/app/Common/Tools/BadBotBlocker.php', - 'AIOSEO\\Plugin\\Common\\Tools\\Htaccess' => __DIR__ . '/../..' . '/app/Common/Tools/Htaccess.php', - 'AIOSEO\\Plugin\\Common\\Tools\\RobotsTxt' => __DIR__ . '/../..' . '/app/Common/Tools/RobotsTxt.php', - 'AIOSEO\\Plugin\\Common\\Tools\\SystemStatus' => __DIR__ . '/../..' . '/app/Common/Tools/SystemStatus.php', - 'AIOSEO\\Plugin\\Common\\Traits\\Assets' => __DIR__ . '/../..' . '/app/Common/Traits/Assets.php', - 'AIOSEO\\Plugin\\Common\\Traits\\Helpers\\Api' => __DIR__ . '/../..' . '/app/Common/Traits/Helpers/Api.php', - 'AIOSEO\\Plugin\\Common\\Traits\\Helpers\\Arrays' => __DIR__ . '/../..' . '/app/Common/Traits/Helpers/Arrays.php', - 'AIOSEO\\Plugin\\Common\\Traits\\Helpers\\Constants' => __DIR__ . '/../..' . '/app/Common/Traits/Helpers/Constants.php', - 'AIOSEO\\Plugin\\Common\\Traits\\Helpers\\DateTime' => __DIR__ . '/../..' . '/app/Common/Traits/Helpers/DateTime.php', - 'AIOSEO\\Plugin\\Common\\Traits\\Helpers\\Deprecated' => __DIR__ . '/../..' . '/app/Common/Traits/Helpers/Deprecated.php', - 'AIOSEO\\Plugin\\Common\\Traits\\Helpers\\Language' => __DIR__ . '/../..' . '/app/Common/Traits/Helpers/Language.php', - 'AIOSEO\\Plugin\\Common\\Traits\\Helpers\\PostType' => __DIR__ . '/../..' . '/app/Common/Traits/Helpers/PostType.php', - 'AIOSEO\\Plugin\\Common\\Traits\\Helpers\\Request' => __DIR__ . '/../..' . '/app/Common/Traits/Helpers/Request.php', - 'AIOSEO\\Plugin\\Common\\Traits\\Helpers\\Shortcodes' => __DIR__ . '/../..' . '/app/Common/Traits/Helpers/Shortcodes.php', - 'AIOSEO\\Plugin\\Common\\Traits\\Helpers\\Strings' => __DIR__ . '/../..' . '/app/Common/Traits/Helpers/Strings.php', - 'AIOSEO\\Plugin\\Common\\Traits\\Helpers\\Svg' => __DIR__ . '/../..' . '/app/Common/Traits/Helpers/Svg.php', - 'AIOSEO\\Plugin\\Common\\Traits\\Helpers\\ThirdParty' => __DIR__ . '/../..' . '/app/Common/Traits/Helpers/ThirdParty.php', - 'AIOSEO\\Plugin\\Common\\Traits\\Helpers\\Url' => __DIR__ . '/../..' . '/app/Common/Traits/Helpers/Url.php', - 'AIOSEO\\Plugin\\Common\\Traits\\Helpers\\Vue' => __DIR__ . '/../..' . '/app/Common/Traits/Helpers/Vue.php', - 'AIOSEO\\Plugin\\Common\\Traits\\Helpers\\Wp' => __DIR__ . '/../..' . '/app/Common/Traits/Helpers/Wp.php', - 'AIOSEO\\Plugin\\Common\\Traits\\Helpers\\WpContext' => __DIR__ . '/../..' . '/app/Common/Traits/Helpers/WpContext.php', - 'AIOSEO\\Plugin\\Common\\Traits\\Helpers\\WpMultisite' => __DIR__ . '/../..' . '/app/Common/Traits/Helpers/WpMultisite.php', - 'AIOSEO\\Plugin\\Common\\Traits\\Helpers\\WpUri' => __DIR__ . '/../..' . '/app/Common/Traits/Helpers/WpUri.php', - 'AIOSEO\\Plugin\\Common\\Traits\\NetworkOptions' => __DIR__ . '/../..' . '/app/Common/Traits/NetworkOptions.php', - 'AIOSEO\\Plugin\\Common\\Traits\\Options' => __DIR__ . '/../..' . '/app/Common/Traits/Options.php', - 'AIOSEO\\Plugin\\Common\\Traits\\SocialProfiles' => __DIR__ . '/../..' . '/app/Common/Traits/SocialProfiles.php', - 'AIOSEO\\Plugin\\Common\\Utils\\Access' => __DIR__ . '/../..' . '/app/Common/Utils/Access.php', - 'AIOSEO\\Plugin\\Common\\Utils\\ActionScheduler' => __DIR__ . '/../..' . '/app/Common/Utils/ActionScheduler.php', - 'AIOSEO\\Plugin\\Common\\Utils\\Addons' => __DIR__ . '/../..' . '/app/Common/Utils/Addons.php', - 'AIOSEO\\Plugin\\Common\\Utils\\Assets' => __DIR__ . '/../..' . '/app/Common/Utils/Assets.php', - 'AIOSEO\\Plugin\\Common\\Utils\\Backup' => __DIR__ . '/../..' . '/app/Common/Utils/Backup.php', - 'AIOSEO\\Plugin\\Common\\Utils\\Blocks' => __DIR__ . '/../..' . '/app/Common/Utils/Blocks.php', - 'AIOSEO\\Plugin\\Common\\Utils\\Cache' => __DIR__ . '/../..' . '/app/Common/Utils/Cache.php', - 'AIOSEO\\Plugin\\Common\\Utils\\CachePrune' => __DIR__ . '/../..' . '/app/Common/Utils/CachePrune.php', - 'AIOSEO\\Plugin\\Common\\Utils\\Database' => __DIR__ . '/../..' . '/app/Common/Utils/Database.php', - 'AIOSEO\\Plugin\\Common\\Utils\\Features' => __DIR__ . '/../..' . '/app/Common/Utils/Features.php', - 'AIOSEO\\Plugin\\Common\\Utils\\Filesystem' => __DIR__ . '/../..' . '/app/Common/Utils/Filesystem.php', - 'AIOSEO\\Plugin\\Common\\Utils\\Helpers' => __DIR__ . '/../..' . '/app/Common/Utils/Helpers.php', - 'AIOSEO\\Plugin\\Common\\Utils\\NetworkCache' => __DIR__ . '/../..' . '/app/Common/Utils/NetworkCache.php', - 'AIOSEO\\Plugin\\Common\\Utils\\PluginUpgraderSilentAjax' => __DIR__ . '/../..' . '/app/Common/Utils/PluginUpgraderSilentAjax.php', - 'AIOSEO\\Plugin\\Common\\Utils\\PluginUpgraderSkin' => __DIR__ . '/../..' . '/app/Common/Utils/PluginUpgraderSkin.php', - 'AIOSEO\\Plugin\\Common\\Utils\\Tags' => __DIR__ . '/../..' . '/app/Common/Utils/Tags.php', - 'AIOSEO\\Plugin\\Common\\Utils\\Templates' => __DIR__ . '/../..' . '/app/Common/Utils/Templates.php', - 'AIOSEO\\Plugin\\Common\\Utils\\VueSettings' => __DIR__ . '/../..' . '/app/Common/Utils/VueSettings.php', - 'AIOSEO\\Plugin\\Lite\\Admin\\Admin' => __DIR__ . '/../..' . '/app/Lite/Admin/Admin.php', - 'AIOSEO\\Plugin\\Lite\\Admin\\Connect' => __DIR__ . '/../..' . '/app/Lite/Admin/Connect.php', - 'AIOSEO\\Plugin\\Lite\\Admin\\Notices\\Notices' => __DIR__ . '/../..' . '/app/Lite/Admin/Notices/Notices.php', - 'AIOSEO\\Plugin\\Lite\\Admin\\PostSettings' => __DIR__ . '/../..' . '/app/Lite/Admin/PostSettings.php', - 'AIOSEO\\Plugin\\Lite\\Admin\\Usage' => __DIR__ . '/../..' . '/app/Lite/Admin/Usage.php', - 'AIOSEO\\Plugin\\Lite\\Api\\Api' => __DIR__ . '/../..' . '/app/Lite/Api/Api.php', - 'AIOSEO\\Plugin\\Lite\\Api\\Wizard' => __DIR__ . '/../..' . '/app/Lite/Api/Wizard.php', - 'AIOSEO\\Plugin\\Lite\\Main\\Filters' => __DIR__ . '/../..' . '/app/Lite/Main/Filters.php', - 'AIOSEO\\Plugin\\Lite\\Options\\InternalOptions' => __DIR__ . '/../..' . '/app/Lite/Options/InternalOptions.php', - 'AIOSEO\\Plugin\\Lite\\Options\\Options' => __DIR__ . '/../..' . '/app/Lite/Options/Options.php', - 'AIOSEO\\Plugin\\Lite\\Traits\\Options' => __DIR__ . '/../..' . '/app/Lite/Traits/Options.php', - 'AIOSEO\\Plugin\\Lite\\Utils\\Helpers' => __DIR__ . '/../..' . '/app/Lite/Utils/Helpers.php', - 'AIOSEO\\Plugin\\Pro\\Admin\\Admin' => __DIR__ . '/../..' . '/app/Pro/Admin/Admin.php', - 'AIOSEO\\Plugin\\Pro\\Admin\\AutoUpdates' => __DIR__ . '/../..' . '/app/Pro/Admin/AutoUpdates.php', - 'AIOSEO\\Plugin\\Pro\\Admin\\ConflictingPlugins' => __DIR__ . '/../..' . '/app/Pro/Admin/ConflictingPlugins.php', - 'AIOSEO\\Plugin\\Pro\\Admin\\CornerstoneContent' => __DIR__ . '/../..' . '/app/Pro/Admin/CornerstoneContent.php', - 'AIOSEO\\Plugin\\Pro\\Admin\\Dashboard' => __DIR__ . '/../..' . '/app/Pro/Admin/Dashboard.php', - 'AIOSEO\\Plugin\\Pro\\Admin\\License' => __DIR__ . '/../..' . '/app/Pro/Admin/License.php', - 'AIOSEO\\Plugin\\Pro\\Admin\\NetworkAdmin' => __DIR__ . '/../..' . '/app/Pro/Admin/NetworkAdmin.php', - 'AIOSEO\\Plugin\\Pro\\Admin\\NetworkLicense' => __DIR__ . '/../..' . '/app/Pro/Admin/NetworkLicense.php', - 'AIOSEO\\Plugin\\Pro\\Admin\\Notices\\Notices' => __DIR__ . '/../..' . '/app/Pro/Admin/Notices/Notices.php', - 'AIOSEO\\Plugin\\Pro\\Admin\\PostSettings' => __DIR__ . '/../..' . '/app/Pro/Admin/PostSettings.php', - 'AIOSEO\\Plugin\\Pro\\Admin\\SiteHealth' => __DIR__ . '/../..' . '/app/Pro/Admin/SiteHealth.php', - 'AIOSEO\\Plugin\\Pro\\Admin\\Term' => __DIR__ . '/../..' . '/app/Pro/Admin/Term.php', - 'AIOSEO\\Plugin\\Pro\\Admin\\Updates' => __DIR__ . '/../..' . '/app/Pro/Admin/Updates.php', - 'AIOSEO\\Plugin\\Pro\\Admin\\Usage' => __DIR__ . '/../..' . '/app/Pro/Admin/Usage.php', - 'AIOSEO\\Plugin\\Pro\\Ai\\Ai' => __DIR__ . '/../..' . '/app/Pro/Ai/Ai.php', - 'AIOSEO\\Plugin\\Pro\\Api\\Ai' => __DIR__ . '/../..' . '/app/Pro/Api/Ai.php', - 'AIOSEO\\Plugin\\Pro\\Api\\Api' => __DIR__ . '/../..' . '/app/Pro/Api/Api.php', - 'AIOSEO\\Plugin\\Pro\\Api\\License' => __DIR__ . '/../..' . '/app/Pro/Api/License.php', - 'AIOSEO\\Plugin\\Pro\\Api\\Network' => __DIR__ . '/../..' . '/app/Pro/Api/Network.php', - 'AIOSEO\\Plugin\\Pro\\Api\\Notifications' => __DIR__ . '/../..' . '/app/Pro/Api/Notifications.php', - 'AIOSEO\\Plugin\\Pro\\Api\\PostsTerms' => __DIR__ . '/../..' . '/app/Pro/Api/PostsTerms.php', - 'AIOSEO\\Plugin\\Pro\\Api\\Schema' => __DIR__ . '/../..' . '/app/Pro/Api/Schema.php', - 'AIOSEO\\Plugin\\Pro\\Api\\SearchStatistics' => __DIR__ . '/../..' . '/app/Pro/Api/SearchStatistics.php', - 'AIOSEO\\Plugin\\Pro\\Api\\SeoRevisions' => __DIR__ . '/../..' . '/app/Pro/Api/SeoRevisions.php', - 'AIOSEO\\Plugin\\Pro\\Api\\Settings' => __DIR__ . '/../..' . '/app/Pro/Api/Settings.php', - 'AIOSEO\\Plugin\\Pro\\Api\\Sitemaps' => __DIR__ . '/../..' . '/app/Pro/Api/Sitemaps.php', - 'AIOSEO\\Plugin\\Pro\\Api\\Tools' => __DIR__ . '/../..' . '/app/Pro/Api/Tools.php', - 'AIOSEO\\Plugin\\Pro\\Api\\Wizard' => __DIR__ . '/../..' . '/app/Pro/Api/Wizard.php', - 'AIOSEO\\Plugin\\Pro\\Breadcrumbs\\Breadcrumbs' => __DIR__ . '/../..' . '/app/Pro/Breadcrumbs/Breadcrumbs.php', - 'AIOSEO\\Plugin\\Pro\\Breadcrumbs\\Frontend' => __DIR__ . '/../..' . '/app/Pro/Breadcrumbs/Frontend.php', - 'AIOSEO\\Plugin\\Pro\\ImportExport\\ImportExport' => __DIR__ . '/../..' . '/app/Pro/ImportExport/ImportExport.php', - 'AIOSEO\\Plugin\\Pro\\ImportExport\\RankMath\\GeneralSettings' => __DIR__ . '/../..' . '/app/Pro/ImportExport/RankMath/GeneralSettings.php', - 'AIOSEO\\Plugin\\Pro\\ImportExport\\RankMath\\RankMath' => __DIR__ . '/../..' . '/app/Pro/ImportExport/RankMath/RankMath.php', - 'AIOSEO\\Plugin\\Pro\\ImportExport\\RankMath\\TermMeta' => __DIR__ . '/../..' . '/app/Pro/ImportExport/RankMath/TermMeta.php', - 'AIOSEO\\Plugin\\Pro\\ImportExport\\RankMath\\TitleMeta' => __DIR__ . '/../..' . '/app/Pro/ImportExport/RankMath/TitleMeta.php', - 'AIOSEO\\Plugin\\Pro\\ImportExport\\SeoPress\\Breadcrumbs' => __DIR__ . '/../..' . '/app/Pro/ImportExport/SeoPress/Breadcrumbs.php', - 'AIOSEO\\Plugin\\Pro\\ImportExport\\SeoPress\\NewsSitemap' => __DIR__ . '/../..' . '/app/Pro/ImportExport/SeoPress/NewsSitemap.php', - 'AIOSEO\\Plugin\\Pro\\ImportExport\\SeoPress\\PostMeta' => __DIR__ . '/../..' . '/app/Pro/ImportExport/SeoPress/PostMeta.php', - 'AIOSEO\\Plugin\\Pro\\ImportExport\\SeoPress\\SeoPress' => __DIR__ . '/../..' . '/app/Pro/ImportExport/SeoPress/SeoPress.php', - 'AIOSEO\\Plugin\\Pro\\ImportExport\\SeoPress\\TermMeta' => __DIR__ . '/../..' . '/app/Pro/ImportExport/SeoPress/TermMeta.php', - 'AIOSEO\\Plugin\\Pro\\ImportExport\\SeoPress\\VideoSitemap' => __DIR__ . '/../..' . '/app/Pro/ImportExport/SeoPress/VideoSitemap.php', - 'AIOSEO\\Plugin\\Pro\\ImportExport\\YoastSeo\\GeneralSettings' => __DIR__ . '/../..' . '/app/Pro/ImportExport/YoastSeo/GeneralSettings.php', - 'AIOSEO\\Plugin\\Pro\\ImportExport\\YoastSeo\\NewsSitemap' => __DIR__ . '/../..' . '/app/Pro/ImportExport/YoastSeo/NewsSitemap.php', - 'AIOSEO\\Plugin\\Pro\\ImportExport\\YoastSeo\\SearchAppearance' => __DIR__ . '/../..' . '/app/Pro/ImportExport/YoastSeo/SearchAppearance.php', - 'AIOSEO\\Plugin\\Pro\\ImportExport\\YoastSeo\\SocialMeta' => __DIR__ . '/../..' . '/app/Pro/ImportExport/YoastSeo/SocialMeta.php', - 'AIOSEO\\Plugin\\Pro\\ImportExport\\YoastSeo\\TermMeta' => __DIR__ . '/../..' . '/app/Pro/ImportExport/YoastSeo/TermMeta.php', - 'AIOSEO\\Plugin\\Pro\\ImportExport\\YoastSeo\\VideoSitemap' => __DIR__ . '/../..' . '/app/Pro/ImportExport/YoastSeo/VideoSitemap.php', - 'AIOSEO\\Plugin\\Pro\\ImportExport\\YoastSeo\\YoastSeo' => __DIR__ . '/../..' . '/app/Pro/ImportExport/YoastSeo/YoastSeo.php', - 'AIOSEO\\Plugin\\Pro\\Main\\Activate' => __DIR__ . '/../..' . '/app/Pro/Main/Activate.php', - 'AIOSEO\\Plugin\\Pro\\Main\\CategoryBase' => __DIR__ . '/../..' . '/app/Pro/Main/CategoryBase.php', - 'AIOSEO\\Plugin\\Pro\\Main\\Filters' => __DIR__ . '/../..' . '/app/Pro/Main/Filters.php', - 'AIOSEO\\Plugin\\Pro\\Main\\GoogleAnalytics' => __DIR__ . '/../..' . '/app/Pro/Main/GoogleAnalytics.php', - 'AIOSEO\\Plugin\\Pro\\Main\\Head' => __DIR__ . '/../..' . '/app/Pro/Main/Head.php', - 'AIOSEO\\Plugin\\Pro\\Main\\Main' => __DIR__ . '/../..' . '/app/Pro/Main/Main.php', - 'AIOSEO\\Plugin\\Pro\\Main\\PreUpdates' => __DIR__ . '/../..' . '/app/Pro/Main/PreUpdates.php', - 'AIOSEO\\Plugin\\Pro\\Main\\Translations' => __DIR__ . '/../..' . '/app/Pro/Main/Translations.php', - 'AIOSEO\\Plugin\\Pro\\Main\\Updates' => __DIR__ . '/../..' . '/app/Pro/Main/Updates.php', - 'AIOSEO\\Plugin\\Pro\\Meta\\Description' => __DIR__ . '/../..' . '/app/Pro/Meta/Description.php', - 'AIOSEO\\Plugin\\Pro\\Meta\\Included' => __DIR__ . '/../..' . '/app/Pro/Meta/Included.php', - 'AIOSEO\\Plugin\\Pro\\Meta\\Keywords' => __DIR__ . '/../..' . '/app/Pro/Meta/Keywords.php', - 'AIOSEO\\Plugin\\Pro\\Meta\\Meta' => __DIR__ . '/../..' . '/app/Pro/Meta/Meta.php', - 'AIOSEO\\Plugin\\Pro\\Meta\\MetaData' => __DIR__ . '/../..' . '/app/Pro/Meta/MetaData.php', - 'AIOSEO\\Plugin\\Pro\\Meta\\Robots' => __DIR__ . '/../..' . '/app/Pro/Meta/Robots.php', - 'AIOSEO\\Plugin\\Pro\\Meta\\Title' => __DIR__ . '/../..' . '/app/Pro/Meta/Title.php', - 'AIOSEO\\Plugin\\Pro\\Migration\\GeneralSettings' => __DIR__ . '/../..' . '/app/Pro/Migration/GeneralSettings.php', - 'AIOSEO\\Plugin\\Pro\\Migration\\ImageSeo' => __DIR__ . '/../..' . '/app/Pro/Migration/ImageSeo.php', - 'AIOSEO\\Plugin\\Pro\\Migration\\LocalBusiness' => __DIR__ . '/../..' . '/app/Pro/Migration/LocalBusiness.php', - 'AIOSEO\\Plugin\\Pro\\Migration\\Meta' => __DIR__ . '/../..' . '/app/Pro/Migration/Meta.php', - 'AIOSEO\\Plugin\\Pro\\Migration\\Migration' => __DIR__ . '/../..' . '/app/Pro/Migration/Migration.php', - 'AIOSEO\\Plugin\\Pro\\Migration\\OldOptions' => __DIR__ . '/../..' . '/app/Pro/Migration/OldOptions.php', - 'AIOSEO\\Plugin\\Pro\\Migration\\Sitemap' => __DIR__ . '/../..' . '/app/Pro/Migration/Sitemap.php', - 'AIOSEO\\Plugin\\Pro\\Migration\\VideoSitemap' => __DIR__ . '/../..' . '/app/Pro/Migration/VideoSitemap.php', - 'AIOSEO\\Plugin\\Pro\\Models\\SearchStatistics\\WpObject' => __DIR__ . '/../..' . '/app/Pro/Models/SearchStatistics/WpObject.php', - 'AIOSEO\\Plugin\\Pro\\Models\\SeoRevision' => __DIR__ . '/../..' . '/app/Pro/Models/SeoRevision.php', - 'AIOSEO\\Plugin\\Pro\\Models\\Term' => __DIR__ . '/../..' . '/app/Pro/Models/Term.php', - 'AIOSEO\\Plugin\\Pro\\Options\\DynamicBackup' => __DIR__ . '/../..' . '/app/Pro/Options/DynamicBackup.php', - 'AIOSEO\\Plugin\\Pro\\Options\\DynamicOptions' => __DIR__ . '/../..' . '/app/Pro/Options/DynamicOptions.php', - 'AIOSEO\\Plugin\\Pro\\Options\\InternalNetworkOptions' => __DIR__ . '/../..' . '/app/Pro/Options/InternalNetworkOptions.php', - 'AIOSEO\\Plugin\\Pro\\Options\\InternalOptions' => __DIR__ . '/../..' . '/app/Pro/Options/InternalOptions.php', - 'AIOSEO\\Plugin\\Pro\\Options\\NetworkOptions' => __DIR__ . '/../..' . '/app/Pro/Options/NetworkOptions.php', - 'AIOSEO\\Plugin\\Pro\\Options\\Options' => __DIR__ . '/../..' . '/app/Pro/Options/Options.php', - 'AIOSEO\\Plugin\\Pro\\Schema\\Graphs\\Book' => __DIR__ . '/../..' . '/app/Pro/Schema/Graphs/Book.php', - 'AIOSEO\\Plugin\\Pro\\Schema\\Graphs\\Course' => __DIR__ . '/../..' . '/app/Pro/Schema/Graphs/Course.php', - 'AIOSEO\\Plugin\\Pro\\Schema\\Graphs\\Dataset' => __DIR__ . '/../..' . '/app/Pro/Schema/Graphs/Dataset.php', - 'AIOSEO\\Plugin\\Pro\\Schema\\Graphs\\Event' => __DIR__ . '/../..' . '/app/Pro/Schema/Graphs/Event.php', - 'AIOSEO\\Plugin\\Pro\\Schema\\Graphs\\FAQPage' => __DIR__ . '/../..' . '/app/Pro/Schema/Graphs/FAQPage.php', - 'AIOSEO\\Plugin\\Pro\\Schema\\Graphs\\FactCheck' => __DIR__ . '/../..' . '/app/Pro/Schema/Graphs/FactCheck.php', - 'AIOSEO\\Plugin\\Pro\\Schema\\Graphs\\HowTo' => __DIR__ . '/../..' . '/app/Pro/Schema/Graphs/HowTo.php', - 'AIOSEO\\Plugin\\Pro\\Schema\\Graphs\\JobPosting' => __DIR__ . '/../..' . '/app/Pro/Schema/Graphs/JobPosting.php', - 'AIOSEO\\Plugin\\Pro\\Schema\\Graphs\\Movie' => __DIR__ . '/../..' . '/app/Pro/Schema/Graphs/Movie.php', - 'AIOSEO\\Plugin\\Pro\\Schema\\Graphs\\Music\\Music' => __DIR__ . '/../..' . '/app/Pro/Schema/Graphs/Music/Music.php', - 'AIOSEO\\Plugin\\Pro\\Schema\\Graphs\\Music\\MusicAlbum' => __DIR__ . '/../..' . '/app/Pro/Schema/Graphs/Music/MusicAlbum.php', - 'AIOSEO\\Plugin\\Pro\\Schema\\Graphs\\Music\\MusicGroup' => __DIR__ . '/../..' . '/app/Pro/Schema/Graphs/Music/MusicGroup.php', - 'AIOSEO\\Plugin\\Pro\\Schema\\Graphs\\Person' => __DIR__ . '/../..' . '/app/Pro/Schema/Graphs/Person.php', - 'AIOSEO\\Plugin\\Pro\\Schema\\Graphs\\Product\\EddProduct' => __DIR__ . '/../..' . '/app/Pro/Schema/Graphs/Product/EddProduct.php', - 'AIOSEO\\Plugin\\Pro\\Schema\\Graphs\\Product\\Product' => __DIR__ . '/../..' . '/app/Pro/Schema/Graphs/Product/Product.php', - 'AIOSEO\\Plugin\\Pro\\Schema\\Graphs\\Product\\WooCommerceProduct' => __DIR__ . '/../..' . '/app/Pro/Schema/Graphs/Product/WooCommerceProduct.php', - 'AIOSEO\\Plugin\\Pro\\Schema\\Graphs\\Recipe' => __DIR__ . '/../..' . '/app/Pro/Schema/Graphs/Recipe.php', - 'AIOSEO\\Plugin\\Pro\\Schema\\Graphs\\Service' => __DIR__ . '/../..' . '/app/Pro/Schema/Graphs/Service.php', - 'AIOSEO\\Plugin\\Pro\\Schema\\Graphs\\SoftwareApplication' => __DIR__ . '/../..' . '/app/Pro/Schema/Graphs/SoftwareApplication.php', - 'AIOSEO\\Plugin\\Pro\\Schema\\Graphs\\Video' => __DIR__ . '/../..' . '/app/Pro/Schema/Graphs/Video.php', - 'AIOSEO\\Plugin\\Pro\\Schema\\Schema' => __DIR__ . '/../..' . '/app/Pro/Schema/Schema.php', - 'AIOSEO\\Plugin\\Pro\\SearchStatistics\\Api\\Api' => __DIR__ . '/../..' . '/app/Pro/SearchStatistics/Api/Api.php', - 'AIOSEO\\Plugin\\Pro\\SearchStatistics\\Api\\Auth' => __DIR__ . '/../..' . '/app/Pro/SearchStatistics/Api/Auth.php', - 'AIOSEO\\Plugin\\Pro\\SearchStatistics\\Api\\Listener' => __DIR__ . '/../..' . '/app/Pro/SearchStatistics/Api/Listener.php', - 'AIOSEO\\Plugin\\Pro\\SearchStatistics\\Api\\Request' => __DIR__ . '/../..' . '/app/Pro/SearchStatistics/Api/Request.php', - 'AIOSEO\\Plugin\\Pro\\SearchStatistics\\Api\\TrustToken' => __DIR__ . '/../..' . '/app/Pro/SearchStatistics/Api/TrustToken.php', - 'AIOSEO\\Plugin\\Pro\\SearchStatistics\\Helpers' => __DIR__ . '/../..' . '/app/Pro/SearchStatistics/Helpers.php', - 'AIOSEO\\Plugin\\Pro\\SearchStatistics\\Markers' => __DIR__ . '/../..' . '/app/Pro/SearchStatistics/Markers.php', - 'AIOSEO\\Plugin\\Pro\\SearchStatistics\\Objects' => __DIR__ . '/../..' . '/app/Pro/SearchStatistics/Objects.php', - 'AIOSEO\\Plugin\\Pro\\SearchStatistics\\PageSpeed' => __DIR__ . '/../..' . '/app/Pro/SearchStatistics/PageSpeed.php', - 'AIOSEO\\Plugin\\Pro\\SearchStatistics\\SearchStatistics' => __DIR__ . '/../..' . '/app/Pro/SearchStatistics/SearchStatistics.php', - 'AIOSEO\\Plugin\\Pro\\SearchStatistics\\Stats\\Keywords' => __DIR__ . '/../..' . '/app/Pro/SearchStatistics/Stats/Keywords.php', - 'AIOSEO\\Plugin\\Pro\\SearchStatistics\\Stats\\Posts' => __DIR__ . '/../..' . '/app/Pro/SearchStatistics/Stats/Posts.php', - 'AIOSEO\\Plugin\\Pro\\SearchStatistics\\Stats\\Stats' => __DIR__ . '/../..' . '/app/Pro/SearchStatistics/Stats/Stats.php', - 'AIOSEO\\Plugin\\Pro\\SearchStatistics\\UrlInspection' => __DIR__ . '/../..' . '/app/Pro/SearchStatistics/UrlInspection.php', - 'AIOSEO\\Plugin\\Pro\\SeoRevisions\\Helpers' => __DIR__ . '/../..' . '/app/Pro/SeoRevisions/Helpers.php', - 'AIOSEO\\Plugin\\Pro\\SeoRevisions\\ObjectRevisions' => __DIR__ . '/../..' . '/app/Pro/SeoRevisions/ObjectRevisions.php', - 'AIOSEO\\Plugin\\Pro\\SeoRevisions\\SeoRevisions' => __DIR__ . '/../..' . '/app/Pro/SeoRevisions/SeoRevisions.php', - 'AIOSEO\\Plugin\\Pro\\SeoRevisions\\TextDiffRendererTable' => __DIR__ . '/../..' . '/app/Pro/SeoRevisions/TextDiffRendererTable.php', - 'AIOSEO\\Plugin\\Pro\\Sitemap\\Helpers' => __DIR__ . '/../..' . '/app/Pro/Sitemap/Helpers.php', - 'AIOSEO\\Plugin\\Pro\\Sitemap\\Priority' => __DIR__ . '/../..' . '/app/Pro/Sitemap/Priority.php', - 'AIOSEO\\Plugin\\Pro\\Sitemap\\Query' => __DIR__ . '/../..' . '/app/Pro/Sitemap/Query.php', - 'AIOSEO\\Plugin\\Pro\\Sitemap\\RequestParser' => __DIR__ . '/../..' . '/app/Pro/Sitemap/RequestParser.php', - 'AIOSEO\\Plugin\\Pro\\Sitemap\\Sitemap' => __DIR__ . '/../..' . '/app/Pro/Sitemap/Sitemap.php', - 'AIOSEO\\Plugin\\Pro\\Social\\Facebook' => __DIR__ . '/../..' . '/app/Pro/Social/Facebook.php', - 'AIOSEO\\Plugin\\Pro\\Social\\Image' => __DIR__ . '/../..' . '/app/Pro/Social/Image.php', - 'AIOSEO\\Plugin\\Pro\\Social\\Output' => __DIR__ . '/../..' . '/app/Pro/Social/Output.php', - 'AIOSEO\\Plugin\\Pro\\Social\\Social' => __DIR__ . '/../..' . '/app/Pro/Social/Social.php', - 'AIOSEO\\Plugin\\Pro\\Social\\Twitter' => __DIR__ . '/../..' . '/app/Pro/Social/Twitter.php', - 'AIOSEO\\Plugin\\Pro\\Standalone\\DetailsColumn' => __DIR__ . '/../..' . '/app/Pro/Standalone/DetailsColumn.php', - 'AIOSEO\\Plugin\\Pro\\Standalone\\PrimaryTerm' => __DIR__ . '/../..' . '/app/Pro/Standalone/PrimaryTerm.php', - 'AIOSEO\\Plugin\\Pro\\Traits\\Helpers\\ThirdParty' => __DIR__ . '/../..' . '/app/Pro/Traits/Helpers/ThirdParty.php', - 'AIOSEO\\Plugin\\Pro\\Traits\\Helpers\\Vue' => __DIR__ . '/../..' . '/app/Pro/Traits/Helpers/Vue.php', - 'AIOSEO\\Plugin\\Pro\\Traits\\NetworkOptions' => __DIR__ . '/../..' . '/app/Pro/Traits/NetworkOptions.php', - 'AIOSEO\\Plugin\\Pro\\Traits\\Options' => __DIR__ . '/../..' . '/app/Pro/Traits/Options.php', - 'AIOSEO\\Plugin\\Pro\\Traits\\Updates' => __DIR__ . '/../..' . '/app/Pro/Traits/Updates.php', - 'AIOSEO\\Plugin\\Pro\\Utils\\Access' => __DIR__ . '/../..' . '/app/Pro/Utils/Access.php', - 'AIOSEO\\Plugin\\Pro\\Utils\\Addons' => __DIR__ . '/../..' . '/app/Pro/Utils/Addons.php', - 'AIOSEO\\Plugin\\Pro\\Utils\\Features' => __DIR__ . '/../..' . '/app/Pro/Utils/Features.php', - 'AIOSEO\\Plugin\\Pro\\Utils\\Helpers' => __DIR__ . '/../..' . '/app/Pro/Utils/Helpers.php', - 'AIOSEO\\Plugin\\Pro\\Utils\\Tags' => __DIR__ . '/../..' . '/app/Pro/Utils/Tags.php', - 'AIOSEO\\Plugin\\Pro\\Utils\\Templates' => __DIR__ . '/../..' . '/app/Pro/Utils/Templates.php', 'AIOSEO\\Vendor\\Monolog\\ErrorHandler' => __DIR__ . '/../..' . '/vendor_prefixed/monolog/monolog/src/Monolog/ErrorHandler.php', 'AIOSEO\\Vendor\\Monolog\\Formatter\\ChromePHPFormatter' => __DIR__ . '/../..' . '/vendor_prefixed/monolog/monolog/src/Monolog/Formatter/ChromePHPFormatter.php', 'AIOSEO\\Vendor\\Monolog\\Formatter\\ElasticaFormatter' => __DIR__ . '/../..' . '/vendor_prefixed/monolog/monolog/src/Monolog/Formatter/ElasticaFormatter.php', @@ -586,63 +197,8 @@ class ComposerStaticInit651aebe52d12925c0afecab162ebab77 'AIOSEO\\Vendor\\Psr\\Log\\Test\\TestLogger' => __DIR__ . '/../..' . '/vendor_prefixed/psr/log/Psr/Log/Test/TestLogger.php', 'Attribute' => __DIR__ . '/..' . '/symfony/polyfill-php80/Resources/stubs/Attribute.php', 'Composer\\InstalledVersions' => __DIR__ . '/..' . '/composer/InstalledVersions.php', - 'Dotenv\\Dotenv' => __DIR__ . '/..' . '/vlucas/phpdotenv/src/Dotenv.php', - 'Dotenv\\Exception\\ExceptionInterface' => __DIR__ . '/..' . '/vlucas/phpdotenv/src/Exception/ExceptionInterface.php', - 'Dotenv\\Exception\\InvalidEncodingException' => __DIR__ . '/..' . '/vlucas/phpdotenv/src/Exception/InvalidEncodingException.php', - 'Dotenv\\Exception\\InvalidFileException' => __DIR__ . '/..' . '/vlucas/phpdotenv/src/Exception/InvalidFileException.php', - 'Dotenv\\Exception\\InvalidPathException' => __DIR__ . '/..' . '/vlucas/phpdotenv/src/Exception/InvalidPathException.php', - 'Dotenv\\Exception\\ValidationException' => __DIR__ . '/..' . '/vlucas/phpdotenv/src/Exception/ValidationException.php', - 'Dotenv\\Loader\\Loader' => __DIR__ . '/..' . '/vlucas/phpdotenv/src/Loader/Loader.php', - 'Dotenv\\Loader\\LoaderInterface' => __DIR__ . '/..' . '/vlucas/phpdotenv/src/Loader/LoaderInterface.php', - 'Dotenv\\Loader\\Resolver' => __DIR__ . '/..' . '/vlucas/phpdotenv/src/Loader/Resolver.php', - 'Dotenv\\Parser\\Entry' => __DIR__ . '/..' . '/vlucas/phpdotenv/src/Parser/Entry.php', - 'Dotenv\\Parser\\EntryParser' => __DIR__ . '/..' . '/vlucas/phpdotenv/src/Parser/EntryParser.php', - 'Dotenv\\Parser\\Lexer' => __DIR__ . '/..' . '/vlucas/phpdotenv/src/Parser/Lexer.php', - 'Dotenv\\Parser\\Lines' => __DIR__ . '/..' . '/vlucas/phpdotenv/src/Parser/Lines.php', - 'Dotenv\\Parser\\Parser' => __DIR__ . '/..' . '/vlucas/phpdotenv/src/Parser/Parser.php', - 'Dotenv\\Parser\\ParserInterface' => __DIR__ . '/..' . '/vlucas/phpdotenv/src/Parser/ParserInterface.php', - 'Dotenv\\Parser\\Value' => __DIR__ . '/..' . '/vlucas/phpdotenv/src/Parser/Value.php', - 'Dotenv\\Repository\\AdapterRepository' => __DIR__ . '/..' . '/vlucas/phpdotenv/src/Repository/AdapterRepository.php', - 'Dotenv\\Repository\\Adapter\\AdapterInterface' => __DIR__ . '/..' . '/vlucas/phpdotenv/src/Repository/Adapter/AdapterInterface.php', - 'Dotenv\\Repository\\Adapter\\ApacheAdapter' => __DIR__ . '/..' . '/vlucas/phpdotenv/src/Repository/Adapter/ApacheAdapter.php', - 'Dotenv\\Repository\\Adapter\\ArrayAdapter' => __DIR__ . '/..' . '/vlucas/phpdotenv/src/Repository/Adapter/ArrayAdapter.php', - 'Dotenv\\Repository\\Adapter\\EnvConstAdapter' => __DIR__ . '/..' . '/vlucas/phpdotenv/src/Repository/Adapter/EnvConstAdapter.php', - 'Dotenv\\Repository\\Adapter\\GuardedWriter' => __DIR__ . '/..' . '/vlucas/phpdotenv/src/Repository/Adapter/GuardedWriter.php', - 'Dotenv\\Repository\\Adapter\\ImmutableWriter' => __DIR__ . '/..' . '/vlucas/phpdotenv/src/Repository/Adapter/ImmutableWriter.php', - 'Dotenv\\Repository\\Adapter\\MultiReader' => __DIR__ . '/..' . '/vlucas/phpdotenv/src/Repository/Adapter/MultiReader.php', - 'Dotenv\\Repository\\Adapter\\MultiWriter' => __DIR__ . '/..' . '/vlucas/phpdotenv/src/Repository/Adapter/MultiWriter.php', - 'Dotenv\\Repository\\Adapter\\PutenvAdapter' => __DIR__ . '/..' . '/vlucas/phpdotenv/src/Repository/Adapter/PutenvAdapter.php', - 'Dotenv\\Repository\\Adapter\\ReaderInterface' => __DIR__ . '/..' . '/vlucas/phpdotenv/src/Repository/Adapter/ReaderInterface.php', - 'Dotenv\\Repository\\Adapter\\ReplacingWriter' => __DIR__ . '/..' . '/vlucas/phpdotenv/src/Repository/Adapter/ReplacingWriter.php', - 'Dotenv\\Repository\\Adapter\\ServerConstAdapter' => __DIR__ . '/..' . '/vlucas/phpdotenv/src/Repository/Adapter/ServerConstAdapter.php', - 'Dotenv\\Repository\\Adapter\\WriterInterface' => __DIR__ . '/..' . '/vlucas/phpdotenv/src/Repository/Adapter/WriterInterface.php', - 'Dotenv\\Repository\\RepositoryBuilder' => __DIR__ . '/..' . '/vlucas/phpdotenv/src/Repository/RepositoryBuilder.php', - 'Dotenv\\Repository\\RepositoryInterface' => __DIR__ . '/..' . '/vlucas/phpdotenv/src/Repository/RepositoryInterface.php', - 'Dotenv\\Store\\FileStore' => __DIR__ . '/..' . '/vlucas/phpdotenv/src/Store/FileStore.php', - 'Dotenv\\Store\\File\\Paths' => __DIR__ . '/..' . '/vlucas/phpdotenv/src/Store/File/Paths.php', - 'Dotenv\\Store\\File\\Reader' => __DIR__ . '/..' . '/vlucas/phpdotenv/src/Store/File/Reader.php', - 'Dotenv\\Store\\StoreBuilder' => __DIR__ . '/..' . '/vlucas/phpdotenv/src/Store/StoreBuilder.php', - 'Dotenv\\Store\\StoreInterface' => __DIR__ . '/..' . '/vlucas/phpdotenv/src/Store/StoreInterface.php', - 'Dotenv\\Store\\StringStore' => __DIR__ . '/..' . '/vlucas/phpdotenv/src/Store/StringStore.php', - 'Dotenv\\Util\\Regex' => __DIR__ . '/..' . '/vlucas/phpdotenv/src/Util/Regex.php', - 'Dotenv\\Util\\Str' => __DIR__ . '/..' . '/vlucas/phpdotenv/src/Util/Str.php', - 'Dotenv\\Validator' => __DIR__ . '/..' . '/vlucas/phpdotenv/src/Validator.php', - 'GrahamCampbell\\ResultType\\Error' => __DIR__ . '/..' . '/graham-campbell/result-type/src/Error.php', - 'GrahamCampbell\\ResultType\\Result' => __DIR__ . '/..' . '/graham-campbell/result-type/src/Result.php', - 'GrahamCampbell\\ResultType\\Success' => __DIR__ . '/..' . '/graham-campbell/result-type/src/Success.php', - 'InstituteWeb\\ComposerScripts\\ImprovedScriptExecution' => __DIR__ . '/..' . '/instituteweb/composer-scripts/src/ImprovedScriptExecution.php', - 'PHPInsight\\Autoloader' => __DIR__ . '/..' . '/jwhennessey/phpinsight/lib/PHPInsight/Autoloader.php', - 'PHPInsight\\Sentiment' => __DIR__ . '/..' . '/jwhennessey/phpinsight/lib/PHPInsight/Sentiment.php', - 'PhpOption\\LazyOption' => __DIR__ . '/..' . '/phpoption/phpoption/src/PhpOption/LazyOption.php', - 'PhpOption\\None' => __DIR__ . '/..' . '/phpoption/phpoption/src/PhpOption/None.php', - 'PhpOption\\Option' => __DIR__ . '/..' . '/phpoption/phpoption/src/PhpOption/Option.php', - 'PhpOption\\Some' => __DIR__ . '/..' . '/phpoption/phpoption/src/PhpOption/Some.php', 'PhpToken' => __DIR__ . '/..' . '/symfony/polyfill-php80/Resources/stubs/PhpToken.php', 'Stringable' => __DIR__ . '/..' . '/symfony/polyfill-php80/Resources/stubs/Stringable.php', - 'Symfony\\Polyfill\\Ctype\\Ctype' => __DIR__ . '/..' . '/symfony/polyfill-ctype/Ctype.php', - 'Symfony\\Polyfill\\Mbstring\\Mbstring' => __DIR__ . '/..' . '/symfony/polyfill-mbstring/Mbstring.php', - 'Symfony\\Polyfill\\Php80\\Php80' => __DIR__ . '/..' . '/symfony/polyfill-php80/Php80.php', - 'Symfony\\Polyfill\\Php80\\PhpToken' => __DIR__ . '/..' . '/symfony/polyfill-php80/PhpToken.php', 'UnhandledMatchError' => __DIR__ . '/..' . '/symfony/polyfill-php80/Resources/stubs/UnhandledMatchError.php', 'ValueError' => __DIR__ . '/..' . '/symfony/polyfill-php80/Resources/stubs/ValueError.php', ); @@ -650,10 +206,10 @@ class ComposerStaticInit651aebe52d12925c0afecab162ebab77 public static function getInitializer(ClassLoader $loader) { return \Closure::bind(function () use ($loader) { - $loader->prefixLengthsPsr4 = ComposerStaticInit651aebe52d12925c0afecab162ebab77::$prefixLengthsPsr4; - $loader->prefixDirsPsr4 = ComposerStaticInit651aebe52d12925c0afecab162ebab77::$prefixDirsPsr4; - $loader->prefixesPsr0 = ComposerStaticInit651aebe52d12925c0afecab162ebab77::$prefixesPsr0; - $loader->classMap = ComposerStaticInit651aebe52d12925c0afecab162ebab77::$classMap; + $loader->prefixLengthsPsr4 = ComposerStaticInit7eb11f5f8ea46ec64cbb126389b52db1::$prefixLengthsPsr4; + $loader->prefixDirsPsr4 = ComposerStaticInit7eb11f5f8ea46ec64cbb126389b52db1::$prefixDirsPsr4; + $loader->prefixesPsr0 = ComposerStaticInit7eb11f5f8ea46ec64cbb126389b52db1::$prefixesPsr0; + $loader->classMap = ComposerStaticInit7eb11f5f8ea46ec64cbb126389b52db1::$classMap; }, null, ClassLoader::class); } diff --git a/vendor/composer/installed.php b/vendor/composer/installed.php index bd124161e..216e16c23 100644 --- a/vendor/composer/installed.php +++ b/vendor/composer/installed.php @@ -1,9 +1,9 @@ array( 'name' => 'awesomemotive/all-in-one-seo-pack-pro', - 'pretty_version' => '1.0.0+no-version-set', - 'version' => '1.0.0.0', - 'reference' => null, + 'pretty_version' => 'dev-develop', + 'version' => 'dev-develop', + 'reference' => 'c1bae5de6c56c74c4fb4cc7e4bf1f70b6fef46b0', 'type' => 'library', 'install_path' => __DIR__ . '/../../', 'aliases' => array(), @@ -11,9 +11,9 @@ ), 'versions' => array( 'awesomemotive/all-in-one-seo-pack-pro' => array( - 'pretty_version' => '1.0.0+no-version-set', - 'version' => '1.0.0.0', - 'reference' => null, + 'pretty_version' => 'dev-develop', + 'version' => 'dev-develop', + 'reference' => 'c1bae5de6c56c74c4fb4cc7e4bf1f70b6fef46b0', 'type' => 'library', 'install_path' => __DIR__ . '/../../', 'aliases' => array(),