@todesktop/shared 7.188.20 → 7.188.22

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
@@ -243,6 +243,7 @@ export interface BaseApp extends Schemable {
243
243
  shouldCreateRPMPackages?: boolean;
244
244
  shouldCreateSnapFiles?: boolean;
245
245
  appxConfig?: Partial<IAppBuilderLib['config']['appx']>;
246
+ masConfig?: Partial<IAppBuilderLib['config']['mas']>;
246
247
  nsisConfig?: Partial<IAppBuilderLib['config']['nsis']>;
247
248
  snapStore?: {
248
249
  login?: string;
@@ -45,7 +45,7 @@ export declare type MacArch = 'x64' | 'arm64' | 'universal';
45
45
  export declare type LinuxArch = 'x64' | 'arm64';
46
46
  export declare type WindowsArch = 'ia32' | 'x64' | 'arm64' | 'universal';
47
47
  export declare type LinuxArtifactName = 'appImage' | 'deb' | 'rpm' | 'snap';
48
- export declare type MacArtifactName = 'dmg' | 'zip' | 'installer';
48
+ export declare type MacArtifactName = 'dmg' | 'zip' | 'installer' | 'mas';
49
49
  export declare type WindowsArtifactName = 'msi' | 'nsis' | 'nsis-web' | 'nsis-web-7z' | 'appx';
50
50
  declare type ArtifactDownload = Record<Arch, {
51
51
  size: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@todesktop/shared",
3
- "version": "7.188.20",
3
+ "version": "7.188.22",
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
 
280
280
  // artifact configs
281
281
  appxConfig?: Partial<IAppBuilderLib['config']['appx']>;
282
+ masConfig?: Partial<IAppBuilderLib['config']['mas']>;
282
283
  nsisConfig?: Partial<IAppBuilderLib['config']['nsis']>;
283
284
  snapStore?: { login?: string; description?: string };
284
285
  }
package/src/desktopify.ts CHANGED
@@ -62,7 +62,7 @@ export type MacArch = 'x64' | 'arm64' | 'universal';
62
62
  export type LinuxArch = 'x64' | 'arm64';
63
63
  export type WindowsArch = 'ia32' | 'x64' | 'arm64' | 'universal';
64
64
  export type LinuxArtifactName = 'appImage' | 'deb' | 'rpm' | 'snap';
65
- export type MacArtifactName = 'dmg' | 'zip' | 'installer';
65
+ export type MacArtifactName = 'dmg' | 'zip' | 'installer' | 'mas';
66
66
  export type WindowsArtifactName =
67
67
  | 'msi'
68
68
  | 'nsis'