@n8n-dev/n8n-nodes-lgtm 1.0.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/README.md +169 -0
- package/dist/banner.svg +144 -0
- package/dist/credentials/LgtmApi.credentials.d.ts +9 -0
- package/dist/credentials/LgtmApi.credentials.js +40 -0
- package/dist/credentials/LgtmApi.credentials.js.map +1 -0
- package/dist/icons/lgtm.dark.svg +18 -0
- package/dist/icons/lgtm.svg +18 -0
- package/dist/nodes/Lgtm/Lgtm.node.d.ts +4 -0
- package/dist/nodes/Lgtm/Lgtm.node.js +110 -0
- package/dist/nodes/Lgtm/Lgtm.node.js.map +1 -0
- package/dist/nodes/Lgtm/Lgtm.node.json +20 -0
- package/dist/nodes/Lgtm/lgtm.dark.svg +18 -0
- package/dist/nodes/Lgtm/lgtm.svg +18 -0
- package/dist/nodes/Lgtm/resources/analyses/index.d.ts +2 -0
- package/dist/nodes/Lgtm/resources/analyses/index.js +437 -0
- package/dist/nodes/Lgtm/resources/analyses/index.js.map +1 -0
- package/dist/nodes/Lgtm/resources/api-root/index.d.ts +2 -0
- package/dist/nodes/Lgtm/resources/api-root/index.js +109 -0
- package/dist/nodes/Lgtm/resources/api-root/index.js.map +1 -0
- package/dist/nodes/Lgtm/resources/code-reviews/index.d.ts +2 -0
- package/dist/nodes/Lgtm/resources/code-reviews/index.js +313 -0
- package/dist/nodes/Lgtm/resources/code-reviews/index.js.map +1 -0
- package/dist/nodes/Lgtm/resources/index.d.ts +9 -0
- package/dist/nodes/Lgtm/resources/index.js +22 -0
- package/dist/nodes/Lgtm/resources/index.js.map +1 -0
- package/dist/nodes/Lgtm/resources/issues/index.d.ts +2 -0
- package/dist/nodes/Lgtm/resources/issues/index.js +114 -0
- package/dist/nodes/Lgtm/resources/issues/index.js.map +1 -0
- package/dist/nodes/Lgtm/resources/operations/index.d.ts +2 -0
- package/dist/nodes/Lgtm/resources/operations/index.js +96 -0
- package/dist/nodes/Lgtm/resources/operations/index.js.map +1 -0
- package/dist/nodes/Lgtm/resources/projects/index.d.ts +2 -0
- package/dist/nodes/Lgtm/resources/projects/index.js +822 -0
- package/dist/nodes/Lgtm/resources/projects/index.js.map +1 -0
- package/dist/nodes/Lgtm/resources/query-jobs/index.d.ts +2 -0
- package/dist/nodes/Lgtm/resources/query-jobs/index.js +560 -0
- package/dist/nodes/Lgtm/resources/query-jobs/index.js.map +1 -0
- package/dist/nodes/Lgtm/resources/snapshots/index.d.ts +2 -0
- package/dist/nodes/Lgtm/resources/snapshots/index.js +495 -0
- package/dist/nodes/Lgtm/resources/snapshots/index.js.map +1 -0
- package/dist/nodes/Lgtm/resources/system/index.d.ts +2 -0
- package/dist/nodes/Lgtm/resources/system/index.js +208 -0
- package/dist/nodes/Lgtm/resources/system/index.js.map +1 -0
- package/dist/package.json +62 -0
- package/dist/tsconfig.tsbuildinfo +1 -0
- package/package.json +62 -0
|
@@ -0,0 +1,313 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.codeReviewsDescription = void 0;
|
|
4
|
+
exports.codeReviewsDescription = [
|
|
5
|
+
{
|
|
6
|
+
"displayName": "Operation",
|
|
7
|
+
"name": "operation",
|
|
8
|
+
"type": "options",
|
|
9
|
+
"noDataExpression": true,
|
|
10
|
+
"displayOptions": {
|
|
11
|
+
"show": {
|
|
12
|
+
"resource": [
|
|
13
|
+
"Code Reviews"
|
|
14
|
+
]
|
|
15
|
+
}
|
|
16
|
+
},
|
|
17
|
+
"options": [
|
|
18
|
+
{
|
|
19
|
+
"name": "Request Review",
|
|
20
|
+
"value": "Request Review",
|
|
21
|
+
"action": "Run code review for a patch",
|
|
22
|
+
"description": "Trigger the code review of a patch. This is available for projects with Git repositories.\n\nYour request must include:\n\n * Identifier for the base commit\n * Patch generated using `git diff --binary` (see [git diff](https://git-scm.com/docs/git-diff))\n * Header `Content-Type: application/octet-stream`\n * For both LGTM.com and LGTM Enterprise, an access token with the `codereviews:write` scope\n\nNote that if you make a request using Curl, you'll also need to add `--data-binary` to the request to ensure that the patch you supply in the body is sent with newlines unchanged.\nYou can track the progress of the review using the task result URL returned on creation of the task, or by calling the `/operations` endpoint with the operations identifier returned by the request. For more information, see [Get operation status](https://lgtm.com/help/lgtm/api/api-v1#opIdgetOperation). Alternatively, if you supply a callback URL you'll get a post-back automatically on completion of the review.\n\nWhen the review is complete, you can access the results using the task result URL.\n",
|
|
23
|
+
"routing": {
|
|
24
|
+
"request": {
|
|
25
|
+
"method": "POST",
|
|
26
|
+
"url": "=/codereviews/{{$parameter[\"project-id\"]}}"
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
"name": "Get Code Review",
|
|
32
|
+
"value": "Get Code Review",
|
|
33
|
+
"action": "Get results of code review",
|
|
34
|
+
"description": "Get the results of a code review using the review identifier for the task.\n\nWhen you request a code review, the response includes a task result URL of the form: `/codereviews/{review-id}`.\n\nThis endpoint reports the results of a complete code review, or the status of a review that's still in progress.\n",
|
|
35
|
+
"routing": {
|
|
36
|
+
"request": {
|
|
37
|
+
"method": "GET",
|
|
38
|
+
"url": "=/codereviews/{{$parameter[\"review-id\"]}}"
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
],
|
|
43
|
+
"default": ""
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
"displayName": "POST /codereviews/{project-id}",
|
|
47
|
+
"name": "operation",
|
|
48
|
+
"type": "notice",
|
|
49
|
+
"typeOptions": {
|
|
50
|
+
"theme": "info"
|
|
51
|
+
},
|
|
52
|
+
"default": "",
|
|
53
|
+
"displayOptions": {
|
|
54
|
+
"show": {
|
|
55
|
+
"resource": [
|
|
56
|
+
"Code Reviews"
|
|
57
|
+
],
|
|
58
|
+
"operation": [
|
|
59
|
+
"Request Review"
|
|
60
|
+
]
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
},
|
|
64
|
+
{
|
|
65
|
+
"displayName": "Project ID",
|
|
66
|
+
"name": "project-id",
|
|
67
|
+
"required": true,
|
|
68
|
+
"description": "The numeric project identifier.",
|
|
69
|
+
"default": 0,
|
|
70
|
+
"type": "number",
|
|
71
|
+
"displayOptions": {
|
|
72
|
+
"show": {
|
|
73
|
+
"resource": [
|
|
74
|
+
"Code Reviews"
|
|
75
|
+
],
|
|
76
|
+
"operation": [
|
|
77
|
+
"Request Review"
|
|
78
|
+
]
|
|
79
|
+
}
|
|
80
|
+
}
|
|
81
|
+
},
|
|
82
|
+
{
|
|
83
|
+
"displayName": "Base",
|
|
84
|
+
"name": "base",
|
|
85
|
+
"required": true,
|
|
86
|
+
"description": "The identifier for the base commit.",
|
|
87
|
+
"default": "",
|
|
88
|
+
"type": "string",
|
|
89
|
+
"routing": {
|
|
90
|
+
"send": {
|
|
91
|
+
"type": "query",
|
|
92
|
+
"property": "base",
|
|
93
|
+
"value": "={{ $value }}",
|
|
94
|
+
"propertyInDotNotation": false
|
|
95
|
+
}
|
|
96
|
+
},
|
|
97
|
+
"displayOptions": {
|
|
98
|
+
"show": {
|
|
99
|
+
"resource": [
|
|
100
|
+
"Code Reviews"
|
|
101
|
+
],
|
|
102
|
+
"operation": [
|
|
103
|
+
"Request Review"
|
|
104
|
+
]
|
|
105
|
+
}
|
|
106
|
+
}
|
|
107
|
+
},
|
|
108
|
+
{
|
|
109
|
+
"displayName": "External ID",
|
|
110
|
+
"name": "external-id",
|
|
111
|
+
"required": true,
|
|
112
|
+
"description": "Your reference number for the code review.",
|
|
113
|
+
"default": "integer",
|
|
114
|
+
"type": "number",
|
|
115
|
+
"routing": {
|
|
116
|
+
"send": {
|
|
117
|
+
"type": "query",
|
|
118
|
+
"property": "external-id",
|
|
119
|
+
"value": "={{ $value }}",
|
|
120
|
+
"propertyInDotNotation": false
|
|
121
|
+
}
|
|
122
|
+
},
|
|
123
|
+
"displayOptions": {
|
|
124
|
+
"show": {
|
|
125
|
+
"resource": [
|
|
126
|
+
"Code Reviews"
|
|
127
|
+
],
|
|
128
|
+
"operation": [
|
|
129
|
+
"Request Review"
|
|
130
|
+
]
|
|
131
|
+
}
|
|
132
|
+
}
|
|
133
|
+
},
|
|
134
|
+
{
|
|
135
|
+
"displayName": "Review URL",
|
|
136
|
+
"name": "review-url",
|
|
137
|
+
"description": "An informative back-link to an external system.",
|
|
138
|
+
"default": "",
|
|
139
|
+
"type": "string",
|
|
140
|
+
"routing": {
|
|
141
|
+
"send": {
|
|
142
|
+
"type": "query",
|
|
143
|
+
"property": "review-url",
|
|
144
|
+
"value": "={{ $value }}",
|
|
145
|
+
"propertyInDotNotation": false
|
|
146
|
+
}
|
|
147
|
+
},
|
|
148
|
+
"displayOptions": {
|
|
149
|
+
"show": {
|
|
150
|
+
"resource": [
|
|
151
|
+
"Code Reviews"
|
|
152
|
+
],
|
|
153
|
+
"operation": [
|
|
154
|
+
"Request Review"
|
|
155
|
+
]
|
|
156
|
+
}
|
|
157
|
+
}
|
|
158
|
+
},
|
|
159
|
+
{
|
|
160
|
+
"displayName": "Callback URL",
|
|
161
|
+
"name": "callback-url",
|
|
162
|
+
"description": "The callback URL for LGTM to post to on completion of the review.\nWhen the code review is complete, the API sends an HTTP POST request to the callback URL with the result of the code review in the request body. The code review results in the request body are identical to the results accessed through the [`/codereviews/{review-id}`](https://lgtm.com/help/lgtm/api/api-v1#opIdgetCodeReview) end-point.\nIf you specify a `callback-secret`, the request also includes an `x-lgtm-signature` header with a digital signature of the request's contents.\n",
|
|
163
|
+
"default": "",
|
|
164
|
+
"type": "string",
|
|
165
|
+
"routing": {
|
|
166
|
+
"send": {
|
|
167
|
+
"type": "query",
|
|
168
|
+
"property": "callback-url",
|
|
169
|
+
"value": "={{ $value }}",
|
|
170
|
+
"propertyInDotNotation": false
|
|
171
|
+
}
|
|
172
|
+
},
|
|
173
|
+
"displayOptions": {
|
|
174
|
+
"show": {
|
|
175
|
+
"resource": [
|
|
176
|
+
"Code Reviews"
|
|
177
|
+
],
|
|
178
|
+
"operation": [
|
|
179
|
+
"Request Review"
|
|
180
|
+
]
|
|
181
|
+
}
|
|
182
|
+
}
|
|
183
|
+
},
|
|
184
|
+
{
|
|
185
|
+
"displayName": "Callback Secret",
|
|
186
|
+
"name": "callback-secret",
|
|
187
|
+
"description": "The `callback-secret` is used to compute a signature which is included in the `x-lgtm-signature` header of the callback response.\nThe receiver of the callback can check the validity of the response by computing the signature using HMAC-SHA1 and verifying that it matches the `x-lgtm-signature` header value.\nThe HMAC algorithm requires byte sequences as inputs for both the secret and the message. The callback secret string must be converted to bytes using UTF-8 encoding. The response body should ideally be read as a plain byte sequence. Conversion to, for example a JSON object, and back to a byte sequence might change the formatting, and would invalidate the signature.\n",
|
|
188
|
+
"default": "",
|
|
189
|
+
"type": "string",
|
|
190
|
+
"routing": {
|
|
191
|
+
"send": {
|
|
192
|
+
"type": "query",
|
|
193
|
+
"property": "callback-secret",
|
|
194
|
+
"value": "={{ $value }}",
|
|
195
|
+
"propertyInDotNotation": false
|
|
196
|
+
}
|
|
197
|
+
},
|
|
198
|
+
"displayOptions": {
|
|
199
|
+
"show": {
|
|
200
|
+
"resource": [
|
|
201
|
+
"Code Reviews"
|
|
202
|
+
],
|
|
203
|
+
"operation": [
|
|
204
|
+
"Request Review"
|
|
205
|
+
]
|
|
206
|
+
}
|
|
207
|
+
}
|
|
208
|
+
},
|
|
209
|
+
{
|
|
210
|
+
"displayName": "POST /codereviews/{project-id}<br/><br/>There's no body available for request, kindly use HTTP Request node to send body",
|
|
211
|
+
"name": "operation",
|
|
212
|
+
"type": "notice",
|
|
213
|
+
"default": "",
|
|
214
|
+
"displayOptions": {
|
|
215
|
+
"show": {
|
|
216
|
+
"resource": [
|
|
217
|
+
"Code Reviews"
|
|
218
|
+
],
|
|
219
|
+
"operation": [
|
|
220
|
+
"Request Review"
|
|
221
|
+
]
|
|
222
|
+
}
|
|
223
|
+
}
|
|
224
|
+
},
|
|
225
|
+
{
|
|
226
|
+
"displayName": "Bearer Token",
|
|
227
|
+
"name": "security_access_token",
|
|
228
|
+
"type": "string",
|
|
229
|
+
"default": "",
|
|
230
|
+
"description": "\n\nLGTM Enterprise users need to create and use an access token to authenticate with this API. This is optional for LGTM.com users unless they want to submit a CodeQL query for analysis of one or more projects, or to request the analysis of a patch or commit. LGTM.com users also need an access token to check on the progress of long running tasks using the `/operations` endpoint.\nLog in to LGTM and use the **Create token** option in your Account settings page. For more detailed information, see [Authentication with the API](https://lgtm.com/help/lgtm/api/authentication-api) and [Managing access tokens](https://lgtm.com/help/lgtm/api/managing-access-tokens).\nIf you include an access token in the header of a request to the API for data, it must have the scopes required by that endpoint. Access tokens are shown in the examples as: `Authorization: Bearer {access-token}`\n",
|
|
231
|
+
"required": false,
|
|
232
|
+
"routing": {
|
|
233
|
+
"request": {
|
|
234
|
+
"headers": {
|
|
235
|
+
"Authorization": "={{ 'Bearer ' + $value }}"
|
|
236
|
+
}
|
|
237
|
+
}
|
|
238
|
+
},
|
|
239
|
+
"displayOptions": {
|
|
240
|
+
"show": {
|
|
241
|
+
"resource": [
|
|
242
|
+
"Code Reviews"
|
|
243
|
+
],
|
|
244
|
+
"operation": [
|
|
245
|
+
"Request Review"
|
|
246
|
+
]
|
|
247
|
+
}
|
|
248
|
+
}
|
|
249
|
+
},
|
|
250
|
+
{
|
|
251
|
+
"displayName": "GET /codereviews/{review-id}",
|
|
252
|
+
"name": "operation",
|
|
253
|
+
"type": "notice",
|
|
254
|
+
"typeOptions": {
|
|
255
|
+
"theme": "info"
|
|
256
|
+
},
|
|
257
|
+
"default": "",
|
|
258
|
+
"displayOptions": {
|
|
259
|
+
"show": {
|
|
260
|
+
"resource": [
|
|
261
|
+
"Code Reviews"
|
|
262
|
+
],
|
|
263
|
+
"operation": [
|
|
264
|
+
"Get Code Review"
|
|
265
|
+
]
|
|
266
|
+
}
|
|
267
|
+
}
|
|
268
|
+
},
|
|
269
|
+
{
|
|
270
|
+
"displayName": "Review ID",
|
|
271
|
+
"name": "review-id",
|
|
272
|
+
"required": true,
|
|
273
|
+
"description": "The identifier for the review (from the `task-result-url`).",
|
|
274
|
+
"default": "",
|
|
275
|
+
"type": "string",
|
|
276
|
+
"displayOptions": {
|
|
277
|
+
"show": {
|
|
278
|
+
"resource": [
|
|
279
|
+
"Code Reviews"
|
|
280
|
+
],
|
|
281
|
+
"operation": [
|
|
282
|
+
"Get Code Review"
|
|
283
|
+
]
|
|
284
|
+
}
|
|
285
|
+
}
|
|
286
|
+
},
|
|
287
|
+
{
|
|
288
|
+
"displayName": "Bearer Token",
|
|
289
|
+
"name": "security_access_token",
|
|
290
|
+
"type": "string",
|
|
291
|
+
"default": "",
|
|
292
|
+
"description": "\n\nLGTM Enterprise users need to create and use an access token to authenticate with this API. This is optional for LGTM.com users unless they want to submit a CodeQL query for analysis of one or more projects, or to request the analysis of a patch or commit. LGTM.com users also need an access token to check on the progress of long running tasks using the `/operations` endpoint.\nLog in to LGTM and use the **Create token** option in your Account settings page. For more detailed information, see [Authentication with the API](https://lgtm.com/help/lgtm/api/authentication-api) and [Managing access tokens](https://lgtm.com/help/lgtm/api/managing-access-tokens).\nIf you include an access token in the header of a request to the API for data, it must have the scopes required by that endpoint. Access tokens are shown in the examples as: `Authorization: Bearer {access-token}`\n",
|
|
293
|
+
"required": false,
|
|
294
|
+
"routing": {
|
|
295
|
+
"request": {
|
|
296
|
+
"headers": {
|
|
297
|
+
"Authorization": "={{ 'Bearer ' + $value }}"
|
|
298
|
+
}
|
|
299
|
+
}
|
|
300
|
+
},
|
|
301
|
+
"displayOptions": {
|
|
302
|
+
"show": {
|
|
303
|
+
"resource": [
|
|
304
|
+
"Code Reviews"
|
|
305
|
+
],
|
|
306
|
+
"operation": [
|
|
307
|
+
"Get Code Review"
|
|
308
|
+
]
|
|
309
|
+
}
|
|
310
|
+
}
|
|
311
|
+
},
|
|
312
|
+
];
|
|
313
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../nodes/Lgtm/resources/code-reviews/index.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
export { apiRootDescription } from './api-root';
|
|
2
|
+
export { projectsDescription } from './projects';
|
|
3
|
+
export { analysesDescription } from './analyses';
|
|
4
|
+
export { codeReviewsDescription } from './code-reviews';
|
|
5
|
+
export { issuesDescription } from './issues';
|
|
6
|
+
export { operationsDescription } from './operations';
|
|
7
|
+
export { snapshotsDescription } from './snapshots';
|
|
8
|
+
export { systemDescription } from './system';
|
|
9
|
+
export { queryJobsDescription } from './query-jobs';
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.queryJobsDescription = exports.systemDescription = exports.snapshotsDescription = exports.operationsDescription = exports.issuesDescription = exports.codeReviewsDescription = exports.analysesDescription = exports.projectsDescription = exports.apiRootDescription = void 0;
|
|
4
|
+
var api_root_1 = require("./api-root");
|
|
5
|
+
Object.defineProperty(exports, "apiRootDescription", { enumerable: true, get: function () { return api_root_1.apiRootDescription; } });
|
|
6
|
+
var projects_1 = require("./projects");
|
|
7
|
+
Object.defineProperty(exports, "projectsDescription", { enumerable: true, get: function () { return projects_1.projectsDescription; } });
|
|
8
|
+
var analyses_1 = require("./analyses");
|
|
9
|
+
Object.defineProperty(exports, "analysesDescription", { enumerable: true, get: function () { return analyses_1.analysesDescription; } });
|
|
10
|
+
var code_reviews_1 = require("./code-reviews");
|
|
11
|
+
Object.defineProperty(exports, "codeReviewsDescription", { enumerable: true, get: function () { return code_reviews_1.codeReviewsDescription; } });
|
|
12
|
+
var issues_1 = require("./issues");
|
|
13
|
+
Object.defineProperty(exports, "issuesDescription", { enumerable: true, get: function () { return issues_1.issuesDescription; } });
|
|
14
|
+
var operations_1 = require("./operations");
|
|
15
|
+
Object.defineProperty(exports, "operationsDescription", { enumerable: true, get: function () { return operations_1.operationsDescription; } });
|
|
16
|
+
var snapshots_1 = require("./snapshots");
|
|
17
|
+
Object.defineProperty(exports, "snapshotsDescription", { enumerable: true, get: function () { return snapshots_1.snapshotsDescription; } });
|
|
18
|
+
var system_1 = require("./system");
|
|
19
|
+
Object.defineProperty(exports, "systemDescription", { enumerable: true, get: function () { return system_1.systemDescription; } });
|
|
20
|
+
var query_jobs_1 = require("./query-jobs");
|
|
21
|
+
Object.defineProperty(exports, "queryJobsDescription", { enumerable: true, get: function () { return query_jobs_1.queryJobsDescription; } });
|
|
22
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../nodes/Lgtm/resources/index.ts"],"names":[],"mappings":";;;AAAA,uCAAgD;AAAvC,8GAAA,kBAAkB,OAAA;AAC3B,uCAAiD;AAAxC,+GAAA,mBAAmB,OAAA;AAC5B,uCAAiD;AAAxC,+GAAA,mBAAmB,OAAA;AAC5B,+CAAwD;AAA/C,sHAAA,sBAAsB,OAAA;AAC/B,mCAA6C;AAApC,2GAAA,iBAAiB,OAAA;AAC1B,2CAAqD;AAA5C,mHAAA,qBAAqB,OAAA;AAC9B,yCAAmD;AAA1C,iHAAA,oBAAoB,OAAA;AAC7B,mCAA6C;AAApC,2GAAA,iBAAiB,OAAA;AAC1B,2CAAoD;AAA3C,kHAAA,oBAAoB,OAAA"}
|
|
@@ -0,0 +1,114 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.issuesDescription = void 0;
|
|
4
|
+
exports.issuesDescription = [
|
|
5
|
+
{
|
|
6
|
+
"displayName": "Operation",
|
|
7
|
+
"name": "operation",
|
|
8
|
+
"type": "options",
|
|
9
|
+
"noDataExpression": true,
|
|
10
|
+
"displayOptions": {
|
|
11
|
+
"show": {
|
|
12
|
+
"resource": [
|
|
13
|
+
"Issues"
|
|
14
|
+
]
|
|
15
|
+
}
|
|
16
|
+
},
|
|
17
|
+
"options": [
|
|
18
|
+
{
|
|
19
|
+
"name": "Get Issue",
|
|
20
|
+
"value": "Get Issue",
|
|
21
|
+
"action": "Get detailed alert information for an issue",
|
|
22
|
+
"description": "Fetch the alert information for an issue in [SARIF](https://lgtm.com/help/lgtm/sarif-results-file) format.\n",
|
|
23
|
+
"routing": {
|
|
24
|
+
"request": {
|
|
25
|
+
"method": "GET",
|
|
26
|
+
"url": "=/issues/{{$parameter[\"project-id\"]}}/{{$parameter[\"alert-key\"]}}"
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
],
|
|
31
|
+
"default": ""
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
"displayName": "GET /issues/{project-id}/{alert-key}",
|
|
35
|
+
"name": "operation",
|
|
36
|
+
"type": "notice",
|
|
37
|
+
"typeOptions": {
|
|
38
|
+
"theme": "info"
|
|
39
|
+
},
|
|
40
|
+
"default": "",
|
|
41
|
+
"displayOptions": {
|
|
42
|
+
"show": {
|
|
43
|
+
"resource": [
|
|
44
|
+
"Issues"
|
|
45
|
+
],
|
|
46
|
+
"operation": [
|
|
47
|
+
"Get Issue"
|
|
48
|
+
]
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
"displayName": "Project ID",
|
|
54
|
+
"name": "project-id",
|
|
55
|
+
"required": true,
|
|
56
|
+
"description": "The numeric project identifier.",
|
|
57
|
+
"default": 0,
|
|
58
|
+
"type": "number",
|
|
59
|
+
"displayOptions": {
|
|
60
|
+
"show": {
|
|
61
|
+
"resource": [
|
|
62
|
+
"Issues"
|
|
63
|
+
],
|
|
64
|
+
"operation": [
|
|
65
|
+
"Get Issue"
|
|
66
|
+
]
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
},
|
|
70
|
+
{
|
|
71
|
+
"displayName": "Alert Key",
|
|
72
|
+
"name": "alert-key",
|
|
73
|
+
"required": true,
|
|
74
|
+
"description": "The alert key is generated by LGTM when it posts an issue `create` webhook request \n to an external system using the [issue tracker Webhook API](https://lgtm.com/admin/help/issuetracker-webhook-api).\n This key is an opaque identifier that tracks the alert's location over time. For example, if a file containing the alert\n is modified, the SARIF data will reflect the updated location of the alert.\n Note that the key needs to be URL encoded as it may contain characters that are not web-safe. \n",
|
|
75
|
+
"default": "+ja0cf6+84AGgat15W1jooeMfUY=",
|
|
76
|
+
"type": "string",
|
|
77
|
+
"displayOptions": {
|
|
78
|
+
"show": {
|
|
79
|
+
"resource": [
|
|
80
|
+
"Issues"
|
|
81
|
+
],
|
|
82
|
+
"operation": [
|
|
83
|
+
"Get Issue"
|
|
84
|
+
]
|
|
85
|
+
}
|
|
86
|
+
}
|
|
87
|
+
},
|
|
88
|
+
{
|
|
89
|
+
"displayName": "Bearer Token",
|
|
90
|
+
"name": "security_access_token",
|
|
91
|
+
"type": "string",
|
|
92
|
+
"default": "",
|
|
93
|
+
"description": "\n\nLGTM Enterprise users need to create and use an access token to authenticate with this API. This is optional for LGTM.com users unless they want to submit a CodeQL query for analysis of one or more projects, or to request the analysis of a patch or commit. LGTM.com users also need an access token to check on the progress of long running tasks using the `/operations` endpoint.\nLog in to LGTM and use the **Create token** option in your Account settings page. For more detailed information, see [Authentication with the API](https://lgtm.com/help/lgtm/api/authentication-api) and [Managing access tokens](https://lgtm.com/help/lgtm/api/managing-access-tokens).\nIf you include an access token in the header of a request to the API for data, it must have the scopes required by that endpoint. Access tokens are shown in the examples as: `Authorization: Bearer {access-token}`\n",
|
|
94
|
+
"required": false,
|
|
95
|
+
"routing": {
|
|
96
|
+
"request": {
|
|
97
|
+
"headers": {
|
|
98
|
+
"Authorization": "={{ 'Bearer ' + $value }}"
|
|
99
|
+
}
|
|
100
|
+
}
|
|
101
|
+
},
|
|
102
|
+
"displayOptions": {
|
|
103
|
+
"show": {
|
|
104
|
+
"resource": [
|
|
105
|
+
"Issues"
|
|
106
|
+
],
|
|
107
|
+
"operation": [
|
|
108
|
+
"Get Issue"
|
|
109
|
+
]
|
|
110
|
+
}
|
|
111
|
+
}
|
|
112
|
+
},
|
|
113
|
+
];
|
|
114
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../nodes/Lgtm/resources/issues/index.ts"],"names":[],"mappings":";;;AAEa,QAAA,iBAAiB,GAAsB;IACpC;QACb,aAAa,EAAE,WAAW;QAC1B,MAAM,EAAE,WAAW;QACnB,MAAM,EAAE,SAAS;QACjB,kBAAkB,EAAE,IAAI;QACxB,gBAAgB,EAAE;YACjB,MAAM,EAAE;gBACP,UAAU,EAAE;oBACX,QAAQ;iBACR;aACD;SACD;QACD,SAAS,EAAE;YACV;gBACC,MAAM,EAAE,WAAW;gBACnB,OAAO,EAAE,WAAW;gBACpB,QAAQ,EAAE,6CAA6C;gBACvD,aAAa,EAAE,8GAA8G;gBAC7H,SAAS,EAAE;oBACV,SAAS,EAAE;wBACV,QAAQ,EAAE,KAAK;wBACf,KAAK,EAAE,uEAAuE;qBAC9E;iBACD;aACD;SACD;QACD,SAAS,EAAE,EAAE;KACb;IACD;QACC,aAAa,EAAE,sCAAsC;QACrD,MAAM,EAAE,WAAW;QACnB,MAAM,EAAE,QAAQ;QAChB,aAAa,EAAE;YACd,OAAO,EAAE,MAAM;SACf;QACD,SAAS,EAAE,EAAE;QACb,gBAAgB,EAAE;YACjB,MAAM,EAAE;gBACP,UAAU,EAAE;oBACX,QAAQ;iBACR;gBACD,WAAW,EAAE;oBACZ,WAAW;iBACX;aACD;SACD;KACD;IACD;QACC,aAAa,EAAE,YAAY;QAC3B,MAAM,EAAE,YAAY;QACpB,UAAU,EAAE,IAAI;QAChB,aAAa,EAAE,iCAAiC;QAChD,SAAS,EAAE,CAAC;QACZ,MAAM,EAAE,QAAQ;QAChB,gBAAgB,EAAE;YACjB,MAAM,EAAE;gBACP,UAAU,EAAE;oBACX,QAAQ;iBACR;gBACD,WAAW,EAAE;oBACZ,WAAW;iBACX;aACD;SACD;KACD;IACD;QACC,aAAa,EAAE,WAAW;QAC1B,MAAM,EAAE,WAAW;QACnB,UAAU,EAAE,IAAI;QAChB,aAAa,EAAE,ufAAuf;QACtgB,SAAS,EAAE,8BAA8B;QACzC,MAAM,EAAE,QAAQ;QAChB,gBAAgB,EAAE;YACjB,MAAM,EAAE;gBACP,UAAU,EAAE;oBACX,QAAQ;iBACR;gBACD,WAAW,EAAE;oBACZ,WAAW;iBACX;aACD;SACD;KACD;IACD;QACC,aAAa,EAAE,cAAc;QAC7B,MAAM,EAAE,uBAAuB;QAC/B,MAAM,EAAE,QAAQ;QAChB,SAAS,EAAE,EAAE;QACb,aAAa,EAAE,s3BAAs3B;QACr4B,UAAU,EAAE,KAAK;QACjB,SAAS,EAAE;YACV,SAAS,EAAE;gBACV,SAAS,EAAE;oBACV,eAAe,EAAE,2BAA2B;iBAC5C;aACD;SACD;QACD,gBAAgB,EAAE;YACjB,MAAM,EAAE;gBACP,UAAU,EAAE;oBACX,QAAQ;iBACR;gBACD,WAAW,EAAE;oBACZ,WAAW;iBACX;aACD;SACD;KACD;CACF,CAAC"}
|
|
@@ -0,0 +1,96 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.operationsDescription = void 0;
|
|
4
|
+
exports.operationsDescription = [
|
|
5
|
+
{
|
|
6
|
+
"displayName": "Operation",
|
|
7
|
+
"name": "operation",
|
|
8
|
+
"type": "options",
|
|
9
|
+
"noDataExpression": true,
|
|
10
|
+
"displayOptions": {
|
|
11
|
+
"show": {
|
|
12
|
+
"resource": [
|
|
13
|
+
"Operations"
|
|
14
|
+
]
|
|
15
|
+
}
|
|
16
|
+
},
|
|
17
|
+
"options": [
|
|
18
|
+
{
|
|
19
|
+
"name": "Get Operation",
|
|
20
|
+
"value": "Get Operation",
|
|
21
|
+
"action": "Get operation status",
|
|
22
|
+
"description": "Track progress of a long-running operation using the operations identifier returned when you created the operation. For example, by triggering the analysis of a commit, or the code review of a patch. For both LGTM.com and LGTM Enterprise, you must include an access token with the `operations:read` scope.\n",
|
|
23
|
+
"routing": {
|
|
24
|
+
"request": {
|
|
25
|
+
"method": "GET",
|
|
26
|
+
"url": "=/operations/{{$parameter[\"operation-id\"]}}"
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
],
|
|
31
|
+
"default": ""
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
"displayName": "GET /operations/{operation-id}",
|
|
35
|
+
"name": "operation",
|
|
36
|
+
"type": "notice",
|
|
37
|
+
"typeOptions": {
|
|
38
|
+
"theme": "info"
|
|
39
|
+
},
|
|
40
|
+
"default": "",
|
|
41
|
+
"displayOptions": {
|
|
42
|
+
"show": {
|
|
43
|
+
"resource": [
|
|
44
|
+
"Operations"
|
|
45
|
+
],
|
|
46
|
+
"operation": [
|
|
47
|
+
"Get Operation"
|
|
48
|
+
]
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
"displayName": "Operation ID",
|
|
54
|
+
"name": "operation-id",
|
|
55
|
+
"required": true,
|
|
56
|
+
"description": "The operation identifier returned on creating the task.",
|
|
57
|
+
"default": 0,
|
|
58
|
+
"type": "number",
|
|
59
|
+
"displayOptions": {
|
|
60
|
+
"show": {
|
|
61
|
+
"resource": [
|
|
62
|
+
"Operations"
|
|
63
|
+
],
|
|
64
|
+
"operation": [
|
|
65
|
+
"Get Operation"
|
|
66
|
+
]
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
},
|
|
70
|
+
{
|
|
71
|
+
"displayName": "Bearer Token",
|
|
72
|
+
"name": "security_access_token",
|
|
73
|
+
"type": "string",
|
|
74
|
+
"default": "",
|
|
75
|
+
"description": "\n\nLGTM Enterprise users need to create and use an access token to authenticate with this API. This is optional for LGTM.com users unless they want to submit a CodeQL query for analysis of one or more projects, or to request the analysis of a patch or commit. LGTM.com users also need an access token to check on the progress of long running tasks using the `/operations` endpoint.\nLog in to LGTM and use the **Create token** option in your Account settings page. For more detailed information, see [Authentication with the API](https://lgtm.com/help/lgtm/api/authentication-api) and [Managing access tokens](https://lgtm.com/help/lgtm/api/managing-access-tokens).\nIf you include an access token in the header of a request to the API for data, it must have the scopes required by that endpoint. Access tokens are shown in the examples as: `Authorization: Bearer {access-token}`\n",
|
|
76
|
+
"required": false,
|
|
77
|
+
"routing": {
|
|
78
|
+
"request": {
|
|
79
|
+
"headers": {
|
|
80
|
+
"Authorization": "={{ 'Bearer ' + $value }}"
|
|
81
|
+
}
|
|
82
|
+
}
|
|
83
|
+
},
|
|
84
|
+
"displayOptions": {
|
|
85
|
+
"show": {
|
|
86
|
+
"resource": [
|
|
87
|
+
"Operations"
|
|
88
|
+
],
|
|
89
|
+
"operation": [
|
|
90
|
+
"Get Operation"
|
|
91
|
+
]
|
|
92
|
+
}
|
|
93
|
+
}
|
|
94
|
+
},
|
|
95
|
+
];
|
|
96
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../nodes/Lgtm/resources/operations/index.ts"],"names":[],"mappings":";;;AAEa,QAAA,qBAAqB,GAAsB;IACxC;QACb,aAAa,EAAE,WAAW;QAC1B,MAAM,EAAE,WAAW;QACnB,MAAM,EAAE,SAAS;QACjB,kBAAkB,EAAE,IAAI;QACxB,gBAAgB,EAAE;YACjB,MAAM,EAAE;gBACP,UAAU,EAAE;oBACX,YAAY;iBACZ;aACD;SACD;QACD,SAAS,EAAE;YACV;gBACC,MAAM,EAAE,eAAe;gBACvB,OAAO,EAAE,eAAe;gBACxB,QAAQ,EAAE,sBAAsB;gBAChC,aAAa,EAAE,sTAAsT;gBACrU,SAAS,EAAE;oBACV,SAAS,EAAE;wBACV,QAAQ,EAAE,KAAK;wBACf,KAAK,EAAE,+CAA+C;qBACtD;iBACD;aACD;SACD;QACD,SAAS,EAAE,EAAE;KACb;IACD;QACC,aAAa,EAAE,gCAAgC;QAC/C,MAAM,EAAE,WAAW;QACnB,MAAM,EAAE,QAAQ;QAChB,aAAa,EAAE;YACd,OAAO,EAAE,MAAM;SACf;QACD,SAAS,EAAE,EAAE;QACb,gBAAgB,EAAE;YACjB,MAAM,EAAE;gBACP,UAAU,EAAE;oBACX,YAAY;iBACZ;gBACD,WAAW,EAAE;oBACZ,eAAe;iBACf;aACD;SACD;KACD;IACD;QACC,aAAa,EAAE,cAAc;QAC7B,MAAM,EAAE,cAAc;QACtB,UAAU,EAAE,IAAI;QAChB,aAAa,EAAE,yDAAyD;QACxE,SAAS,EAAE,CAAC;QACZ,MAAM,EAAE,QAAQ;QAChB,gBAAgB,EAAE;YACjB,MAAM,EAAE;gBACP,UAAU,EAAE;oBACX,YAAY;iBACZ;gBACD,WAAW,EAAE;oBACZ,eAAe;iBACf;aACD;SACD;KACD;IACD;QACC,aAAa,EAAE,cAAc;QAC7B,MAAM,EAAE,uBAAuB;QAC/B,MAAM,EAAE,QAAQ;QAChB,SAAS,EAAE,EAAE;QACb,aAAa,EAAE,s3BAAs3B;QACr4B,UAAU,EAAE,KAAK;QACjB,SAAS,EAAE;YACV,SAAS,EAAE;gBACV,SAAS,EAAE;oBACV,eAAe,EAAE,2BAA2B;iBAC5C;aACD;SACD;QACD,gBAAgB,EAAE;YACjB,MAAM,EAAE;gBACP,UAAU,EAAE;oBACX,YAAY;iBACZ;gBACD,WAAW,EAAE;oBACZ,eAAe;iBACf;aACD;SACD;KACD;CACF,CAAC"}
|