@todesktop/shared 7.105.0 → 7.106.0

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.
@@ -66,12 +66,14 @@ export interface PlatformBuild {
66
66
  startedAt: ISODate;
67
67
  status: BuildStatus;
68
68
  }
69
+ export declare type CIRunner = "circle" | "azure";
69
70
  export interface Build {
70
71
  appCustomDomain?: string;
71
72
  appName: string;
72
73
  appNotarizaionBundleId: string;
73
74
  appVersion?: SemanticVersion;
74
75
  buildServerExecutionId?: number;
76
+ ciRunner?: CIRunner;
75
77
  cliConfigSchemaVersion: number;
76
78
  continuousIntegrationServiceName?: string;
77
79
  commitId?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@todesktop/shared",
3
- "version": "7.105.0",
3
+ "version": "7.106.0",
4
4
  "description": "",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",
package/src/desktopify.ts CHANGED
@@ -98,12 +98,15 @@ export interface PlatformBuild {
98
98
  status: BuildStatus;
99
99
  }
100
100
 
101
+ export type CIRunner = "circle" | "azure";
102
+
101
103
  export interface Build {
102
104
  appCustomDomain?: string;
103
105
  appName: string;
104
106
  appNotarizaionBundleId: string;
105
107
  appVersion?: SemanticVersion;
106
108
  buildServerExecutionId?: number;
109
+ ciRunner?: CIRunner;
107
110
  cliConfigSchemaVersion: number;
108
111
  continuousIntegrationServiceName?: string;
109
112
  commitId?: string;