@edenapp/types 0.3.2 → 0.4.1

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
  }
package/CHANGELOG.md ADDED
@@ -0,0 +1,7 @@
1
+ # @edenapp/types
2
+
3
+ ## 0.4.1
4
+
5
+ ### Patch Changes
6
+
7
+ - fix dependencies
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2025 Dariusz Majnert
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -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.4.1",
4
4
  "description": "TypeScript type definitions for the Eden platform",
5
5
  "types": "index.d.ts",
6
6
  "author": "Dariusz Majnert",