@forge/manifest 7.5.0-next.0 → 7.5.0-next.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/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @forge/manifest
|
|
2
2
|
|
|
3
|
+
## 7.5.0-next.2
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 2278ad7: Removing 'oauth2' from the list of available values for connectAuthentication as it is no longer supported
|
|
8
|
+
|
|
9
|
+
## 7.5.0-next.1
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- 23cc3d6: Update manifest definitions
|
|
14
|
+
|
|
3
15
|
## 7.5.0-next.0
|
|
4
16
|
|
|
5
17
|
### Minor Changes
|
|
@@ -102,8 +102,7 @@
|
|
|
102
102
|
"type": "string",
|
|
103
103
|
"default": "jwt",
|
|
104
104
|
"enum": [
|
|
105
|
-
"jwt"
|
|
106
|
-
"oauth2"
|
|
105
|
+
"jwt"
|
|
107
106
|
]
|
|
108
107
|
}
|
|
109
108
|
}
|
|
@@ -17480,6 +17479,71 @@
|
|
|
17480
17479
|
}
|
|
17481
17480
|
},
|
|
17482
17481
|
"minItems": 1
|
|
17482
|
+
},
|
|
17483
|
+
"rovo:agent": {
|
|
17484
|
+
"type": "array",
|
|
17485
|
+
"items": {
|
|
17486
|
+
"type": "object",
|
|
17487
|
+
"additionalProperties": false,
|
|
17488
|
+
"required": [
|
|
17489
|
+
"name",
|
|
17490
|
+
"prompt",
|
|
17491
|
+
"key"
|
|
17492
|
+
],
|
|
17493
|
+
"properties": {
|
|
17494
|
+
"name": {
|
|
17495
|
+
"type": "string",
|
|
17496
|
+
"minLength": 1
|
|
17497
|
+
},
|
|
17498
|
+
"description": {
|
|
17499
|
+
"minLength": 1,
|
|
17500
|
+
"maxLength": 255,
|
|
17501
|
+
"type": "string"
|
|
17502
|
+
},
|
|
17503
|
+
"prompt": {
|
|
17504
|
+
"type": "string",
|
|
17505
|
+
"minLength": 1
|
|
17506
|
+
},
|
|
17507
|
+
"followUpPrompt": {
|
|
17508
|
+
"type": "string",
|
|
17509
|
+
"minLength": 1
|
|
17510
|
+
},
|
|
17511
|
+
"conversationStarters": {
|
|
17512
|
+
"description": "A list of conversation starters that the agent can use to start a conversation with the user.",
|
|
17513
|
+
"type": "array",
|
|
17514
|
+
"minItems": 1,
|
|
17515
|
+
"uniqueItems": true,
|
|
17516
|
+
"items": {
|
|
17517
|
+
"type": "string",
|
|
17518
|
+
"minLength": 1,
|
|
17519
|
+
"maxLength": 85
|
|
17520
|
+
}
|
|
17521
|
+
},
|
|
17522
|
+
"actions": {
|
|
17523
|
+
"description": "A list of actions that this agent can access to perform tasks.",
|
|
17524
|
+
"type": "array",
|
|
17525
|
+
"minItems": 1,
|
|
17526
|
+
"uniqueItems": true,
|
|
17527
|
+
"items": {
|
|
17528
|
+
"description": "The key for an action extension in your descriptor / manifest.",
|
|
17529
|
+
"maxLength": 255,
|
|
17530
|
+
"minLength": 1,
|
|
17531
|
+
"pattern": "^[a-zA-Z0-9-._]+$",
|
|
17532
|
+
"title": "ActionExtensionKey",
|
|
17533
|
+
"type": "string"
|
|
17534
|
+
}
|
|
17535
|
+
},
|
|
17536
|
+
"key": {
|
|
17537
|
+
"$ref": "#/definitions/ModuleKeySchema"
|
|
17538
|
+
}
|
|
17539
|
+
},
|
|
17540
|
+
"not": {
|
|
17541
|
+
"required": [
|
|
17542
|
+
"unlicensedAccess"
|
|
17543
|
+
]
|
|
17544
|
+
}
|
|
17545
|
+
},
|
|
17546
|
+
"minItems": 1
|
|
17483
17547
|
}
|
|
17484
17548
|
},
|
|
17485
17549
|
"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'[];
|
|
@@ -566,7 +570,7 @@ export interface Connect {
|
|
|
566
570
|
/**
|
|
567
571
|
* The type of authentication used to communicate with tenant APIs
|
|
568
572
|
*/
|
|
569
|
-
authentication?: 'jwt'
|
|
573
|
+
authentication?: 'jwt';
|
|
570
574
|
}
|
|
571
575
|
/**
|
|
572
576
|
* Options for packaging the Forge app.
|
|
@@ -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 {
|