@lobehub/market-sdk 0.2.3 → 0.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/index.d.mts +3 -3
- package/package.json +3 -3
package/dist/index.d.mts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { PluginManifest, MarketItemBase,
|
|
1
|
+
import { PluginManifest, MarketItemBase, PluginConnectionType, AdminPluginItem, AdminPluginItemDetail, PluginVersion, AdminDeploymentOption, InstallationDetails, SystemDependency, PluginItemDetail } from '@lobehub/market-types';
|
|
2
2
|
export * from '@lobehub/market-types';
|
|
3
3
|
import { z } from 'zod';
|
|
4
4
|
|
|
@@ -204,8 +204,8 @@ interface PluginItem extends MarketItemBase {
|
|
|
204
204
|
};
|
|
205
205
|
/** Number of comments on this plugin */
|
|
206
206
|
commentCount?: number;
|
|
207
|
-
/** Connection type for communicating with the plugin */
|
|
208
|
-
connectionType?:
|
|
207
|
+
/** Connection type strategy for communicating with the plugin */
|
|
208
|
+
connectionType?: PluginConnectionType;
|
|
209
209
|
/** Number of installations */
|
|
210
210
|
installCount?: number;
|
|
211
211
|
/** Installation method required by the plugin's recommended deployment option */
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lobehub/market-sdk",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.3.0",
|
|
4
4
|
"description": "LobeHub Market JavaScript SDK",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"lobehub",
|
|
@@ -25,11 +25,11 @@
|
|
|
25
25
|
"dist"
|
|
26
26
|
],
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"@lobehub/market-types": "1.
|
|
28
|
+
"@lobehub/market-types": "1.4.0",
|
|
29
29
|
"debug": "^4.4.1"
|
|
30
30
|
},
|
|
31
31
|
"peerDependencies": {
|
|
32
|
-
"@lobehub/market-types": "1.
|
|
32
|
+
"@lobehub/market-types": "1.4.0",
|
|
33
33
|
"zod": "^3.24.4"
|
|
34
34
|
}
|
|
35
35
|
}
|