@todesktop/shared 7.188.18 → 7.188.19-beta.1

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/src/toDesktop.ts CHANGED
@@ -157,11 +157,15 @@ export interface IUser extends Schemable {
157
157
  disableShouldCodeSign?: boolean;
158
158
  allowedIPs?: string[];
159
159
  seenReleaseTutorial?: boolean;
160
+ seenApplicationGroupsTutorial?: boolean;
160
161
  }
161
162
 
162
163
  export interface FeatureFlags {
163
164
  // Whether the user can install desktop app plugins using the ToDesktop Builder
164
165
  desktopAppPlugins: boolean;
166
+
167
+ // Whether the user can create builds for the mac app store.
168
+ macAppStore: boolean;
165
169
  }
166
170
 
167
171
  // uses an `email` identifier because an invited user may not have an account
package/.eslintrc.js DELETED
@@ -1,33 +0,0 @@
1
- 'use strict';
2
-
3
- module.exports = {
4
- root: true,
5
-
6
- extends: [
7
- 'eslint:recommended',
8
- 'plugin:@typescript-eslint/recommended',
9
- 'prettier',
10
- ],
11
-
12
- parser: '@typescript-eslint/parser',
13
- parserOptions: {
14
- ecmaVersion: 2020,
15
- sourceType: 'module',
16
- project: './tsconfig.json',
17
- },
18
-
19
- env: {
20
- es6: true,
21
- node: true,
22
- },
23
-
24
- plugins: ['@typescript-eslint', 'prettier'],
25
-
26
- rules: {
27
- 'prettier/prettier': 'error',
28
- '@typescript-eslint/no-misused-promises': [
29
- 'error',
30
- { checksVoidReturn: false },
31
- ],
32
- },
33
- };