@atlaskit/user-picker 8.3.1 → 8.3.2
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 +6 -0
- package/dist/cjs/components/smart-user-picker/config/index.js +1 -1
- package/dist/cjs/version.json +1 -1
- package/dist/es2019/components/smart-user-picker/config/index.js +1 -1
- package/dist/es2019/version.json +1 -1
- package/dist/esm/components/smart-user-picker/config/index.js +1 -1
- package/dist/esm/version.json +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -16,7 +16,7 @@ var LOCAL_CONFIG = {
|
|
|
16
16
|
};
|
|
17
17
|
var PRD_CONFIG = {
|
|
18
18
|
getRecommendationServiceUrl: function getRecommendationServiceUrl(baseUrl) {
|
|
19
|
-
return baseUrl ? "
|
|
19
|
+
return baseUrl ? "".concat(baseUrl, "/gateway/api/v1/recommendations") : '/gateway/api/v1/recommendations';
|
|
20
20
|
},
|
|
21
21
|
getUsersServiceUrl: function getUsersServiceUrl(productKey) {
|
|
22
22
|
return productKey === 'jira' ? "/rest/api/3/user/bulk" : "/wiki/rest/api/user/bulk";
|
package/dist/cjs/version.json
CHANGED
|
@@ -12,7 +12,7 @@ const LOCAL_CONFIG = {
|
|
|
12
12
|
};
|
|
13
13
|
const PRD_CONFIG = {
|
|
14
14
|
getRecommendationServiceUrl(baseUrl) {
|
|
15
|
-
return baseUrl ?
|
|
15
|
+
return baseUrl ? `${baseUrl}/gateway/api/v1/recommendations` : '/gateway/api/v1/recommendations';
|
|
16
16
|
},
|
|
17
17
|
|
|
18
18
|
getUsersServiceUrl(productKey) {
|
package/dist/es2019/version.json
CHANGED
|
@@ -10,7 +10,7 @@ var LOCAL_CONFIG = {
|
|
|
10
10
|
};
|
|
11
11
|
var PRD_CONFIG = {
|
|
12
12
|
getRecommendationServiceUrl: function getRecommendationServiceUrl(baseUrl) {
|
|
13
|
-
return baseUrl ? "
|
|
13
|
+
return baseUrl ? "".concat(baseUrl, "/gateway/api/v1/recommendations") : '/gateway/api/v1/recommendations';
|
|
14
14
|
},
|
|
15
15
|
getUsersServiceUrl: function getUsersServiceUrl(productKey) {
|
|
16
16
|
return productKey === 'jira' ? "/rest/api/3/user/bulk" : "/wiki/rest/api/user/bulk";
|
package/dist/esm/version.json
CHANGED