@backstage/core-app-api 1.0.4-next.0 → 1.0.4-next.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # @backstage/core-app-api
2
2
 
3
+ ## 1.0.4-next.1
4
+
5
+ ### Patch Changes
6
+
7
+ - 881fc75a75: Internal tweak removing usage of explicit type parameters for the `BackstagePlugin` type.
8
+ - a70869e775: Updated dependency `msw` to `^0.43.0`.
9
+ - Updated dependencies
10
+ - @backstage/core-plugin-api@1.0.4-next.0
11
+
3
12
  ## 1.0.4-next.0
4
13
 
5
14
  ### Patch Changes
package/dist/index.d.ts CHANGED
@@ -663,7 +663,7 @@ declare type AppOptions = {
663
663
  /**
664
664
  * A list of all plugins to include in the app.
665
665
  */
666
- plugins?: Array<BackstagePlugin<any, any> & {
666
+ plugins?: Array<BackstagePlugin & {
667
667
  output?(): Array<{
668
668
  type: 'feature-flag';
669
669
  name: string;
@@ -747,7 +747,7 @@ declare type BackstageApp = {
747
747
  /**
748
748
  * Returns all plugins registered for the app.
749
749
  */
750
- getPlugins(): BackstagePlugin<any, any>[];
750
+ getPlugins(): BackstagePlugin[];
751
751
  /**
752
752
  * Get a common or custom icon for this app.
753
753
  */
@@ -773,7 +773,7 @@ declare type AppContext = {
773
773
  /**
774
774
  * Get a list of all plugins that are installed in the app.
775
775
  */
776
- getPlugins(): BackstagePlugin<any, any>[];
776
+ getPlugins(): BackstagePlugin[];
777
777
  /**
778
778
  * Get a common or custom icon for this app.
779
779
  */