@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.
- package/lib/toDesktop.d.ts +3 -1
- package/package.json +1 -1
- package/src/toDesktop.ts +4 -1
package/lib/toDesktop.d.ts
CHANGED
|
@@ -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
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?: {
|
|
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>;
|