@botpress/client 0.48.1 → 0.48.2
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/.turbo/turbo-build.log +7 -7
- package/.turbo/turbo-generate.log +1 -1
- package/dist/bundle.cjs.map +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +16 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -10842,6 +10842,22 @@ interface ListPluginsResponse {
|
|
|
10842
10842
|
* Version of the [Plugin](#schema_plugin)
|
|
10843
10843
|
*/
|
|
10844
10844
|
version: string;
|
|
10845
|
+
/**
|
|
10846
|
+
* Title of the plugin. This is the name that will be displayed in the UI
|
|
10847
|
+
*/
|
|
10848
|
+
title: string;
|
|
10849
|
+
/**
|
|
10850
|
+
* Description of the plugin. This is the description that will be displayed in the UI
|
|
10851
|
+
*/
|
|
10852
|
+
description: string;
|
|
10853
|
+
/**
|
|
10854
|
+
* URL of the icon of the plugin. This is the icon that will be displayed in the UI
|
|
10855
|
+
*/
|
|
10856
|
+
iconUrl: string;
|
|
10857
|
+
/**
|
|
10858
|
+
* URL of the readme of the plugin. This is the readme that will be displayed in the UI
|
|
10859
|
+
*/
|
|
10860
|
+
readmeUrl: string;
|
|
10845
10861
|
}[];
|
|
10846
10862
|
meta: {
|
|
10847
10863
|
/**
|