@automattic/jetpack-components 0.49.2 → 0.50.0

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
@@ -2,6 +2,10 @@
2
2
 
3
3
  ### This is a list detailing changes for the Jetpack RNA Components package releases.
4
4
 
5
+ ## [0.50.0] - 2024-03-07
6
+ ### Added
7
+ - Fix typescript errors [#35904]
8
+
5
9
  ## [0.49.2] - 2024-03-04
6
10
  ### Changed
7
11
  - Updated package dependencies.
@@ -967,6 +971,7 @@
967
971
  ### Changed
968
972
  - Update node version requirement to 14.16.1
969
973
 
974
+ [0.50.0]: https://github.com/Automattic/jetpack-components/compare/0.49.2...0.50.0
970
975
  [0.49.2]: https://github.com/Automattic/jetpack-components/compare/0.49.1...0.49.2
971
976
  [0.49.1]: https://github.com/Automattic/jetpack-components/compare/0.49.0...0.49.1
972
977
  [0.49.0]: https://github.com/Automattic/jetpack-components/compare/0.48.4...0.49.0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@automattic/jetpack-components",
3
- "version": "0.49.2",
3
+ "version": "0.50.0",
4
4
  "description": "Jetpack Components Package",
5
5
  "author": "Automattic",
6
6
  "license": "GPL-2.0-or-later",
@@ -1,4 +1,3 @@
1
- import './types.ts';
2
1
  /**
3
2
  * Returns the site admin URL.
4
3
  *
@@ -38,11 +38,6 @@ export type QueryVars = {
38
38
  };
39
39
 
40
40
  declare global {
41
- interface Window {
42
- JP_CONNECTION_INITIAL_STATE: {
43
- calypsoEnv?: string;
44
- };
45
- }
46
41
  const jetpack_redirects: {
47
42
  currentSiteRawUrl?: string;
48
43
  currentBlogID?: string;
@@ -1,14 +0,0 @@
1
- declare global {
2
- interface Window {
3
- Initial_State?: {
4
- adminUrl?: string;
5
- };
6
- Jetpack_Editor_Initial_State?: {
7
- adminUrl?: string;
8
- };
9
- myJetpackInitialState?: {
10
- adminUrl?: string;
11
- };
12
- }
13
- }
14
- export {};