npm package diff
Package: @forge/manifest
Versions: 9.1.0-next.1 - 9.1.0-next.2
File: package/out/schema/manifest.d.ts
Index: package/out/schema/manifest.d.ts
===================================================================
--- package/out/schema/manifest.d.ts
+++ package/out/schema/manifest.d.ts
@@ -498,12 +498,16 @@
'chat-channel' | 'document' | 'repository' | 'dashboard' | 'on-call' | 'project' | 'other-link',
...('chat-channel' | 'document' | 'repository' | 'dashboard' | 'on-call' | 'project' | 'other-link')[]
];
/**
- * The key for an action extension in your descriptor / manifest.
+ * The key of an action extension in your manifest.
*/
export type ActionExtensionKey = string;
/**
+ * The key for an action extension in your descriptor / manifest.
+ */
+export type ActionExtensionKey1 = string;
+/**
* The key of the function that should be invoked for permission check.
*/
export type Function5 = string;
/**
@@ -11937,8 +11941,24 @@
key: ModuleKeySchema;
[k: string]: unknown;
}[]
];
+ 'automation:actionProvider'?: [
+ {
+ /**
+ * A list of actions that will be exposed by the Automation platform.
+ */
+ actions: [ActionExtensionKey, ...ActionExtensionKey[]];
+ key: ModuleKeySchema;
+ },
+ ...{
+ /**
+ * A list of actions that will be exposed by the Automation platform.
+ */
+ actions: [ActionExtensionKey, ...ActionExtensionKey[]];
+ key: ModuleKeySchema;
+ }[]
+ ];
'rovo:agent'?: [
{
icon?: string;
name: string;
@@ -11951,9 +11971,9 @@
conversationStarters?: [string, ...string[]];
/**
* A list of actions that this agent can access to perform tasks.
*/
- actions?: [ActionExtensionKey, ...ActionExtensionKey[]];
+ actions?: [ActionExtensionKey1, ...ActionExtensionKey1[]];
key: ModuleKeySchema;
},
...{
icon?: string;
@@ -11967,9 +11987,9 @@
conversationStarters?: [string, ...string[]];
/**
* A list of actions that this agent can access to perform tasks.
*/
- actions?: [ActionExtensionKey, ...ActionExtensionKey[]];
+ actions?: [ActionExtensionKey1, ...ActionExtensionKey1[]];
key: ModuleKeySchema;
}[]
];
'graph:entityProvider'?: [