@todesktop/shared 7.184.8 → 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/base.d.ts CHANGED
@@ -143,6 +143,7 @@ export interface IAppMeta {
143
143
  export interface BaseApp extends Schemable {
144
144
  id: string;
145
145
  appModelId?: string;
146
+ customDomain?: string;
146
147
  meta?: IAppMeta;
147
148
  subscription?: {
148
149
  status: string;
@@ -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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@todesktop/shared",
3
- "version": "7.184.8",
3
+ "version": "7.184.10",
4
4
  "description": "",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",
package/src/base.ts CHANGED
@@ -151,6 +151,7 @@ export interface IAppMeta {
151
151
  export interface BaseApp extends Schemable {
152
152
  id: string;
153
153
  appModelId?: string;
154
+ customDomain?: string;
154
155
  meta?: IAppMeta;
155
156
  subscription?: {
156
157
  status: string;
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;