@todesktop/shared 7.186.14 → 7.186.16
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 +3 -1
- package/package.json +1 -1
- package/src/base.ts +3 -1
package/lib/base.d.ts
CHANGED
|
@@ -2,7 +2,7 @@ import { ExtraFileReference, FilePath, IAppBuilderLib, Release } from './desktop
|
|
|
2
2
|
export interface Schemable {
|
|
3
3
|
schemaVersion?: number;
|
|
4
4
|
}
|
|
5
|
-
export declare type ProgressTypes = 'progress' | 'done' | 'error';
|
|
5
|
+
export declare type ProgressTypes = 'queued' | 'progress' | 'done' | 'error';
|
|
6
6
|
export interface IChecklistItem {
|
|
7
7
|
[id: string]: boolean;
|
|
8
8
|
}
|
|
@@ -93,6 +93,7 @@ export interface IAppMeta {
|
|
|
93
93
|
nodeVersion?: string;
|
|
94
94
|
npmVersion?: string;
|
|
95
95
|
packageManager?: 'npm' | 'yarn' | 'pnpm';
|
|
96
|
+
pnpmVersion?: string;
|
|
96
97
|
productName?: string;
|
|
97
98
|
schemaVersion: number;
|
|
98
99
|
snap?: IAppBuilderLib['config']['snap'];
|
|
@@ -106,6 +107,7 @@ export interface IAppMeta {
|
|
|
106
107
|
};
|
|
107
108
|
nsisInclude?: FilePath;
|
|
108
109
|
};
|
|
110
|
+
yarnVersion?: string;
|
|
109
111
|
};
|
|
110
112
|
shouldCodeSign?: boolean;
|
|
111
113
|
shouldRelease?: boolean;
|
package/package.json
CHANGED
package/src/base.ts
CHANGED
|
@@ -8,7 +8,7 @@ export interface Schemable {
|
|
|
8
8
|
schemaVersion?: number;
|
|
9
9
|
}
|
|
10
10
|
|
|
11
|
-
export type ProgressTypes = 'progress' | 'done' | 'error';
|
|
11
|
+
export type ProgressTypes = 'queued' | 'progress' | 'done' | 'error';
|
|
12
12
|
|
|
13
13
|
export interface IChecklistItem {
|
|
14
14
|
[id: string]: boolean;
|
|
@@ -105,6 +105,7 @@ export interface IAppMeta {
|
|
|
105
105
|
nodeVersion?: string;
|
|
106
106
|
npmVersion?: string;
|
|
107
107
|
packageManager?: 'npm' | 'yarn' | 'pnpm';
|
|
108
|
+
pnpmVersion?: string;
|
|
108
109
|
productName?: string;
|
|
109
110
|
schemaVersion: number;
|
|
110
111
|
snap?: IAppBuilderLib['config']['snap'];
|
|
@@ -118,6 +119,7 @@ export interface IAppMeta {
|
|
|
118
119
|
};
|
|
119
120
|
nsisInclude?: FilePath;
|
|
120
121
|
};
|
|
122
|
+
yarnVersion?: string;
|
|
121
123
|
};
|
|
122
124
|
shouldCodeSign?: boolean;
|
|
123
125
|
shouldRelease?: boolean;
|