@atlaskit/rovo-triggers 4.3.0 → 4.5.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 +16 -0
- package/dist/types/common/types/solution-architect/index.d.ts +1 -0
- package/dist/types/index.d.ts +1 -1
- package/dist/types/types.d.ts +2 -2
- package/dist/types-ts4.5/common/types/solution-architect/index.d.ts +1 -0
- package/dist/types-ts4.5/index.d.ts +1 -1
- package/dist/types-ts4.5/types.d.ts +2 -2
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @atlaskit/rovo-triggers
|
|
2
2
|
|
|
3
|
+
## 4.5.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`53c2e8326ad53`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/53c2e8326ad53) -
|
|
8
|
+
Add ability to update the state of the solution plan when an agent associated with a solution plan
|
|
9
|
+
is published and refresh the information displayed in the solution plan in the chat.
|
|
10
|
+
|
|
11
|
+
## 4.4.0
|
|
12
|
+
|
|
13
|
+
### Minor Changes
|
|
14
|
+
|
|
15
|
+
- [`9da3e7c74b44a`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/9da3e7c74b44a) -
|
|
16
|
+
[ux] Sort builds by number after retrieving solution plan from the backend. Update CTA copy to
|
|
17
|
+
"Start building" for all object types
|
|
18
|
+
|
|
3
19
|
## 4.3.0
|
|
4
20
|
|
|
5
21
|
### Minor Changes
|
|
@@ -17,4 +17,5 @@ export type AppHandoffPayload = BaseHandoffPayload & {
|
|
|
17
17
|
export type SolutionArchitectHandoffPayload = PayloadCore<'solution-architect-handoff'> & {
|
|
18
18
|
data: NonAppHandoffPayload | AppHandoffPayload;
|
|
19
19
|
};
|
|
20
|
+
export type SolutionPlanStateUpdatePayload = PayloadCore<'solution-plan-state-updated'>;
|
|
20
21
|
export {};
|
package/dist/types/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
export { usePublish, useSubscribe, useSubscribeAll, Subscriber } from './main';
|
|
2
2
|
export type { Payload, Callback, Topic, WorkflowContextPayloadData, EditorContextPayloadData, WhiteboardContextPayloadData, BrowserContextPayloadData, DatabaseContextPayloadData, AddStatusRovoPayload, UpdateStatusRovoPayload, DeleteStatusRovoPayload, AddNewTransitionRovoPayload, UpdateTransitionRovoPayload, DeleteTransitionRovoPayload, AddRuleRovoPayload, UpdateRuleRovoPayload, DeleteRuleRovoPayload, JiraWorkflowWizardAction, DashboardInsightsActionsPayload, DashboardInsightsActionsPayloadData, } from './types';
|
|
3
|
-
export type { SolutionArchitectHandoffPayload } from './common/types/solution-architect';
|
|
3
|
+
export type { SolutionArchitectHandoffPayload, NonAppHandoffPayload, AppHandoffPayload, } from './common/types/solution-architect';
|
|
4
4
|
export { getRovoParams, updatePageRovoParams, addRovoParamsToUrl, assertOnlySpecificFieldsDefined, encodeRovoParams, getListOfRovoParams, } from './common/utils/params';
|
|
5
5
|
export type { RovoChatParams, RovoChatPathway } from './common/utils/params/types';
|
|
6
6
|
export { useRovoPostMessageToPubsub, RovoPostMessagePubsubListener, } from './common/utils/post-message-to-pubsub';
|
package/dist/types/types.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { DocNode } from '@atlaskit/adf-schema';
|
|
2
|
-
import type { SolutionArchitectHandoffPayload } from './common/types/solution-architect';
|
|
2
|
+
import type { SolutionArchitectHandoffPayload, SolutionPlanStateUpdatePayload } from './common/types/solution-architect';
|
|
3
3
|
import type { ChatContextPayload } from './common/utils/chat-context';
|
|
4
4
|
export declare const Topics: {
|
|
5
5
|
readonly AI_MATE: "ai-mate";
|
|
@@ -254,7 +254,7 @@ export type DashboardInsightsActionsPayloadData = {
|
|
|
254
254
|
content: string;
|
|
255
255
|
} | undefined;
|
|
256
256
|
export type SetChatContextPayload = PayloadCore<'set-message-context', ChatContextPayload>;
|
|
257
|
-
export type Payload = MessageSendPayload | ChatClosePayload | ChatNewPayload | ChatDraftPayload | EditorContextPayload | ChatOpenPayload | OpenBrowseAgentPayload | OpenBrowseAgentSidebarPayload | EditorSuggestionPayload | EditorAgentChangedPayload | BrowserContextPayload | WhiteboardContextPayload | ForgeAppAuthSuccess | ForgeAppAuthFailure | JiraWorkflowWizardActionsPayload | InsertPromptPayload | DashboardInsightsActionsPayload | SetChatContextPayload | InsertUrlsPayload | GenericExternalActionErrorPayload | SolutionArchitectHandoffPayload;
|
|
257
|
+
export type Payload = MessageSendPayload | ChatClosePayload | ChatNewPayload | ChatDraftPayload | EditorContextPayload | ChatOpenPayload | OpenBrowseAgentPayload | OpenBrowseAgentSidebarPayload | EditorSuggestionPayload | EditorAgentChangedPayload | BrowserContextPayload | WhiteboardContextPayload | ForgeAppAuthSuccess | ForgeAppAuthFailure | JiraWorkflowWizardActionsPayload | InsertPromptPayload | DashboardInsightsActionsPayload | SetChatContextPayload | InsertUrlsPayload | GenericExternalActionErrorPayload | SolutionArchitectHandoffPayload | SolutionPlanStateUpdatePayload;
|
|
258
258
|
export type Callback = (payload: Payload) => void;
|
|
259
259
|
export type TopicEvents = {
|
|
260
260
|
[key in Topic]?: Array<{
|
|
@@ -17,4 +17,5 @@ export type AppHandoffPayload = BaseHandoffPayload & {
|
|
|
17
17
|
export type SolutionArchitectHandoffPayload = PayloadCore<'solution-architect-handoff'> & {
|
|
18
18
|
data: NonAppHandoffPayload | AppHandoffPayload;
|
|
19
19
|
};
|
|
20
|
+
export type SolutionPlanStateUpdatePayload = PayloadCore<'solution-plan-state-updated'>;
|
|
20
21
|
export {};
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
export { usePublish, useSubscribe, useSubscribeAll, Subscriber } from './main';
|
|
2
2
|
export type { Payload, Callback, Topic, WorkflowContextPayloadData, EditorContextPayloadData, WhiteboardContextPayloadData, BrowserContextPayloadData, DatabaseContextPayloadData, AddStatusRovoPayload, UpdateStatusRovoPayload, DeleteStatusRovoPayload, AddNewTransitionRovoPayload, UpdateTransitionRovoPayload, DeleteTransitionRovoPayload, AddRuleRovoPayload, UpdateRuleRovoPayload, DeleteRuleRovoPayload, JiraWorkflowWizardAction, DashboardInsightsActionsPayload, DashboardInsightsActionsPayloadData, } from './types';
|
|
3
|
-
export type { SolutionArchitectHandoffPayload } from './common/types/solution-architect';
|
|
3
|
+
export type { SolutionArchitectHandoffPayload, NonAppHandoffPayload, AppHandoffPayload, } from './common/types/solution-architect';
|
|
4
4
|
export { getRovoParams, updatePageRovoParams, addRovoParamsToUrl, assertOnlySpecificFieldsDefined, encodeRovoParams, getListOfRovoParams, } from './common/utils/params';
|
|
5
5
|
export type { RovoChatParams, RovoChatPathway } from './common/utils/params/types';
|
|
6
6
|
export { useRovoPostMessageToPubsub, RovoPostMessagePubsubListener, } from './common/utils/post-message-to-pubsub';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { DocNode } from '@atlaskit/adf-schema';
|
|
2
|
-
import type { SolutionArchitectHandoffPayload } from './common/types/solution-architect';
|
|
2
|
+
import type { SolutionArchitectHandoffPayload, SolutionPlanStateUpdatePayload } from './common/types/solution-architect';
|
|
3
3
|
import type { ChatContextPayload } from './common/utils/chat-context';
|
|
4
4
|
export declare const Topics: {
|
|
5
5
|
readonly AI_MATE: "ai-mate";
|
|
@@ -254,7 +254,7 @@ export type DashboardInsightsActionsPayloadData = {
|
|
|
254
254
|
content: string;
|
|
255
255
|
} | undefined;
|
|
256
256
|
export type SetChatContextPayload = PayloadCore<'set-message-context', ChatContextPayload>;
|
|
257
|
-
export type Payload = MessageSendPayload | ChatClosePayload | ChatNewPayload | ChatDraftPayload | EditorContextPayload | ChatOpenPayload | OpenBrowseAgentPayload | OpenBrowseAgentSidebarPayload | EditorSuggestionPayload | EditorAgentChangedPayload | BrowserContextPayload | WhiteboardContextPayload | ForgeAppAuthSuccess | ForgeAppAuthFailure | JiraWorkflowWizardActionsPayload | InsertPromptPayload | DashboardInsightsActionsPayload | SetChatContextPayload | InsertUrlsPayload | GenericExternalActionErrorPayload | SolutionArchitectHandoffPayload;
|
|
257
|
+
export type Payload = MessageSendPayload | ChatClosePayload | ChatNewPayload | ChatDraftPayload | EditorContextPayload | ChatOpenPayload | OpenBrowseAgentPayload | OpenBrowseAgentSidebarPayload | EditorSuggestionPayload | EditorAgentChangedPayload | BrowserContextPayload | WhiteboardContextPayload | ForgeAppAuthSuccess | ForgeAppAuthFailure | JiraWorkflowWizardActionsPayload | InsertPromptPayload | DashboardInsightsActionsPayload | SetChatContextPayload | InsertUrlsPayload | GenericExternalActionErrorPayload | SolutionArchitectHandoffPayload | SolutionPlanStateUpdatePayload;
|
|
258
258
|
export type Callback = (payload: Payload) => void;
|
|
259
259
|
export type TopicEvents = {
|
|
260
260
|
[key in Topic]?: Array<{
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/rovo-triggers",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.5.0",
|
|
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": {
|
|
@@ -39,8 +39,8 @@
|
|
|
39
39
|
"devDependencies": {
|
|
40
40
|
"@af/integration-testing": "workspace:^",
|
|
41
41
|
"@af/visual-regression": "workspace:^",
|
|
42
|
-
"@atlaskit/css": "^0.
|
|
43
|
-
"@atlaskit/primitives": "^16.
|
|
42
|
+
"@atlaskit/css": "^0.17.0",
|
|
43
|
+
"@atlaskit/primitives": "^16.4.0",
|
|
44
44
|
"@atlaskit/ssr": "workspace:^",
|
|
45
45
|
"@atlassian/feature-flags-test-utils": "^1.0.0",
|
|
46
46
|
"@testing-library/react": "^13.4.0",
|