starta.apiclient 1.112.13421 → 1.112.13434
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.
|
@@ -40,7 +40,6 @@ export default class WorkItems {
|
|
|
40
40
|
targetWorkItemId: string;
|
|
41
41
|
linkType: string;
|
|
42
42
|
}): Promise<import("../../types").StartaResponse>;
|
|
43
|
-
getComments(organizationLogin: string, workItemId: string): Promise<import("../../types").StartaResponse>;
|
|
44
43
|
addComment(organizationLogin: string, workItemId: string, body: {
|
|
45
44
|
message: any;
|
|
46
45
|
}): Promise<import("../../types").StartaResponse>;
|
|
@@ -52,12 +52,6 @@ class WorkItems {
|
|
|
52
52
|
body,
|
|
53
53
|
});
|
|
54
54
|
}
|
|
55
|
-
getComments(organizationLogin, workItemId) {
|
|
56
|
-
return this._requestRunner.performRequest({
|
|
57
|
-
url: `accounts/${organizationLogin}/work-items/${workItemId}/comments`,
|
|
58
|
-
method: 'GET',
|
|
59
|
-
});
|
|
60
|
-
}
|
|
61
55
|
addComment(organizationLogin, workItemId, body) {
|
|
62
56
|
return this._requestRunner.performRequest({
|
|
63
57
|
url: `accounts/${organizationLogin}/work-items/${workItemId}/comments`,
|