@todesktop/shared 7.184.13 → 7.184.15

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.
@@ -35,7 +35,7 @@ export declare type Arch = "ia32" | "x64" | "arm64";
35
35
  export declare type MacArch = "ia32" | "x64" | "arm64" | "universal";
36
36
  export declare type LinuxArtifactName = "appImage" | "deb" | "rpm" | "snap";
37
37
  export declare type MacArtifactName = "dmg" | "zip" | "installer";
38
- export declare type WindowsArtifactName = "msi" | "nsis" | "nsis-web" | "appx";
38
+ export declare type WindowsArtifactName = "msi" | "nsis" | "nsis-web" | "nsis-web-7z" | "appx";
39
39
  declare type ArtifactDownload = Record<Arch, {
40
40
  size: number;
41
41
  standardUrl: URL;
@@ -86,6 +86,7 @@ export interface CustomNotarization {
86
86
  appleId: string;
87
87
  appleIdPassword: string;
88
88
  ascProvider?: string;
89
+ teamId?: string;
89
90
  }
90
91
  export declare enum WindowsHSMCertType {
91
92
  ev = "ev",
@@ -116,6 +117,7 @@ export interface IApp extends BaseApp {
116
117
  appleId: string;
117
118
  appleIdPassword: string;
118
119
  ascProvider?: string;
120
+ teamId?: string;
119
121
  };
120
122
  customUserAgent?: ISwitchableValue<string>;
121
123
  customWindowsCodeSign?: CustomWindowsCodeSignFile | CustomWindowsCodeSignEV;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@todesktop/shared",
3
- "version": "7.184.13",
3
+ "version": "7.184.15",
4
4
  "description": "",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",
package/src/desktopify.ts CHANGED
@@ -50,7 +50,12 @@ export type Arch = "ia32" | "x64" | "arm64";
50
50
  export type MacArch = "ia32" | "x64" | "arm64" | "universal";
51
51
  export type LinuxArtifactName = "appImage" | "deb" | "rpm" | "snap";
52
52
  export type MacArtifactName = "dmg" | "zip" | "installer";
53
- export type WindowsArtifactName = "msi" | "nsis" | "nsis-web" | "appx";
53
+ export type WindowsArtifactName =
54
+ | "msi"
55
+ | "nsis"
56
+ | "nsis-web"
57
+ | "nsis-web-7z"
58
+ | "appx";
54
59
 
55
60
  type ArtifactDownload = Record<
56
61
  Arch,
package/src/toDesktop.ts CHANGED
@@ -103,6 +103,7 @@ export interface CustomNotarization {
103
103
  appleId: string;
104
104
  appleIdPassword: string;
105
105
  ascProvider?: string;
106
+ teamId?: string;
106
107
  }
107
108
 
108
109
  export enum WindowsHSMCertType {
@@ -138,6 +139,7 @@ export interface IApp extends BaseApp {
138
139
  appleId: string;
139
140
  appleIdPassword: string;
140
141
  ascProvider?: string;
142
+ teamId?: string;
141
143
  };
142
144
  customUserAgent?: ISwitchableValue<string>;
143
145
  customWindowsCodeSign?: CustomWindowsCodeSignFile | CustomWindowsCodeSignEV;