@todesktop/shared 7.189.11 → 7.189.12

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.
@@ -333,6 +333,7 @@ export interface DesktopifyApp {
333
333
  export interface Release {
334
334
  id: string;
335
335
  appReleaseSnapshot?: IApp2;
336
+ startedAt?: string;
336
337
  releasedAt?: string;
337
338
  }
338
339
  export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@todesktop/shared",
3
- "version": "7.189.11",
3
+ "version": "7.189.12",
4
4
  "description": "",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",
package/src/desktopify.ts CHANGED
@@ -463,5 +463,6 @@ export interface DesktopifyApp {
463
463
  export interface Release {
464
464
  id: string;
465
465
  appReleaseSnapshot?: IApp2;
466
+ startedAt?: string;
466
467
  releasedAt?: string;
467
468
  }