@todesktop/shared 7.189.9 → 7.189.11

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;
@@ -241,6 +245,7 @@ export interface BaseApp extends Schemable {
241
245
  id: string;
242
246
  appModelId?: string;
243
247
  customDomain?: string;
248
+ domainVerificationCode?: string;
244
249
  customMacCodeSign?: CustomMacCodeSign;
245
250
  customNotarization?: CustomMacNotarization;
246
251
  customLinuxPgpKey?: CustomLinuxPGPKey;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@todesktop/shared",
3
- "version": "7.189.9",
3
+ "version": "7.189.11",
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 {
@@ -275,6 +279,7 @@ export interface BaseApp extends Schemable {
275
279
  id: string;
276
280
  appModelId?: string;
277
281
  customDomain?: string;
282
+ domainVerificationCode?: string;
278
283
  customMacCodeSign?: CustomMacCodeSign;
279
284
  customNotarization?: CustomMacNotarization;
280
285
  customLinuxPgpKey?: CustomLinuxPGPKey;