@crewx/sdk 0.9.0-rc.96 → 0.9.0-rc.97
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/esm/index.js +144 -144
- package/dist/esm/plugins/index.js +50 -50
- package/dist/esm/repository/index.js +57 -57
- package/dist/index.d.ts +2 -2
- package/dist/index.js +147 -147
- package/dist/lifecycle/task-stop.d.ts +1 -1
- package/dist/mcp-app/index.d.ts +2 -0
- package/dist/mcp-app/installed-app-ref.d.ts +25 -0
- package/dist/plugins/index.js +50 -50
- package/dist/repository/index.js +57 -57
- package/dist/repository/task.repository.d.ts +1 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -4,8 +4,8 @@ export type { ActionReceipt, ActionReceiptOutcome, CreateUiInstanceInput, JsonOb
|
|
|
4
4
|
export { UiInstanceStore, openUiInstanceReadStore, UiRuntimeError, hashUiDefinition, projectSafeJsonObject, createUiServerRuntime, resolveUiEffectiveCapabilities, } from './ui-instance/index.js';
|
|
5
5
|
export type { UiAuditSnapshotInput, UiInstanceReadStore } from './ui-instance/index.js';
|
|
6
6
|
export type { UiRuntimeErrorCode } from './ui-instance/index.js';
|
|
7
|
-
export { MCP_APP_HOST_TOOL_ALLOWLIST, MCP_APP_RESOURCE_MIME_TYPE, MCP_APP_RESOURCE_URI_PREFIX, McpAppContractError, buildMcpAppStateDescriptor, buildMcpAppStateProjections, buildTerminalMcpAppStateDescriptor, buildTerminalMcpAppStateProjections, createBuiltinMcpAppRegistry, createMcpAppRegistry, createMcpAppToolResult, registerMcpApp, requireMcpAppResource, resolveMcpAppResource, serializeMcpAppStateJson, serializeMcpAppStateXml, toMcpAppToolRegistration, } from './mcp-app/index.js';
|
|
8
|
-
export type { McpAppActionDispatcherToolInput, McpAppActionToolDescriptor, McpAppActionToolInput, McpAppButtonDescriptor, McpAppButtonInput, McpAppContractErrorCode, McpAppDescriptor, McpAppDescriptorInput, McpAppInputSchema, McpAppTone, McpUiResourceCsp, McpAppRegistry, McpAppResource, McpAppServerStateInput, McpAppStateDescriptor, McpAppStateProjections, McpAppHostToolInput, McpAppHostToolName, McpAppReadToolInput, McpAppSingleActionToolInput, McpAppToolCommonInput, McpAppToolDescriptor, McpAppToolInput, McpAppToolMetadata, McpAppToolRegistration, McpAppToolResult, McpAppToolVisibility, } from './mcp-app/index.js';
|
|
7
|
+
export { MCP_APP_HOST_TOOL_ALLOWLIST, MCP_APP_RESOURCE_MIME_TYPE, MCP_APP_RESOURCE_URI_PREFIX, McpAppContractError, buildMcpAppStateDescriptor, buildMcpAppStateProjections, buildTerminalMcpAppStateDescriptor, buildTerminalMcpAppStateProjections, createBuiltinMcpAppRegistry, buildInstalledAppRef, createMcpAppRegistry, createMcpAppToolResult, INSTALLED_APP_ENTRY, InstalledAppRefError, registerMcpApp, requireMcpAppResource, resolveMcpAppResource, serializeMcpAppStateJson, serializeMcpAppStateXml, toMcpAppToolRegistration, validateInstalledAppRef, } from './mcp-app/index.js';
|
|
8
|
+
export type { McpAppActionDispatcherToolInput, McpAppActionToolDescriptor, McpAppActionToolInput, McpAppButtonDescriptor, McpAppButtonInput, McpAppContractErrorCode, McpAppDescriptor, McpAppDescriptorInput, McpAppInputSchema, McpAppTone, McpUiResourceCsp, McpAppRegistry, McpAppResource, McpAppServerStateInput, McpAppStateDescriptor, McpAppStateProjections, McpAppHostToolInput, McpAppHostToolName, McpAppReadToolInput, McpAppSingleActionToolInput, McpAppToolCommonInput, McpAppToolDescriptor, McpAppToolInput, McpAppToolMetadata, McpAppToolRegistration, McpAppToolResult, McpAppToolVisibility, BuildInstalledAppRefInput, InstalledAppPackageFile, InstalledAppRef, InstalledAppRefErrorCode, } from './mcp-app/index.js';
|
|
9
9
|
export { canonicalManifestJson, manifestHash, normalizeManifest, UiPluginValidationError, validateManifest, validatePayload, } from './ui-plugin/index.js';
|
|
10
10
|
export type { UiPluginActivation, UiPluginCardShellNode, UiPluginFieldSchema, UiPluginHeadingNode, UiPluginLabeledTextNode, UiPluginLayoutNode, UiPluginLayout, UiPluginManifest, UiPluginMetaBannerNode, UiPluginPayload, UiPluginPayloadValue, UiPluginPrimitive, UiPluginSchemaType, UiPluginSchema, UiPluginStep, UiPluginStepFlowNode, UiPluginStepListSchema, UiPluginTextListNode, UiPluginTextListSchema, UiPluginTextSchema, UiPluginValidationErrorCode, UiPluginValidationOptions, } from './ui-plugin/index.js';
|
|
11
11
|
export { CrewxPlugin } from './plugin';
|