@rocket.chat/desktop-api 1.0.0-rc.0 → 1.1.0-rc.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
@@ -1,5 +1,17 @@
1
1
  # @rocket.chat/desktop-api
2
2
 
3
+ ## 1.1.0-rc.0
4
+
5
+ ### Minor Changes
6
+
7
+ - ([#36912](https://github.com/RocketChat/Rocket.Chat/pull/36912)) Defines `reloadServer()` method for the context bridge object type.
8
+
9
+ ## 1.0.0
10
+
11
+ ### Major Changes
12
+
13
+ - ([#36770](https://github.com/RocketChat/Rocket.Chat/pull/36770)) Adds a new package (`@rocket.chat/desktop-api`) to interface the desktop app's injected context
14
+
3
15
  ## 1.0.0-rc.0
4
16
 
5
17
  ### Major Changes
package/dist/index.d.ts CHANGED
@@ -44,4 +44,5 @@ export interface IRocketChatDesktop {
44
44
  clearOutlookCredentials: () => void;
45
45
  setUserToken: (token: string, userId: string) => void;
46
46
  openDocumentViewer: (url: string, format: string, options: any) => void;
47
+ reloadServer: () => void;
47
48
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://www.schemastore.org/package",
3
3
  "name": "@rocket.chat/desktop-api",
4
- "version": "1.0.0-rc.0",
4
+ "version": "1.1.0-rc.0",
5
5
  "type": "module",
6
6
  "exports": {
7
7
  ".": {
package/src/index.ts CHANGED
@@ -48,4 +48,5 @@ export interface IRocketChatDesktop {
48
48
  clearOutlookCredentials: () => void;
49
49
  setUserToken: (token: string, userId: string) => void;
50
50
  openDocumentViewer: (url: string, format: string, options: any) => void;
51
+ reloadServer: () => void;
51
52
  }