@todesktop/shared 7.189.12 → 7.189.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/toDesktop.d.ts +13 -0
- package/package.json +1 -1
- package/src/toDesktop.ts +13 -0
package/lib/toDesktop.d.ts
CHANGED
|
@@ -174,4 +174,17 @@ export interface CiInput {
|
|
|
174
174
|
userId: string;
|
|
175
175
|
contextUserId: string;
|
|
176
176
|
accessToken: string;
|
|
177
|
+
azureTrustedSigning?: {
|
|
178
|
+
credentials: {
|
|
179
|
+
AZURE_TENANT_ID: string;
|
|
180
|
+
AZURE_CLIENT_ID: string;
|
|
181
|
+
AZURE_CLIENT_SECRET: string;
|
|
182
|
+
};
|
|
183
|
+
settings: {
|
|
184
|
+
certificateProfileName: string;
|
|
185
|
+
publisherName: string;
|
|
186
|
+
endpoint: string;
|
|
187
|
+
codeSigningAccountName: string;
|
|
188
|
+
};
|
|
189
|
+
};
|
|
177
190
|
}
|
package/package.json
CHANGED
package/src/toDesktop.ts
CHANGED
|
@@ -203,4 +203,17 @@ export interface CiInput {
|
|
|
203
203
|
userId: string;
|
|
204
204
|
contextUserId: string;
|
|
205
205
|
accessToken: string;
|
|
206
|
+
azureTrustedSigning?: {
|
|
207
|
+
credentials: {
|
|
208
|
+
AZURE_TENANT_ID: string;
|
|
209
|
+
AZURE_CLIENT_ID: string;
|
|
210
|
+
AZURE_CLIENT_SECRET: string;
|
|
211
|
+
};
|
|
212
|
+
settings: {
|
|
213
|
+
certificateProfileName: string;
|
|
214
|
+
publisherName: string;
|
|
215
|
+
endpoint: string;
|
|
216
|
+
codeSigningAccountName: string;
|
|
217
|
+
};
|
|
218
|
+
};
|
|
206
219
|
}
|