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