@todesktop/shared 7.37.0 → 7.37.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.
@@ -137,7 +137,7 @@ export declare const isPlatformBuildRunning: (platformBuild: PlatformBuild) => b
137
137
  export declare const isCiBuildRunning: (build: Build) => boolean;
138
138
  export declare const isBuildRunning: (build: Build) => boolean;
139
139
  export declare const isBuildCancellable: (build: Build) => boolean;
140
- export interface IDesktopifyApp {
140
+ export interface DesktopifyApp {
141
141
  name: string;
142
142
  targetUrl: string;
143
143
  appId: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@todesktop/shared",
3
- "version": "7.37.0",
3
+ "version": "7.37.1",
4
4
  "description": "",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",
package/src/desktopify.ts CHANGED
@@ -250,7 +250,7 @@ export const isBuildRunning = (build: Build): boolean => {
250
250
  export const isBuildCancellable = (build: Build): boolean =>
251
251
  hasBuildKickedOff(build) && isBuildRunning(build);
252
252
 
253
- export interface IDesktopifyApp {
253
+ export interface DesktopifyApp {
254
254
  name: string;
255
255
  targetUrl: string;
256
256
  appId: string;