@forge/manifest 7.4.1 → 7.5.0-next.1
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/CHANGELOG.md
CHANGED
|
@@ -17480,6 +17480,71 @@
|
|
|
17480
17480
|
}
|
|
17481
17481
|
},
|
|
17482
17482
|
"minItems": 1
|
|
17483
|
+
},
|
|
17484
|
+
"rovo:agent": {
|
|
17485
|
+
"type": "array",
|
|
17486
|
+
"items": {
|
|
17487
|
+
"type": "object",
|
|
17488
|
+
"additionalProperties": false,
|
|
17489
|
+
"required": [
|
|
17490
|
+
"name",
|
|
17491
|
+
"prompt",
|
|
17492
|
+
"key"
|
|
17493
|
+
],
|
|
17494
|
+
"properties": {
|
|
17495
|
+
"name": {
|
|
17496
|
+
"type": "string",
|
|
17497
|
+
"minLength": 1
|
|
17498
|
+
},
|
|
17499
|
+
"description": {
|
|
17500
|
+
"minLength": 1,
|
|
17501
|
+
"maxLength": 255,
|
|
17502
|
+
"type": "string"
|
|
17503
|
+
},
|
|
17504
|
+
"prompt": {
|
|
17505
|
+
"type": "string",
|
|
17506
|
+
"minLength": 1
|
|
17507
|
+
},
|
|
17508
|
+
"followUpPrompt": {
|
|
17509
|
+
"type": "string",
|
|
17510
|
+
"minLength": 1
|
|
17511
|
+
},
|
|
17512
|
+
"conversationStarters": {
|
|
17513
|
+
"description": "A list of conversation starters that the agent can use to start a conversation with the user.",
|
|
17514
|
+
"type": "array",
|
|
17515
|
+
"minItems": 1,
|
|
17516
|
+
"uniqueItems": true,
|
|
17517
|
+
"items": {
|
|
17518
|
+
"type": "string",
|
|
17519
|
+
"minLength": 1,
|
|
17520
|
+
"maxLength": 85
|
|
17521
|
+
}
|
|
17522
|
+
},
|
|
17523
|
+
"actions": {
|
|
17524
|
+
"description": "A list of actions that this agent can access to perform tasks.",
|
|
17525
|
+
"type": "array",
|
|
17526
|
+
"minItems": 1,
|
|
17527
|
+
"uniqueItems": true,
|
|
17528
|
+
"items": {
|
|
17529
|
+
"description": "The key for an action extension in your descriptor / manifest.",
|
|
17530
|
+
"maxLength": 255,
|
|
17531
|
+
"minLength": 1,
|
|
17532
|
+
"pattern": "^[a-zA-Z0-9-._]+$",
|
|
17533
|
+
"title": "ActionExtensionKey",
|
|
17534
|
+
"type": "string"
|
|
17535
|
+
}
|
|
17536
|
+
},
|
|
17537
|
+
"key": {
|
|
17538
|
+
"$ref": "#/definitions/ModuleKeySchema"
|
|
17539
|
+
}
|
|
17540
|
+
},
|
|
17541
|
+
"not": {
|
|
17542
|
+
"required": [
|
|
17543
|
+
"unlicensedAccess"
|
|
17544
|
+
]
|
|
17545
|
+
}
|
|
17546
|
+
},
|
|
17547
|
+
"minItems": 1
|
|
17483
17548
|
}
|
|
17484
17549
|
},
|
|
17485
17550
|
"title": "ModuleSchema",
|
package/out/schema/manifest.d.ts
CHANGED
|
@@ -377,6 +377,10 @@ export type LinkTypes = [
|
|
|
377
377
|
'chat-channel' | 'document' | 'repository' | 'dashboard' | 'on-call' | 'project' | 'other-link',
|
|
378
378
|
...('chat-channel' | 'document' | 'repository' | 'dashboard' | 'on-call' | 'project' | 'other-link')[]
|
|
379
379
|
];
|
|
380
|
+
/**
|
|
381
|
+
* The key for an action extension in your descriptor / manifest.
|
|
382
|
+
*/
|
|
383
|
+
export type ActionExtensionKey = string;
|
|
380
384
|
export type Scopes = string[];
|
|
381
385
|
export type Scripts = string[];
|
|
382
386
|
export type Styles = 'unsafe-inline'[];
|
|
@@ -7913,6 +7917,38 @@ export interface Modules {
|
|
|
7913
7917
|
[k: string]: unknown;
|
|
7914
7918
|
}[]
|
|
7915
7919
|
];
|
|
7920
|
+
'rovo:agent'?: [
|
|
7921
|
+
{
|
|
7922
|
+
name: string;
|
|
7923
|
+
description?: string;
|
|
7924
|
+
prompt: string;
|
|
7925
|
+
followUpPrompt?: string;
|
|
7926
|
+
/**
|
|
7927
|
+
* A list of conversation starters that the agent can use to start a conversation with the user.
|
|
7928
|
+
*/
|
|
7929
|
+
conversationStarters?: [string, ...string[]];
|
|
7930
|
+
/**
|
|
7931
|
+
* A list of actions that this agent can access to perform tasks.
|
|
7932
|
+
*/
|
|
7933
|
+
actions?: [ActionExtensionKey, ...ActionExtensionKey[]];
|
|
7934
|
+
key: ModuleKeySchema;
|
|
7935
|
+
},
|
|
7936
|
+
...{
|
|
7937
|
+
name: string;
|
|
7938
|
+
description?: string;
|
|
7939
|
+
prompt: string;
|
|
7940
|
+
followUpPrompt?: string;
|
|
7941
|
+
/**
|
|
7942
|
+
* A list of conversation starters that the agent can use to start a conversation with the user.
|
|
7943
|
+
*/
|
|
7944
|
+
conversationStarters?: [string, ...string[]];
|
|
7945
|
+
/**
|
|
7946
|
+
* A list of actions that this agent can access to perform tasks.
|
|
7947
|
+
*/
|
|
7948
|
+
actions?: [ActionExtensionKey, ...ActionExtensionKey[]];
|
|
7949
|
+
key: ModuleKeySchema;
|
|
7950
|
+
}[]
|
|
7951
|
+
];
|
|
7916
7952
|
[k: string]: unknown;
|
|
7917
7953
|
}
|
|
7918
7954
|
export interface Filter {
|
|
@@ -151,7 +151,8 @@ export declare enum AllModuleTypes {
|
|
|
151
151
|
AutomationForConfluenceCondition = "automation:condition",
|
|
152
152
|
AutomationForConfluenceAttributeResolver = "automation:attributeResolver",
|
|
153
153
|
AutomationForConfluenceTemplate = "automation:template",
|
|
154
|
-
AutomationForConfluenceI18n = "automation:i18n"
|
|
154
|
+
AutomationForConfluenceI18n = "automation:i18n",
|
|
155
|
+
RovoAgent = "rovo:agent"
|
|
155
156
|
}
|
|
156
157
|
export declare const SUPPORTED_MODULES: AllModuleTypes[];
|
|
157
158
|
export declare const SUPPORTED_PRODUCTS_ONLY: string[];
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"module-types.d.ts","sourceRoot":"","sources":["../../src/types/module-types.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"module-types.d.ts","sourceRoot":"","sources":["../../src/types/module-types.ts"],"names":[],"mappings":"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"}
|
|
@@ -156,6 +156,7 @@ var AllModuleTypes;
|
|
|
156
156
|
AllModuleTypes["AutomationForConfluenceAttributeResolver"] = "automation:attributeResolver";
|
|
157
157
|
AllModuleTypes["AutomationForConfluenceTemplate"] = "automation:template";
|
|
158
158
|
AllModuleTypes["AutomationForConfluenceI18n"] = "automation:i18n";
|
|
159
|
+
AllModuleTypes["RovoAgent"] = "rovo:agent";
|
|
159
160
|
})(AllModuleTypes = exports.AllModuleTypes || (exports.AllModuleTypes = {}));
|
|
160
161
|
exports.SUPPORTED_MODULES = Object.values(AllModuleTypes);
|
|
161
162
|
exports.SUPPORTED_PRODUCTS_ONLY = [...new Set(exports.SUPPORTED_MODULES.map((module) => module.split(':')[0]))];
|