@@ -17,7 +17,7 @@ export default function ({ getService, getPageObjects }: PluginFunctionalProvide
1717 const PageObjects = getPageObjects ( [ 'common' ] ) ;
1818 const browser = getService ( 'browser' ) ;
1919
20- const CorePluginDeprecationsPluginDeprecations = [
20+ const CorePluginDeprecationsPluginDeprecations : DomainDeprecationDetails [ ] = [
2121 {
2222 level : 'critical' ,
2323 message :
@@ -27,6 +27,7 @@ export default function ({ getService, getPageObjects }: PluginFunctionalProvide
2727 'Replace "corePluginDeprecations.oldProperty" with "corePluginDeprecations.newProperty" in the Kibana config file, CLI flag, or environment variable (in Docker only).' ,
2828 ] ,
2929 } ,
30+ deprecationType : 'config' ,
3031 domainId : 'corePluginDeprecations' ,
3132 } ,
3233 {
@@ -37,6 +38,7 @@ export default function ({ getService, getPageObjects }: PluginFunctionalProvide
3738 'Remove "corePluginDeprecations.noLongerUsed" from the Kibana config file, CLI flag, or environment variable (in Docker only)' ,
3839 ] ,
3940 } ,
41+ deprecationType : 'config' ,
4042 domainId : 'corePluginDeprecations' ,
4143 } ,
4244 {
@@ -45,6 +47,7 @@ export default function ({ getService, getPageObjects }: PluginFunctionalProvide
4547 'Kibana plugin functional tests will no longer allow corePluginDeprecations.secret config to be set to anything except 42.' ,
4648 correctiveActions : { } ,
4749 documentationUrl : 'config-secret-doc-url' ,
50+ deprecationType : 'config' ,
4851 domainId : 'corePluginDeprecations' ,
4952 } ,
5053 {
@@ -54,6 +57,7 @@ export default function ({ getService, getPageObjects }: PluginFunctionalProvide
5457 correctiveActions : {
5558 manualSteps : [ 'Step a' , 'Step b' ] ,
5659 } ,
60+ deprecationType : 'feature' ,
5761 domainId : 'corePluginDeprecations' ,
5862 } ,
5963 {
0 commit comments