@atlaskit/rovo-agent-components 3.47.0 → 3.48.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 +17 -0
- package/common/types/package.json +17 -0
- package/common/utils/is-agent-creator-type/package.json +17 -0
- package/dist/cjs/common/types.js +1 -0
- package/dist/cjs/common/utils/is-agent-creator-type.js +10 -0
- package/dist/es2019/common/types.js +0 -0
- package/dist/es2019/common/utils/is-agent-creator-type.js +2 -0
- package/dist/esm/common/types.js +0 -0
- package/dist/esm/common/utils/is-agent-creator-type.js +4 -0
- package/dist/types/common/types.d.ts +1 -0
- package/dist/types/common/utils/is-agent-creator-type.d.ts +2 -0
- package/dist/types/common/utils/is-forge-agent.d.ts +1 -1
- package/dist/types-ts4.5/common/types.d.ts +1 -0
- package/dist/types-ts4.5/common/utils/is-agent-creator-type.d.ts +2 -0
- package/dist/types-ts4.5/common/utils/is-forge-agent.d.ts +1 -1
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
# @atlaskit/rovo-agent-components
|
|
2
2
|
|
|
3
|
+
## 3.48.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies
|
|
8
|
+
|
|
9
|
+
## 3.48.0
|
|
10
|
+
|
|
11
|
+
### Minor Changes
|
|
12
|
+
|
|
13
|
+
- [`5763146cffd44`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/5763146cffd44) - -
|
|
14
|
+
Update AgentCreatorType import from @atlassian/rovo-agent-components.
|
|
15
|
+
- Update `AssistanceService.getAgentKnowledgeConfiguration` to accept an optional
|
|
16
|
+
`agentCreatorType` to pass as query params to the underlying `/knowledge` endpoint.
|
|
17
|
+
- Update `KnowledgeSourcesField` to pass in `creatorType` value, under a FG
|
|
18
|
+
`rovo_agent_knowledge_source_allow_list`.
|
|
19
|
+
|
|
3
20
|
## 3.47.0
|
|
4
21
|
|
|
5
22
|
### Minor Changes
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@atlaskit/rovo-agent-components/common/types",
|
|
3
|
+
"main": "../../dist/cjs/common/types.js",
|
|
4
|
+
"module": "../../dist/esm/common/types.js",
|
|
5
|
+
"module:es2019": "../../dist/es2019/common/types.js",
|
|
6
|
+
"sideEffects": [
|
|
7
|
+
"*.compiled.css"
|
|
8
|
+
],
|
|
9
|
+
"types": "../../dist/types/common/types.d.ts",
|
|
10
|
+
"typesVersions": {
|
|
11
|
+
">=4.5 <5.9": {
|
|
12
|
+
"*": [
|
|
13
|
+
"../../dist/types-ts4.5/common/types.d.ts"
|
|
14
|
+
]
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@atlaskit/rovo-agent-components/common/utils/is-agent-creator-type",
|
|
3
|
+
"main": "../../../dist/cjs/common/utils/is-agent-creator-type.js",
|
|
4
|
+
"module": "../../../dist/esm/common/utils/is-agent-creator-type.js",
|
|
5
|
+
"module:es2019": "../../../dist/es2019/common/utils/is-agent-creator-type.js",
|
|
6
|
+
"sideEffects": [
|
|
7
|
+
"*.compiled.css"
|
|
8
|
+
],
|
|
9
|
+
"types": "../../../dist/types/common/utils/is-agent-creator-type.d.ts",
|
|
10
|
+
"typesVersions": {
|
|
11
|
+
">=4.5 <5.9": {
|
|
12
|
+
"*": [
|
|
13
|
+
"../../../dist/types-ts4.5/common/utils/is-agent-creator-type.d.ts"
|
|
14
|
+
]
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.isAgentCreatorType = void 0;
|
|
7
|
+
var agentCreatorTypes = ['SYSTEM', 'CUSTOMER', 'THIRD_PARTY', 'FORGE', 'OOTB', 'REMOTE_A2A'];
|
|
8
|
+
var isAgentCreatorType = exports.isAgentCreatorType = function isAgentCreatorType(creatorType) {
|
|
9
|
+
return agentCreatorTypes.includes(creatorType);
|
|
10
|
+
};
|
|
File without changes
|
|
File without changes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type AgentCreatorType = 'SYSTEM' | 'CUSTOMER' | 'THIRD_PARTY' | 'FORGE' | 'OOTB' | 'REMOTE_A2A';
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
|
|
1
|
+
import type { AgentCreatorType } from '../types';
|
|
2
2
|
export declare const isForgeAgentByCreatorType: (creatorType: AgentCreatorType) => boolean;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type AgentCreatorType = 'SYSTEM' | 'CUSTOMER' | 'THIRD_PARTY' | 'FORGE' | 'OOTB' | 'REMOTE_A2A';
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
|
|
1
|
+
import type { AgentCreatorType } from '../types';
|
|
2
2
|
export declare const isForgeAgentByCreatorType: (creatorType: AgentCreatorType) => boolean;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/rovo-agent-components",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.48.1",
|
|
4
4
|
"description": "This package host public components related to rovo agents, the components here are needed for other public atlaskit packages",
|
|
5
5
|
"repository": "https://bitbucket.org/atlassian/atlassian-frontend-monorepo",
|
|
6
6
|
"atlassian": {
|
|
@@ -34,21 +34,21 @@
|
|
|
34
34
|
"dependencies": {
|
|
35
35
|
"@atlaskit/afm-i18n-platform-ai-mate-rovo-agent-components": "2.10.0",
|
|
36
36
|
"@atlaskit/analytics-next": "^11.2.0",
|
|
37
|
-
"@atlaskit/avatar": "^25.
|
|
37
|
+
"@atlaskit/avatar": "^25.11.0",
|
|
38
38
|
"@atlaskit/button": "^23.10.0",
|
|
39
39
|
"@atlaskit/css": "^0.19.0",
|
|
40
40
|
"@atlaskit/dropdown-menu": "^16.8.0",
|
|
41
41
|
"@atlaskit/flag": "^17.9.0",
|
|
42
42
|
"@atlaskit/heading": "^5.3.0",
|
|
43
|
-
"@atlaskit/icon": "^
|
|
43
|
+
"@atlaskit/icon": "^34.0.0",
|
|
44
44
|
"@atlaskit/link": "^3.3.0",
|
|
45
45
|
"@atlaskit/logo": "^19.10.0",
|
|
46
46
|
"@atlaskit/platform-feature-flags": "^1.1.0",
|
|
47
47
|
"@atlaskit/primitives": "^18.1.0",
|
|
48
48
|
"@atlaskit/rovo-agent-analytics": "^1.1.0",
|
|
49
49
|
"@atlaskit/skeleton": "^2.1.0",
|
|
50
|
-
"@atlaskit/tokens": "^11.
|
|
51
|
-
"@atlaskit/tooltip": "^21.
|
|
50
|
+
"@atlaskit/tokens": "^11.4.0",
|
|
51
|
+
"@atlaskit/tooltip": "^21.1.0",
|
|
52
52
|
"@babel/runtime": "^7.0.0",
|
|
53
53
|
"@compiled/react": "^0.20.0",
|
|
54
54
|
"react-dom": "^18.2.0",
|
|
@@ -62,7 +62,7 @@
|
|
|
62
62
|
"@atlaskit/ssr": "workspace:^",
|
|
63
63
|
"@atlassian/agent-studio-test-utils": "workspace:^",
|
|
64
64
|
"@atlassian/feature-flags-test-utils": "^1.0.0",
|
|
65
|
-
"@atlassian/testing-library": "^0.
|
|
65
|
+
"@atlassian/testing-library": "^0.5.0",
|
|
66
66
|
"@testing-library/react": "^16.3.0",
|
|
67
67
|
"@testing-library/user-event": "^14.4.3",
|
|
68
68
|
"@types/relay-test-utils": "^18.0.0",
|