@atlaskit/rovo-triggers 6.4.0 → 6.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
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# @atlaskit/rovo-triggers
|
|
2
2
|
|
|
3
|
+
## 6.5.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`c5948348a4e51`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/c5948348a4e51) -
|
|
8
|
+
TREX-1373 (part 3/3): add @typescript-eslint/no-explicit-any OXLint suppression comments across
|
|
9
|
+
rovo-\* and misc packages. Includes OXLint override and Mithril ratchet to prevent new
|
|
10
|
+
suppressions.
|
|
11
|
+
|
|
3
12
|
## 6.4.0
|
|
4
13
|
|
|
5
14
|
### Minor Changes
|
|
@@ -39,6 +39,7 @@ var processParams = function processParams(input) {
|
|
|
39
39
|
var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {
|
|
40
40
|
filter: []
|
|
41
41
|
};
|
|
42
|
+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
42
43
|
var output = {};
|
|
43
44
|
var safeSearchParamsInput = typeof input === 'string' ? isValidURL(input) ? new URLSearchParams(new URL(input).search) : new URLSearchParams(input) : input;
|
|
44
45
|
var processedInput = new URLSearchParams(safeSearchParamsInput);
|
|
@@ -21,6 +21,7 @@ export const removePrefix = param => {
|
|
|
21
21
|
const processParams = (input, options = {
|
|
22
22
|
filter: []
|
|
23
23
|
}) => {
|
|
24
|
+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
24
25
|
const output = {};
|
|
25
26
|
const safeSearchParamsInput = typeof input === 'string' ? isValidURL(input) ? new URLSearchParams(new URL(input).search) : new URLSearchParams(input) : input;
|
|
26
27
|
const processedInput = new URLSearchParams(safeSearchParamsInput);
|
|
@@ -32,6 +32,7 @@ var processParams = function processParams(input) {
|
|
|
32
32
|
var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {
|
|
33
33
|
filter: []
|
|
34
34
|
};
|
|
35
|
+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
35
36
|
var output = {};
|
|
36
37
|
var safeSearchParamsInput = typeof input === 'string' ? isValidURL(input) ? new URLSearchParams(new URL(input).search) : new URLSearchParams(input) : input;
|
|
37
38
|
var processedInput = new URLSearchParams(safeSearchParamsInput);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/rovo-triggers",
|
|
3
|
-
"version": "6.
|
|
3
|
+
"version": "6.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": {
|