@stackable-labs/sdk-extension-contracts 1.1.0 → 1.3.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/dist/app.d.ts ADDED
@@ -0,0 +1,16 @@
1
+ /**
2
+ * App Registry — base shape for an extendable app.
3
+ * Admin APIs extend this with timestamps and other metadata.
4
+ */
5
+ export interface AppRegistryEntry {
6
+ /** Unique app ID */
7
+ id: string;
8
+ /** Human-readable app name */
9
+ name: string;
10
+ /** Extension point targets this app exposes */
11
+ targets: string[];
12
+ /** Whether the app is enabled for extensions */
13
+ enabled: boolean;
14
+ /** URL to the app icon */
15
+ iconUrl?: string;
16
+ }
package/dist/app.js ADDED
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=app.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"app.js","sourceRoot":"","sources":["../src/app.ts"],"names":[],"mappings":""}
package/dist/index.d.ts CHANGED
@@ -1,5 +1,6 @@
1
1
  export * from './common';
2
2
  export * from './api';
3
+ export * from './app';
3
4
  export * from './components';
4
5
  export * from './capabilities';
5
6
  export * from './instance';
package/dist/index.js CHANGED
@@ -1,5 +1,6 @@
1
1
  export * from './common';
2
2
  export * from './api';
3
+ export * from './app';
3
4
  export * from './components';
4
5
  export * from './capabilities';
5
6
  export * from './instance';
package/dist/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,UAAU,CAAA;AACxB,cAAc,OAAO,CAAA;AACrB,cAAc,cAAc,CAAA;AAC5B,cAAc,gBAAgB,CAAA;AAC9B,cAAc,YAAY,CAAA;AAC1B,cAAc,eAAe,CAAA;AAC7B,cAAc,YAAY,CAAA;AAC1B,cAAc,WAAW,CAAA;AACzB,cAAc,OAAO,CAAA;AACrB,cAAc,aAAa,CAAA"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,UAAU,CAAA;AACxB,cAAc,OAAO,CAAA;AACrB,cAAc,OAAO,CAAA;AACrB,cAAc,cAAc,CAAA;AAC5B,cAAc,gBAAgB,CAAA;AAC9B,cAAc,YAAY,CAAA;AAC1B,cAAc,eAAe,CAAA;AAC7B,cAAc,YAAY,CAAA;AAC1B,cAAc,WAAW,CAAA;AACzB,cAAc,OAAO,CAAA;AACrB,cAAc,aAAa,CAAA"}
@@ -30,4 +30,6 @@ export interface ExtensionRegistryEntry {
30
30
  bundleUrl: string;
31
31
  /** Whether the extension is enabled */
32
32
  enabled: boolean;
33
+ /** URL to the extension icon */
34
+ iconUrl?: string;
33
35
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stackable-labs/sdk-extension-contracts",
3
- "version": "1.1.0",
3
+ "version": "1.3.0",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",