@todesktop/shared 7.188.15 → 7.188.17

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/lib/base.d.ts CHANGED
@@ -133,6 +133,7 @@ export interface ToDesktopJson {
133
133
  category?: string;
134
134
  dmgBackground?: FilePath;
135
135
  entitlements?: FilePath;
136
+ provisioningProfile?: FilePath;
136
137
  extendInfo?: IAppBuilderLib['config']['mac']['extendInfo'];
137
138
  icon?: FilePath;
138
139
  requirements?: FilePath;
@@ -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.15",
3
+ "version": "7.188.17",
4
4
  "description": "",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",
package/src/base.ts CHANGED
@@ -145,6 +145,7 @@ export interface ToDesktopJson {
145
145
  category?: string;
146
146
  dmgBackground?: FilePath;
147
147
  entitlements?: FilePath;
148
+ provisioningProfile?: FilePath;
148
149
  extendInfo?: IAppBuilderLib['config']['mac']['extendInfo'];
149
150
  icon?: FilePath;
150
151
  requirements?: FilePath;
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 {