@stackable-labs/sdk-extension-contracts 1.15.0 → 1.17.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 +1 -16
- package/dist/index.d.ts +1 -0
- package/dist/index.js +1 -0
- package/dist/index.js.map +1 -1
- package/dist/marketplace.d.ts +7 -0
- package/dist/marketplace.js +2 -0
- package/dist/marketplace.js.map +1 -0
- package/package.json +4 -1
package/dist/app.d.ts
CHANGED
|
@@ -1,16 +1 @@
|
|
|
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
|
-
}
|
|
1
|
+
export type { AppRegistryEntry } from '@stackable-labs/lib-contracts';
|
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
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,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,eAAe,CAAA;AAC7B,cAAc,WAAW,CAAA;AACzB,cAAc,OAAO,CAAA;AACrB,cAAc,aAAa,CAAA"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { MarketplaceMetadata } from '@stackable-labs/lib-contracts';
|
|
2
|
+
import type { ExtensionRegistryEntry } from './manifest';
|
|
3
|
+
export type { MarketplaceMetadata, ExtensionCategory, ExtensionVisibility } from '@stackable-labs/lib-contracts';
|
|
4
|
+
export { EXTENSION_CATEGORIES, EXTENSION_VISIBILITIES } from '@stackable-labs/lib-contracts';
|
|
5
|
+
/** Full extension with marketplace fields — stays here because it extends ExtensionRegistryEntry */
|
|
6
|
+
export interface MarketplaceExtension extends ExtensionRegistryEntry, MarketplaceMetadata {
|
|
7
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"marketplace.js","sourceRoot":"","sources":["../src/marketplace.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,oBAAoB,EAAE,sBAAsB,EAAE,MAAM,+BAA+B,CAAA"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stackable-labs/sdk-extension-contracts",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.17.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -11,6 +11,9 @@
|
|
|
11
11
|
"default": "./dist/index.js"
|
|
12
12
|
}
|
|
13
13
|
},
|
|
14
|
+
"dependencies": {
|
|
15
|
+
"@stackable-labs/lib-contracts": "workspace:*"
|
|
16
|
+
},
|
|
14
17
|
"description": "TypeScript contracts and interfaces for Stackable extensions.",
|
|
15
18
|
"license": "SEE LICENSE IN LICENSE",
|
|
16
19
|
"publishConfig": {
|