@todesktop/shared 7.188.14 → 7.188.16

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.
@@ -37,7 +37,8 @@ export declare enum AnalysisStatus {
37
37
  downloading = "downloading",
38
38
  extracting = "extracting",
39
39
  analyzing = "analyzing",
40
- done = "done"
40
+ done = "done",
41
+ error = "error"
41
42
  }
42
43
  export declare type Arch = 'ia32' | 'x64' | 'arm64' | 'universal';
43
44
  export declare type MacArch = 'x64' | 'arm64' | 'universal';
package/lib/desktopify.js CHANGED
@@ -30,6 +30,7 @@ var AnalysisStatus;
30
30
  AnalysisStatus["extracting"] = "extracting";
31
31
  AnalysisStatus["analyzing"] = "analyzing";
32
32
  AnalysisStatus["done"] = "done";
33
+ AnalysisStatus["error"] = "error";
33
34
  })(AnalysisStatus = exports.AnalysisStatus || (exports.AnalysisStatus = {}));
34
35
  var ManifestCategory;
35
36
  (function (ManifestCategory) {
@@ -147,6 +147,7 @@ export interface IUser extends Schemable {
147
147
  featureFlags?: FeatureFlags;
148
148
  disableShouldCodeSign?: boolean;
149
149
  allowedIPs?: string[];
150
+ seenReleaseTutorial?: boolean;
150
151
  }
151
152
  export interface FeatureFlags {
152
153
  desktopAppPlugins: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@todesktop/shared",
3
- "version": "7.188.14",
3
+ "version": "7.188.16",
4
4
  "description": "",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",
package/src/desktopify.ts CHANGED
@@ -54,6 +54,7 @@ export enum AnalysisStatus {
54
54
  extracting = 'extracting',
55
55
  analyzing = 'analyzing',
56
56
  done = 'done',
57
+ error = 'error',
57
58
  }
58
59
 
59
60
  export type Arch = 'ia32' | 'x64' | 'arm64' | 'universal';
package/src/toDesktop.ts CHANGED
@@ -163,6 +163,7 @@ export interface IUser extends Schemable {
163
163
  featureFlags?: FeatureFlags;
164
164
  disableShouldCodeSign?: boolean;
165
165
  allowedIPs?: string[];
166
+ seenReleaseTutorial?: boolean;
166
167
  }
167
168
 
168
169
  export interface FeatureFlags {