@pillar-ai/sdk 0.1.27 → 0.1.28
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/cli/sync.js +3 -0
- package/dist/components/Progress/SecretReveal.d.ts +12 -0
- package/dist/pillar.esm.js +1 -1
- package/dist/tools/types.d.ts +11 -0
- package/package.json +1 -1
- package/dist/actions/definitions/analytics.d.ts +0 -18
- package/dist/actions/definitions/content.d.ts +0 -40
- package/dist/actions/definitions/index.d.ts +0 -26
- package/dist/actions/definitions/navigation.d.ts +0 -65
- package/dist/actions/definitions/settings.d.ts +0 -162
- package/dist/actions/definitions/sources.d.ts +0 -44
- package/dist/actions/definitions/support.d.ts +0 -15
- package/dist/actions/definitions/team.d.ts +0 -120
- package/dist/api/ag-ui-adapter.d.ts +0 -76
- package/dist/api/ag-ui-bridge.d.ts +0 -49
- package/dist/api/ag-ui-client.d.ts +0 -102
- package/dist/api/ag-ui-handler.d.ts +0 -89
- package/dist/button/FloatingButton.d.ts +0 -44
- package/dist/components/Button/FloatingButton.d.ts +0 -46
- package/dist/components/DevTools/DOMScannerPreview.d.ts +0 -21
- package/dist/components/Progress/AGUIProgress.d.ts +0 -15
- package/dist/components/Tooltips/Tooltip.d.ts +0 -46
- package/dist/components/Tooltips/TooltipManager.d.ts +0 -41
- package/dist/components/Tooltips/index.d.ts +0 -6
- package/dist/components/Tooltips/styles.d.ts +0 -5
- package/dist/components/Views/ArticleChatView.d.ts +0 -9
- package/dist/components/Views/ArticleView.d.ts +0 -10
- package/dist/components/Views/CategoryView.d.ts +0 -11
- package/dist/components/Views/DeveloperView.d.ts +0 -6
- package/dist/components/Views/SearchView.d.ts +0 -10
- package/dist/components/shared/ArticleCard.d.ts +0 -17
- package/dist/components/shared/CategoryCard.d.ts +0 -17
- package/dist/content/extensions/AccordionNode.d.ts +0 -10
- package/dist/content/extensions/CalloutNode.d.ts +0 -11
- package/dist/content/extensions/index.d.ts +0 -5
- package/dist/content/index.d.ts +0 -5
- package/dist/content/renderer.d.ts +0 -24
- package/dist/panel/Panel.d.ts +0 -53
- package/dist/panel/PanelUI.d.ts +0 -43
- package/dist/panel/components/ArticleCard.d.ts +0 -10
- package/dist/panel/components/CategoryCard.d.ts +0 -10
- package/dist/panel/components/ChatInput.d.ts +0 -36
- package/dist/panel/components/Header.d.ts +0 -16
- package/dist/panel/components/SearchInput.d.ts +0 -11
- package/dist/panel/styles.d.ts +0 -5
- package/dist/panel/views/ArticleView.d.ts +0 -21
- package/dist/panel/views/CategoryView.d.ts +0 -20
- package/dist/panel/views/ChatView.d.ts +0 -30
- package/dist/panel/views/HomeView.d.ts +0 -18
- package/dist/panel/views/SearchView.d.ts +0 -22
- package/dist/store/developer.d.ts +0 -19
- package/dist/store/tooltips.d.ts +0 -21
- package/dist/tooltips/Tooltip.d.ts +0 -63
- package/dist/tooltips/TooltipManager.d.ts +0 -42
- package/dist/tooltips/styles.d.ts +0 -5
- package/dist/ui/config.d.ts +0 -96
- package/dist/ui/executor.d.ts +0 -75
- package/dist/ui/index.d.ts +0 -11
- package/dist/ui/scanner.d.ts +0 -105
- package/dist/ui/types.d.ts +0 -293
- package/dist/utils/markdown.d.ts +0 -9
package/dist/cli/sync.js
CHANGED
|
@@ -275,6 +275,7 @@ async function scanTools(scanDir) {
|
|
|
275
275
|
guidance: typeof obj.guidance === "string" ? obj.guidance : void 0,
|
|
276
276
|
type: toolType,
|
|
277
277
|
inputSchema: obj.inputSchema,
|
|
278
|
+
outputSchema: obj.outputSchema,
|
|
278
279
|
examples: obj.examples,
|
|
279
280
|
autoRun: obj.autoRun,
|
|
280
281
|
autoComplete: obj.autoComplete,
|
|
@@ -387,6 +388,8 @@ function buildManifestFromScan(tools, platform, version, gitSha, agentGuidance)
|
|
|
387
388
|
entry.returns_data = true;
|
|
388
389
|
if (tool.inputSchema)
|
|
389
390
|
entry.data_schema = tool.inputSchema;
|
|
391
|
+
if (tool.outputSchema)
|
|
392
|
+
entry.output_schema = tool.outputSchema;
|
|
390
393
|
entries.push(entry);
|
|
391
394
|
}
|
|
392
395
|
const manifest = {
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* SecretReveal Component
|
|
3
|
+
*
|
|
4
|
+
* Renders a "Reveal" button for sensitive tool outputs delivered via the
|
|
5
|
+
* secret redemption flow. The secret is fetched on demand and never
|
|
6
|
+
* leaves component state — it is not serialized, logged, or sent anywhere.
|
|
7
|
+
*/
|
|
8
|
+
import type { ProgressEvent } from '../../store/chat';
|
|
9
|
+
export interface SecretRevealProps {
|
|
10
|
+
event: ProgressEvent;
|
|
11
|
+
}
|
|
12
|
+
export declare function SecretReveal({ event }: SecretRevealProps): import("preact").JSX.Element;
|