@todesktop/shared 7.81.0 → 7.84.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/desktopify2.d.ts +3 -2
- package/lib/plans.d.ts +1 -0
- package/lib/plans.js +1 -0
- package/package.json +1 -1
- package/src/desktopify2.ts +3 -2
- package/src/plans.ts +1 -0
package/lib/desktopify2.d.ts
CHANGED
|
@@ -40,6 +40,7 @@ export interface DesktopifyAppTray {
|
|
|
40
40
|
id: string;
|
|
41
41
|
icon: string;
|
|
42
42
|
bundledIcon?: string;
|
|
43
|
+
useTemplateImage?: boolean;
|
|
43
44
|
rightClick: DesktopifyAppTrayAction;
|
|
44
45
|
leftClick: DesktopifyAppTrayAction;
|
|
45
46
|
}
|
|
@@ -144,9 +145,9 @@ export interface DesktopifyAppWindow {
|
|
|
144
145
|
export interface DesktopifyApp2 {
|
|
145
146
|
id: string;
|
|
146
147
|
/**
|
|
147
|
-
* Last
|
|
148
|
+
* Last desktopify version that was used to update the app
|
|
148
149
|
*/
|
|
149
|
-
|
|
150
|
+
lastUsedDesktopifyVersion?: string;
|
|
150
151
|
/**
|
|
151
152
|
* The name of the app
|
|
152
153
|
*/
|
package/lib/plans.d.ts
CHANGED
package/lib/plans.js
CHANGED
|
@@ -28,6 +28,7 @@ exports.prodPlanIds = {
|
|
|
28
28
|
essential_new: "plan_GYXn2cnPl5dy7j",
|
|
29
29
|
professional: "plan_GYXoKsa2j0yURg",
|
|
30
30
|
professional_annual: "price_1KHTgaIewCKA2h0I81TVg85r",
|
|
31
|
+
professional_annual_full_price: "price_1KLT32IewCKA2h0IFeJOAgG5",
|
|
31
32
|
cli_founder: "plan_GpzWZLfsOzjrvI",
|
|
32
33
|
cli_founder_30: "plan_GsL1IRUwpj5CIF",
|
|
33
34
|
cli_founder_50: "plan_GsL1IRUwpj5CIF",
|
package/package.json
CHANGED
package/src/desktopify2.ts
CHANGED
|
@@ -65,6 +65,7 @@ export interface DesktopifyAppTray {
|
|
|
65
65
|
id: string;
|
|
66
66
|
icon: string;
|
|
67
67
|
bundledIcon?: string;
|
|
68
|
+
useTemplateImage?: boolean;
|
|
68
69
|
rightClick: DesktopifyAppTrayAction;
|
|
69
70
|
leftClick: DesktopifyAppTrayAction;
|
|
70
71
|
}
|
|
@@ -251,9 +252,9 @@ export interface DesktopifyAppWindow {
|
|
|
251
252
|
export interface DesktopifyApp2 {
|
|
252
253
|
id: string;
|
|
253
254
|
/**
|
|
254
|
-
* Last
|
|
255
|
+
* Last desktopify version that was used to update the app
|
|
255
256
|
*/
|
|
256
|
-
|
|
257
|
+
lastUsedDesktopifyVersion?: string;
|
|
257
258
|
/**
|
|
258
259
|
* The name of the app
|
|
259
260
|
*/
|
package/src/plans.ts
CHANGED
|
@@ -28,6 +28,7 @@ export const prodPlanIds = {
|
|
|
28
28
|
essential_new: "plan_GYXn2cnPl5dy7j",
|
|
29
29
|
professional: "plan_GYXoKsa2j0yURg",
|
|
30
30
|
professional_annual: "price_1KHTgaIewCKA2h0I81TVg85r",
|
|
31
|
+
professional_annual_full_price: "price_1KLT32IewCKA2h0IFeJOAgG5",
|
|
31
32
|
cli_founder: "plan_GpzWZLfsOzjrvI",
|
|
32
33
|
cli_founder_30: "plan_GsL1IRUwpj5CIF",
|
|
33
34
|
cli_founder_50: "plan_GsL1IRUwpj5CIF",
|