@todesktop/shared 7.189.9 → 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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@todesktop/shared",
3
- "version": "7.189.9",
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 {