@atlaskit/rovo-triggers 4.0.1 → 4.1.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 +7 -0
- package/dist/es2019/index.js +2 -0
- package/dist/esm/index.js +2 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# @atlaskit/rovo-triggers
|
|
2
2
|
|
|
3
|
+
## 4.1.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`8bb807d8c76e6`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/8bb807d8c76e6) -
|
|
8
|
+
Adding \*.ts files for no barrel files detection for ai-mate packages
|
|
9
|
+
|
|
3
10
|
## 4.0.1
|
|
4
11
|
|
|
5
12
|
### Patch Changes
|
package/dist/es2019/index.js
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
// See [Barrel File Removal FAQ](https://hello.atlassian.net/wiki/x/KJT2aAE)
|
|
2
|
+
/* eslint-disable no-barrel-files/no-barrel-files */
|
|
1
3
|
export { usePublish, useSubscribe, useSubscribeAll, Subscriber } from './main';
|
|
2
4
|
export { getRovoParams, updatePageRovoParams, addRovoParamsToUrl, assertOnlySpecificFieldsDefined, encodeRovoParams, getListOfRovoParams } from './common/utils/params';
|
|
3
5
|
export { useRovoPostMessageToPubsub, RovoPostMessagePubsubListener } from './common/utils/post-message-to-pubsub';
|
package/dist/esm/index.js
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
// See [Barrel File Removal FAQ](https://hello.atlassian.net/wiki/x/KJT2aAE)
|
|
2
|
+
/* eslint-disable no-barrel-files/no-barrel-files */
|
|
1
3
|
export { usePublish, useSubscribe, useSubscribeAll, Subscriber } from './main';
|
|
2
4
|
export { getRovoParams, updatePageRovoParams, addRovoParamsToUrl, assertOnlySpecificFieldsDefined, encodeRovoParams, getListOfRovoParams } from './common/utils/params';
|
|
3
5
|
export { useRovoPostMessageToPubsub, RovoPostMessagePubsubListener } from './common/utils/post-message-to-pubsub';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/rovo-triggers",
|
|
3
|
-
"version": "4.0
|
|
3
|
+
"version": "4.1.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": {
|