@atlaskit/rovo-triggers 5.5.0 → 5.6.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/dist/cjs/types.js +2 -1
- package/dist/es2019/types.js +2 -1
- package/dist/esm/types.js +2 -1
- package/dist/types/index.d.ts +1 -1
- package/dist/types/types.d.ts +2 -1
- package/dist/types-ts4.5/index.d.ts +1 -1
- package/dist/types-ts4.5/types.d.ts +2 -1
- package/package.json +3 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
# @atlaskit/rovo-triggers
|
|
2
2
|
|
|
3
|
+
## 5.6.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`4a11592a1a45a`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/4a11592a1a45a) -
|
|
8
|
+
Add @atlassian/a11y-jest-testing to devDependencies.
|
|
9
|
+
|
|
10
|
+
## 5.6.0
|
|
11
|
+
|
|
12
|
+
### Minor Changes
|
|
13
|
+
|
|
14
|
+
- [`4ed112b530268`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/4ed112b530268) -
|
|
15
|
+
Run lint autofix to address existing lint violations and make internal import statements more
|
|
16
|
+
specific (bypass barrel files) to optimize dependency graph.
|
|
17
|
+
- [`ec61a217ca99b`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/ec61a217ca99b) -
|
|
18
|
+
Rovo chat insert urls follow ups
|
|
19
|
+
|
|
3
20
|
## 5.5.0
|
|
4
21
|
|
|
5
22
|
### Minor Changes
|
package/dist/cjs/types.js
CHANGED
|
@@ -5,7 +5,8 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
5
5
|
});
|
|
6
6
|
exports.Topics = void 0;
|
|
7
7
|
var Topics = exports.Topics = {
|
|
8
|
-
AI_MATE: 'ai-mate'
|
|
8
|
+
AI_MATE: 'ai-mate',
|
|
9
|
+
AI_MATE_INSERT_URLS: 'ai-mate-chat-inserts'
|
|
9
10
|
};
|
|
10
11
|
|
|
11
12
|
// Can only specify either `agentId` or `agentExternalConfigReference`, not both
|
package/dist/es2019/types.js
CHANGED
package/dist/esm/types.js
CHANGED
package/dist/types/index.d.ts
CHANGED
|
@@ -5,4 +5,4 @@ export type { JsmJourneyBuilderActionsPayload, JsmJourneyBuilderAgentAction, } f
|
|
|
5
5
|
export { getRovoParams, updatePageRovoParams, addRovoParamsToUrl, assertOnlySpecificFieldsDefined, encodeRovoParams, getListOfRovoParams, } from './common/utils/params';
|
|
6
6
|
export type { RovoChatParams, RovoChatPathway } from './common/utils/params/types';
|
|
7
7
|
export { useRovoPostMessageToPubsub, RovoPostMessagePubsubListener, } from './common/utils/post-message-to-pubsub';
|
|
8
|
-
export type { ChatContextState, ChatContextPayload } from './common/utils/chat-context';
|
|
8
|
+
export type { ChatContextState, ChatContextPayload } from './common/utils/chat-context/types';
|
package/dist/types/types.d.ts
CHANGED
|
@@ -2,9 +2,10 @@ import type { DocNode } from '@atlaskit/adf-schema';
|
|
|
2
2
|
import type { SolutionDraftAgentUpdatePayload } from './common/types/agent';
|
|
3
3
|
import type { JsmJourneyBuilderActionsPayload } from './common/types/jsm-journey-builder';
|
|
4
4
|
import type { SolutionArchitectAgentActivationPayload, SolutionArchitectHandoffPayload, SolutionPlanStateUpdatePayload, StudioAutomationBuildUpdatePayload, UpdateAgentConfigurationPayload } from './common/types/solution-architect';
|
|
5
|
-
import type { ChatContextPayload } from './common/utils/chat-context';
|
|
5
|
+
import type { ChatContextPayload } from './common/utils/chat-context/types';
|
|
6
6
|
export declare const Topics: {
|
|
7
7
|
readonly AI_MATE: "ai-mate";
|
|
8
|
+
readonly AI_MATE_INSERT_URLS: "ai-mate-chat-inserts";
|
|
8
9
|
};
|
|
9
10
|
export type Topic = (typeof Topics)[keyof typeof Topics];
|
|
10
11
|
export type PayloadCore<TKey extends string, TData = void> = {
|
|
@@ -5,4 +5,4 @@ export type { JsmJourneyBuilderActionsPayload, JsmJourneyBuilderAgentAction, } f
|
|
|
5
5
|
export { getRovoParams, updatePageRovoParams, addRovoParamsToUrl, assertOnlySpecificFieldsDefined, encodeRovoParams, getListOfRovoParams, } from './common/utils/params';
|
|
6
6
|
export type { RovoChatParams, RovoChatPathway } from './common/utils/params/types';
|
|
7
7
|
export { useRovoPostMessageToPubsub, RovoPostMessagePubsubListener, } from './common/utils/post-message-to-pubsub';
|
|
8
|
-
export type { ChatContextState, ChatContextPayload } from './common/utils/chat-context';
|
|
8
|
+
export type { ChatContextState, ChatContextPayload } from './common/utils/chat-context/types';
|
|
@@ -2,9 +2,10 @@ import type { DocNode } from '@atlaskit/adf-schema';
|
|
|
2
2
|
import type { SolutionDraftAgentUpdatePayload } from './common/types/agent';
|
|
3
3
|
import type { JsmJourneyBuilderActionsPayload } from './common/types/jsm-journey-builder';
|
|
4
4
|
import type { SolutionArchitectAgentActivationPayload, SolutionArchitectHandoffPayload, SolutionPlanStateUpdatePayload, StudioAutomationBuildUpdatePayload, UpdateAgentConfigurationPayload } from './common/types/solution-architect';
|
|
5
|
-
import type { ChatContextPayload } from './common/utils/chat-context';
|
|
5
|
+
import type { ChatContextPayload } from './common/utils/chat-context/types';
|
|
6
6
|
export declare const Topics: {
|
|
7
7
|
readonly AI_MATE: "ai-mate";
|
|
8
|
+
readonly AI_MATE_INSERT_URLS: "ai-mate-chat-inserts";
|
|
8
9
|
};
|
|
9
10
|
export type Topic = (typeof Topics)[keyof typeof Topics];
|
|
10
11
|
export type PayloadCore<TKey extends string, TData = void> = {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/rovo-triggers",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.6.1",
|
|
4
4
|
"description": "Provides various trigger events to drive Rovo Chat functionality, such as a publish-subscribe and URL parameter hooks",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"publishConfig": {
|
|
@@ -40,8 +40,9 @@
|
|
|
40
40
|
"@af/integration-testing": "workspace:^",
|
|
41
41
|
"@af/visual-regression": "workspace:^",
|
|
42
42
|
"@atlaskit/css": "^0.19.0",
|
|
43
|
-
"@atlaskit/primitives": "^17.
|
|
43
|
+
"@atlaskit/primitives": "^17.1.0",
|
|
44
44
|
"@atlaskit/ssr": "workspace:^",
|
|
45
|
+
"@atlassian/a11y-jest-testing": "^0.8.0",
|
|
45
46
|
"@atlassian/feature-flags-test-utils": "^1.0.0",
|
|
46
47
|
"@testing-library/react": "^16.3.0",
|
|
47
48
|
"react-dom": "^18.2.0",
|