@atlaskit/rovo-agent-components 3.47.0 → 3.48.0

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,16 @@
1
1
  # @atlaskit/rovo-agent-components
2
2
 
3
+ ## 3.48.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [`5763146cffd44`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/5763146cffd44) - -
8
+ Update AgentCreatorType import from @atlassian/rovo-agent-components.
9
+ - Update `AssistanceService.getAgentKnowledgeConfiguration` to accept an optional
10
+ `agentCreatorType` to pass as query params to the underlying `/knowledge` endpoint.
11
+ - Update `KnowledgeSourcesField` to pass in `creatorType` value, under a FG
12
+ `rovo_agent_knowledge_source_allow_list`.
13
+
3
14
  ## 3.47.0
4
15
 
5
16
  ### 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
@@ -0,0 +1,2 @@
1
+ const agentCreatorTypes = ['SYSTEM', 'CUSTOMER', 'THIRD_PARTY', 'FORGE', 'OOTB', 'REMOTE_A2A'];
2
+ export const isAgentCreatorType = creatorType => agentCreatorTypes.includes(creatorType);
File without changes
@@ -0,0 +1,4 @@
1
+ var agentCreatorTypes = ['SYSTEM', 'CUSTOMER', 'THIRD_PARTY', 'FORGE', 'OOTB', 'REMOTE_A2A'];
2
+ export var isAgentCreatorType = function isAgentCreatorType(creatorType) {
3
+ return agentCreatorTypes.includes(creatorType);
4
+ };
@@ -0,0 +1 @@
1
+ export type AgentCreatorType = 'SYSTEM' | 'CUSTOMER' | 'THIRD_PARTY' | 'FORGE' | 'OOTB' | 'REMOTE_A2A';
@@ -0,0 +1,2 @@
1
+ import type { AgentCreatorType } from '../types';
2
+ export declare const isAgentCreatorType: (creatorType: string) => creatorType is AgentCreatorType;
@@ -1,2 +1,2 @@
1
- export type AgentCreatorType = 'SYSTEM' | 'CUSTOMER' | 'THIRD_PARTY' | 'FORGE' | 'OOTB' | 'REMOTE_A2A';
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';
@@ -0,0 +1,2 @@
1
+ import type { AgentCreatorType } from '../types';
2
+ export declare const isAgentCreatorType: (creatorType: string) => creatorType is AgentCreatorType;
@@ -1,2 +1,2 @@
1
- export type AgentCreatorType = 'SYSTEM' | 'CUSTOMER' | 'THIRD_PARTY' | 'FORGE' | 'OOTB' | 'REMOTE_A2A';
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.47.0",
3
+ "version": "3.48.0",
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": {