@todesktop/shared 7.184.9 → 7.184.10
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/desktopify.d.ts +2 -0
- package/package.json +1 -1
- package/src/desktopify.ts +2 -0
package/lib/desktopify.d.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { IApp2 } from "./desktopify2";
|
|
1
2
|
import { IApp } from "./toDesktop";
|
|
2
3
|
import { Configuration, PackagerOptions, PublishOptions } from "app-builder-lib";
|
|
3
4
|
declare type appBuilderLib = PackagerOptions & PublishOptions;
|
|
@@ -72,6 +73,7 @@ export interface Build {
|
|
|
72
73
|
appName: string;
|
|
73
74
|
appNotarizaionBundleId: string;
|
|
74
75
|
appVersion?: SemanticVersion;
|
|
76
|
+
appSnapshot?: IApp2;
|
|
75
77
|
buildServerExecutionId?: number;
|
|
76
78
|
ciRunner?: CIRunner;
|
|
77
79
|
cliConfigSchemaVersion: number;
|
package/package.json
CHANGED
package/src/desktopify.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { IApp2 } from "./desktopify2";
|
|
1
2
|
import { IApp } from "./toDesktop";
|
|
2
3
|
import {
|
|
3
4
|
Configuration,
|
|
@@ -104,6 +105,7 @@ export interface Build {
|
|
|
104
105
|
appName: string;
|
|
105
106
|
appNotarizaionBundleId: string;
|
|
106
107
|
appVersion?: SemanticVersion;
|
|
108
|
+
appSnapshot?: IApp2;
|
|
107
109
|
buildServerExecutionId?: number;
|
|
108
110
|
ciRunner?: CIRunner;
|
|
109
111
|
cliConfigSchemaVersion: number;
|