@newpeak/barista-cli 0.2.196 → 0.2.197
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/dist/core/api/client.js
CHANGED
|
@@ -13551,7 +13551,7 @@ export const apiClient = {
|
|
|
13551
13551
|
}
|
|
13552
13552
|
const client = createAPIClient('liberica', environment, tenant);
|
|
13553
13553
|
client.setAuthToken(token);
|
|
13554
|
-
const response = await client.getClient().post('/api/enterprise/
|
|
13554
|
+
const response = await client.getClient().post('/api/enterprise/team/issue/fpEstimate', data);
|
|
13555
13555
|
return response.data;
|
|
13556
13556
|
}
|
|
13557
13557
|
catch (error) {
|
|
@@ -13566,7 +13566,7 @@ export const apiClient = {
|
|
|
13566
13566
|
}
|
|
13567
13567
|
const client = createAPIClient('liberica', environment, tenant);
|
|
13568
13568
|
client.setAuthToken(token);
|
|
13569
|
-
const response = await client.getClient().post('/api/enterprise/
|
|
13569
|
+
const response = await client.getClient().post('/api/enterprise/team/issue/fpActual', data);
|
|
13570
13570
|
return response.data;
|
|
13571
13571
|
}
|
|
13572
13572
|
catch (error) {
|
|
@@ -13581,7 +13581,7 @@ export const apiClient = {
|
|
|
13581
13581
|
}
|
|
13582
13582
|
const client = createAPIClient('liberica', environment, tenant);
|
|
13583
13583
|
client.setAuthToken(token);
|
|
13584
|
-
const response = await client.getClient().post('/api/enterprise/
|
|
13584
|
+
const response = await client.getClient().post('/api/enterprise/team/issue/fpReview', data);
|
|
13585
13585
|
return response.data;
|
|
13586
13586
|
}
|
|
13587
13587
|
catch (error) {
|
|
@@ -13605,7 +13605,7 @@ export const apiClient = {
|
|
|
13605
13605
|
queryString.append('endDate', params.endDate);
|
|
13606
13606
|
if (params?.methodType)
|
|
13607
13607
|
queryString.append('methodType', params.methodType);
|
|
13608
|
-
const response = await client.getClient().get(`/api/enterprise/
|
|
13608
|
+
const response = await client.getClient().get(`/api/enterprise/team/issue/fpSummary?${queryString.toString()}`);
|
|
13609
13609
|
return response.data;
|
|
13610
13610
|
}
|
|
13611
13611
|
catch (error) {
|
|
@@ -13633,7 +13633,7 @@ export const apiClient = {
|
|
|
13633
13633
|
queryString.append('includeTimeBuckets', String(params.includeTimeBuckets));
|
|
13634
13634
|
if (params?.includeLoadCheck)
|
|
13635
13635
|
queryString.append('includeLoadCheck', String(params.includeLoadCheck));
|
|
13636
|
-
const response = await client.getClient().get(`/api/enterprise/
|
|
13636
|
+
const response = await client.getClient().get(`/api/enterprise/team/issue/fpStats?${queryString.toString()}`);
|
|
13637
13637
|
return response.data;
|
|
13638
13638
|
}
|
|
13639
13639
|
catch (error) {
|