@rocket.chat/desktop-api 1.0.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,11 @@
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
+
3
9
  ## 1.0.0
4
10
 
5
11
  ### 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",
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
  }