@todesktop/shared 7.184.12 → 7.184.14
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/toDesktop.d.ts +2 -0
- package/package.json +1 -1
- package/src/base.ts +6 -0
- package/src/toDesktop.ts +2 -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/toDesktop.d.ts
CHANGED
|
@@ -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
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/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;
|