@todesktop/shared 7.184.11 → 7.184.13
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 +2 -0
- package/lib/desktopify2.d.ts +4 -0
- package/package.json +1 -1
- package/src/base.ts +6 -0
- package/src/desktopify2.ts +4 -0
package/lib/base.d.ts
CHANGED
|
@@ -166,4 +166,6 @@ export interface BaseApp extends Schemable {
|
|
|
166
166
|
shouldCreateRPMPackages?: boolean;
|
|
167
167
|
shouldCreateSnapFiles?: boolean;
|
|
168
168
|
shouldCreateMacUniversalInstaller?: boolean;
|
|
169
|
+
appxConfig?: Partial<IAppBuilderLib["config"]["appx"]>;
|
|
170
|
+
nsisConfig?: Partial<IAppBuilderLib["config"]["nsis"]>;
|
|
169
171
|
}
|
package/lib/desktopify2.d.ts
CHANGED
|
@@ -205,6 +205,10 @@ export interface DesktopifyApp2 {
|
|
|
205
205
|
* Last desktopify version that was used to update the app
|
|
206
206
|
*/
|
|
207
207
|
lastUsedDesktopifyVersion?: string;
|
|
208
|
+
/**
|
|
209
|
+
* Last todesktop builder version that was used to update the app
|
|
210
|
+
*/
|
|
211
|
+
lastUsedBuilderVersion?: string;
|
|
208
212
|
/**
|
|
209
213
|
* The name of the app
|
|
210
214
|
*/
|
package/package.json
CHANGED
package/src/base.ts
CHANGED
|
@@ -165,6 +165,8 @@ export interface BaseApp extends Schemable {
|
|
|
165
165
|
itemId: string;
|
|
166
166
|
planId: string;
|
|
167
167
|
};
|
|
168
|
+
|
|
169
|
+
// artifacts
|
|
168
170
|
shouldCreate32BitWindowsArtifacts?: boolean;
|
|
169
171
|
shouldCreateArm64WindowsArtifacts?: boolean;
|
|
170
172
|
shouldCreateAppXFiles?: boolean;
|
|
@@ -179,4 +181,8 @@ export interface BaseApp extends Schemable {
|
|
|
179
181
|
shouldCreateRPMPackages?: boolean;
|
|
180
182
|
shouldCreateSnapFiles?: boolean;
|
|
181
183
|
shouldCreateMacUniversalInstaller?: boolean;
|
|
184
|
+
|
|
185
|
+
// artifact configs
|
|
186
|
+
appxConfig?: Partial<IAppBuilderLib["config"]["appx"]>;
|
|
187
|
+
nsisConfig?: Partial<IAppBuilderLib["config"]["nsis"]>;
|
|
182
188
|
}
|
package/src/desktopify2.ts
CHANGED
|
@@ -329,6 +329,10 @@ export interface DesktopifyApp2 {
|
|
|
329
329
|
* Last desktopify version that was used to update the app
|
|
330
330
|
*/
|
|
331
331
|
lastUsedDesktopifyVersion?: string;
|
|
332
|
+
/**
|
|
333
|
+
* Last todesktop builder version that was used to update the app
|
|
334
|
+
*/
|
|
335
|
+
lastUsedBuilderVersion?: string;
|
|
332
336
|
/**
|
|
333
337
|
* The name of the app
|
|
334
338
|
*/
|