@atlaskit/profilecard 19.22.0 → 19.23.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,23 @@
1
1
  # @atlaskit/profilecard
2
2
 
3
+ ## 19.23.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [#135110](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/135110)
8
+ [`ae41f672c79da`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/ae41f672c79da) -
9
+ Update rovo agent type definitions
10
+
11
+ ### Patch Changes
12
+
13
+ - Updated dependencies
14
+
15
+ ## 19.22.1
16
+
17
+ ### Patch Changes
18
+
19
+ - Updated dependencies
20
+
3
21
  ## 19.22.0
4
22
 
5
23
  ### Minor Changes
@@ -57,7 +57,7 @@ var addHeaders = exports.addHeaders = function addHeaders(headers) {
57
57
  headers.append('X-ExperimentalApi', 'teams-beta');
58
58
  headers.append('X-ExperimentalApi', 'team-members-beta');
59
59
  headers.append('atl-client-name', "@atlaskit/profilecard");
60
- headers.append('atl-client-version', "19.22.0");
60
+ headers.append('atl-client-version', "19.23.0");
61
61
  return headers;
62
62
  };
63
63
  function getTeamFromAGG(_x, _x2, _x3) {
@@ -45,7 +45,7 @@ var createEvent = function createEvent(eventType, action, actionSubject, actionS
45
45
  actionSubjectId: actionSubjectId,
46
46
  attributes: _objectSpread(_objectSpread({
47
47
  packageName: "@atlaskit/profilecard",
48
- packageVersion: "19.22.0"
48
+ packageVersion: "19.23.0"
49
49
  }, attributes), {}, {
50
50
  firedAt: Math.round((0, _performance.getPageTime)())
51
51
  })
@@ -67,7 +67,7 @@ export const addHeaders = headers => {
67
67
  headers.append('X-ExperimentalApi', 'teams-beta');
68
68
  headers.append('X-ExperimentalApi', 'team-members-beta');
69
69
  headers.append('atl-client-name', "@atlaskit/profilecard");
70
- headers.append('atl-client-version', "19.22.0");
70
+ headers.append('atl-client-version', "19.23.0");
71
71
  return headers;
72
72
  };
73
73
  export async function getTeamFromAGG(url, teamId, siteId) {
@@ -32,7 +32,7 @@ const createEvent = (eventType, action, actionSubject, actionSubjectId, attribut
32
32
  actionSubjectId,
33
33
  attributes: {
34
34
  packageName: "@atlaskit/profilecard",
35
- packageVersion: "19.22.0",
35
+ packageVersion: "19.23.0",
36
36
  ...attributes,
37
37
  firedAt: Math.round(getPageTime())
38
38
  }
@@ -48,7 +48,7 @@ export var addHeaders = function addHeaders(headers) {
48
48
  headers.append('X-ExperimentalApi', 'teams-beta');
49
49
  headers.append('X-ExperimentalApi', 'team-members-beta');
50
50
  headers.append('atl-client-name', "@atlaskit/profilecard");
51
- headers.append('atl-client-version', "19.22.0");
51
+ headers.append('atl-client-version', "19.23.0");
52
52
  return headers;
53
53
  };
54
54
  export function getTeamFromAGG(_x, _x2, _x3) {
@@ -39,7 +39,7 @@ var createEvent = function createEvent(eventType, action, actionSubject, actionS
39
39
  actionSubjectId: actionSubjectId,
40
40
  attributes: _objectSpread(_objectSpread({
41
41
  packageName: "@atlaskit/profilecard",
42
- packageVersion: "19.22.0"
42
+ packageVersion: "19.23.0"
43
43
  }, attributes), {}, {
44
44
  firedAt: Math.round(getPageTime())
45
45
  })
@@ -47,7 +47,7 @@ export interface RovoAgent {
47
47
  name: string;
48
48
  description: string | null;
49
49
  system_prompt_template?: string | null;
50
- creator_type: 'SYSTEM' | 'CUSTOMER' | 'THIRD_PARTY';
50
+ creator_type: 'SYSTEM' | 'CUSTOMER' | 'THIRD_PARTY' | 'FORGE';
51
51
  creator?: string | null;
52
52
  visibility?: 'PUBLIC' | 'PRIVATE' | null;
53
53
  is_default: boolean;
@@ -60,7 +60,7 @@ export interface RovoAgent {
60
60
  deactivated?: boolean;
61
61
  }
62
62
  export interface RovoAgentCreatorInfo {
63
- type: 'CUSTOMER' | 'SYSTEM' | 'THIRD_PARTY';
63
+ type: 'CUSTOMER' | 'SYSTEM' | 'THIRD_PARTY' | 'FORGE';
64
64
  name?: string;
65
65
  profileLink?: string;
66
66
  id?: string;
@@ -47,7 +47,7 @@ export interface RovoAgent {
47
47
  name: string;
48
48
  description: string | null;
49
49
  system_prompt_template?: string | null;
50
- creator_type: 'SYSTEM' | 'CUSTOMER' | 'THIRD_PARTY';
50
+ creator_type: 'SYSTEM' | 'CUSTOMER' | 'THIRD_PARTY' | 'FORGE';
51
51
  creator?: string | null;
52
52
  visibility?: 'PUBLIC' | 'PRIVATE' | null;
53
53
  is_default: boolean;
@@ -60,7 +60,7 @@ export interface RovoAgent {
60
60
  deactivated?: boolean;
61
61
  }
62
62
  export interface RovoAgentCreatorInfo {
63
- type: 'CUSTOMER' | 'SYSTEM' | 'THIRD_PARTY';
63
+ type: 'CUSTOMER' | 'SYSTEM' | 'THIRD_PARTY' | 'FORGE';
64
64
  name?: string;
65
65
  profileLink?: string;
66
66
  id?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/profilecard",
3
- "version": "19.22.0",
3
+ "version": "19.23.0",
4
4
  "description": "A React component to display a card with user information.",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/"
@@ -69,7 +69,7 @@
69
69
  "@atlaskit/platform-feature-flags": "^0.3.0",
70
70
  "@atlaskit/popup": "^1.23.0",
71
71
  "@atlaskit/primitives": "^12.0.0",
72
- "@atlaskit/rovo-agent-components": "0.6.0",
72
+ "@atlaskit/rovo-agent-components": "1.1.0",
73
73
  "@atlaskit/spinner": "^16.3.0",
74
74
  "@atlaskit/theme": "^13.0.0",
75
75
  "@atlaskit/tokens": "^1.59.0",