@edenapp/types 0.3.2 → 0.3.3

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/AppManifest.d.ts CHANGED
@@ -255,6 +255,12 @@ export interface AppManifest {
255
255
  */
256
256
  overlay?: boolean;
257
257
 
258
+ /**
259
+ * Whether this app is hidden from the app launcher/dock.
260
+ * Hidden apps are not shown in listed apps unless explicitly requested.
261
+ */
262
+ hidden?: boolean;
263
+
258
264
  /**
259
265
  * Services this app exposes for other apps to connect to.
260
266
  * Declaring services here documents the app's API and enables
@@ -267,4 +273,12 @@ export interface AppManifest {
267
273
  * Defines settings categories and individual settings that can be configured.
268
274
  */
269
275
  settings?: SettingsCategory[];
276
+
277
+ /**
278
+ * Additional files or directories to include in the bundle.
279
+ * Use this to include files that are normally excluded (e.g., node_modules with native bindings).
280
+ * Paths are relative to the app root.
281
+ * @example ["node_modules/@linuxcnc-node/core", "node_modules/better-sqlite3"]
282
+ */
283
+ include?: string[];
270
284
  }
@@ -395,6 +395,14 @@ export interface PackageCommands {
395
395
  appId: string };
396
396
  response: { icon: string | undefined };
397
397
  };
398
+ /**
399
+ * Get info about a package file without installing it
400
+ */
401
+ "package/get-info": {
402
+ args: {
403
+ path: string };
404
+ response: { success: boolean; manifest?: import("./index").AppManifest; error?: string };
405
+ };
398
406
  }
399
407
 
400
408
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@edenapp/types",
3
- "version": "0.3.2",
3
+ "version": "0.3.3",
4
4
  "description": "TypeScript type definitions for the Eden platform",
5
5
  "types": "index.d.ts",
6
6
  "author": "Dariusz Majnert",