@todesktop/shared 7.188.45 → 7.188.46

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
@@ -246,6 +246,7 @@ export interface BaseApp extends Schemable {
246
246
  shouldCreateDebianPackages?: boolean;
247
247
  shouldCreateDMGs?: boolean;
248
248
  shouldCreateMacAppStoreFiles?: boolean;
249
+ shouldCreateMacPKG?: boolean;
249
250
  shouldCreateMacUniversalInstaller?: boolean;
250
251
  shouldCreateMacZipInstallers?: boolean;
251
252
  shouldCreateMSIInstallers?: boolean;
@@ -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' | 'mas';
48
+ export declare type MacArtifactName = 'dmg' | 'zip' | 'installer' | 'mas' | 'pkg';
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.45",
3
+ "version": "7.188.46",
4
4
  "description": "",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",
package/src/base.ts CHANGED
@@ -282,6 +282,7 @@ export interface BaseApp extends Schemable {
282
282
  shouldCreateDebianPackages?: boolean;
283
283
  shouldCreateDMGs?: boolean;
284
284
  shouldCreateMacAppStoreFiles?: boolean;
285
+ shouldCreateMacPKG?: boolean;
285
286
  shouldCreateMacUniversalInstaller?: boolean;
286
287
  shouldCreateMacZipInstallers?: boolean;
287
288
  shouldCreateMSIInstallers?: boolean;
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' | 'mas';
65
+ export type MacArtifactName = 'dmg' | 'zip' | 'installer' | 'mas' | 'pkg';
66
66
  export type WindowsArtifactName =
67
67
  | 'msi'
68
68
  | 'nsis'