@todesktop/shared 7.188.76 → 7.188.77

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.
@@ -88,7 +88,9 @@ export interface IApp extends BaseApp {
88
88
  customUserAgent?: ISwitchableValue<string>;
89
89
  disableContextMenu?: boolean;
90
90
  environmentVariables?: {
91
- [propertyName: string]: string;
91
+ [propertyName: string]: string | {
92
+ secret: string;
93
+ };
92
94
  };
93
95
  icon?: string;
94
96
  icons?: IIcon[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@todesktop/shared",
3
- "version": "7.188.76",
3
+ "version": "7.188.77",
4
4
  "description": "",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",
package/src/toDesktop.ts CHANGED
@@ -103,7 +103,10 @@ export interface IApp extends BaseApp {
103
103
  customDomain?: string;
104
104
  customUserAgent?: ISwitchableValue<string>;
105
105
  disableContextMenu?: boolean;
106
- environmentVariables?: { [propertyName: string]: string };
106
+ environmentVariables?: {
107
+ // values that have been made secret need to be retrieved from azure key vault
108
+ [propertyName: string]: string | { secret: string };
109
+ };
107
110
  icon?: string;
108
111
  icons?: IIcon[];
109
112
  internalUrls?: ISwitchableValue<string>;