@todesktop/shared 7.189.8 → 7.189.10

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
@@ -96,6 +96,10 @@ export interface IAppMeta {
96
96
  [WindowsEVOnboardingSteps.hasUploadedCert]: boolean;
97
97
  };
98
98
  forceVersionNumber?: string;
99
+ webhooks?: {
100
+ release?: string;
101
+ };
102
+ webhookHMACKey?: string;
99
103
  }
100
104
  export interface ToDesktopJson {
101
105
  appBuilderLibVersion?: string;
@@ -159,6 +163,7 @@ export interface ToDesktopJson {
159
163
  rebuildLibrary?: 'app-builder' | '@electron/rebuild';
160
164
  schemaVersion: number;
161
165
  snap?: IAppBuilderLib['config']['snap'];
166
+ updateUrlBase?: string;
162
167
  uploadSizeLimit?: number;
163
168
  useCachedDependencies?: boolean;
164
169
  windows?: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@todesktop/shared",
3
- "version": "7.189.8",
3
+ "version": "7.189.10",
4
4
  "description": "",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",
package/src/base.ts CHANGED
@@ -109,6 +109,10 @@ export interface IAppMeta {
109
109
  [WindowsEVOnboardingSteps.hasUploadedCert]: boolean;
110
110
  };
111
111
  forceVersionNumber?: string;
112
+ webhooks?: {
113
+ release?: string;
114
+ };
115
+ webhookHMACKey?: string;
112
116
  }
113
117
 
114
118
  export interface ToDesktopJson {
@@ -173,6 +177,7 @@ export interface ToDesktopJson {
173
177
  rebuildLibrary?: 'app-builder' | '@electron/rebuild';
174
178
  schemaVersion: number;
175
179
  snap?: IAppBuilderLib['config']['snap'];
180
+ updateUrlBase?: string;
176
181
  uploadSizeLimit?: number;
177
182
  useCachedDependencies?: boolean;
178
183
  windows?: {