@todesktop/shared 7.47.0 → 7.48.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.
- package/lib/desktopify.d.ts +1 -0
- package/lib/toDesktop.d.ts +1 -0
- package/package.json +1 -1
- package/src/desktopify.ts +1 -0
- package/src/toDesktop.ts +1 -0
package/lib/desktopify.d.ts
CHANGED
|
@@ -177,6 +177,7 @@ export interface DesktopifyApp {
|
|
|
177
177
|
shouldMakeSameDomainAnExternalLink?: boolean;
|
|
178
178
|
enablePushNotifications?: boolean;
|
|
179
179
|
themeSource?: "system" | "light" | "dark";
|
|
180
|
+
themeSourceMac?: "system" | "light" | "dark";
|
|
180
181
|
crashReporter?: string;
|
|
181
182
|
companyName?: string;
|
|
182
183
|
}
|
package/lib/toDesktop.d.ts
CHANGED
|
@@ -295,6 +295,7 @@ export interface IApp {
|
|
|
295
295
|
};
|
|
296
296
|
subscription?: IStripeSubscription;
|
|
297
297
|
themeSource?: "system" | "light" | "dark";
|
|
298
|
+
themeSourceMac?: "system" | "light" | "dark";
|
|
298
299
|
toggleVisibilityKeyboardShortcut?: ISwitchableValue<string>;
|
|
299
300
|
trayIcon?: string;
|
|
300
301
|
url: string;
|
package/package.json
CHANGED
package/src/desktopify.ts
CHANGED
|
@@ -290,6 +290,7 @@ export interface DesktopifyApp {
|
|
|
290
290
|
shouldMakeSameDomainAnExternalLink?: boolean;
|
|
291
291
|
enablePushNotifications?: boolean;
|
|
292
292
|
themeSource?: "system" | "light" | "dark";
|
|
293
|
+
themeSourceMac?: "system" | "light" | "dark";
|
|
293
294
|
crashReporter?: string;
|
|
294
295
|
companyName?: string;
|
|
295
296
|
}
|
package/src/toDesktop.ts
CHANGED
|
@@ -326,6 +326,7 @@ export interface IApp {
|
|
|
326
326
|
snapStore?: { login?: string };
|
|
327
327
|
subscription?: IStripeSubscription;
|
|
328
328
|
themeSource?: "system" | "light" | "dark";
|
|
329
|
+
themeSourceMac?: "system" | "light" | "dark";
|
|
329
330
|
toggleVisibilityKeyboardShortcut?: ISwitchableValue<string>;
|
|
330
331
|
trayIcon?: string;
|
|
331
332
|
url: string;
|