@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.
Files changed (46) hide show
  1. package/README.md +169 -0
  2. package/dist/banner.svg +144 -0
  3. package/dist/credentials/LgtmApi.credentials.d.ts +9 -0
  4. package/dist/credentials/LgtmApi.credentials.js +40 -0
  5. package/dist/credentials/LgtmApi.credentials.js.map +1 -0
  6. package/dist/icons/lgtm.dark.svg +18 -0
  7. package/dist/icons/lgtm.svg +18 -0
  8. package/dist/nodes/Lgtm/Lgtm.node.d.ts +4 -0
  9. package/dist/nodes/Lgtm/Lgtm.node.js +110 -0
  10. package/dist/nodes/Lgtm/Lgtm.node.js.map +1 -0
  11. package/dist/nodes/Lgtm/Lgtm.node.json +20 -0
  12. package/dist/nodes/Lgtm/lgtm.dark.svg +18 -0
  13. package/dist/nodes/Lgtm/lgtm.svg +18 -0
  14. package/dist/nodes/Lgtm/resources/analyses/index.d.ts +2 -0
  15. package/dist/nodes/Lgtm/resources/analyses/index.js +437 -0
  16. package/dist/nodes/Lgtm/resources/analyses/index.js.map +1 -0
  17. package/dist/nodes/Lgtm/resources/api-root/index.d.ts +2 -0
  18. package/dist/nodes/Lgtm/resources/api-root/index.js +109 -0
  19. package/dist/nodes/Lgtm/resources/api-root/index.js.map +1 -0
  20. package/dist/nodes/Lgtm/resources/code-reviews/index.d.ts +2 -0
  21. package/dist/nodes/Lgtm/resources/code-reviews/index.js +313 -0
  22. package/dist/nodes/Lgtm/resources/code-reviews/index.js.map +1 -0
  23. package/dist/nodes/Lgtm/resources/index.d.ts +9 -0
  24. package/dist/nodes/Lgtm/resources/index.js +22 -0
  25. package/dist/nodes/Lgtm/resources/index.js.map +1 -0
  26. package/dist/nodes/Lgtm/resources/issues/index.d.ts +2 -0
  27. package/dist/nodes/Lgtm/resources/issues/index.js +114 -0
  28. package/dist/nodes/Lgtm/resources/issues/index.js.map +1 -0
  29. package/dist/nodes/Lgtm/resources/operations/index.d.ts +2 -0
  30. package/dist/nodes/Lgtm/resources/operations/index.js +96 -0
  31. package/dist/nodes/Lgtm/resources/operations/index.js.map +1 -0
  32. package/dist/nodes/Lgtm/resources/projects/index.d.ts +2 -0
  33. package/dist/nodes/Lgtm/resources/projects/index.js +822 -0
  34. package/dist/nodes/Lgtm/resources/projects/index.js.map +1 -0
  35. package/dist/nodes/Lgtm/resources/query-jobs/index.d.ts +2 -0
  36. package/dist/nodes/Lgtm/resources/query-jobs/index.js +560 -0
  37. package/dist/nodes/Lgtm/resources/query-jobs/index.js.map +1 -0
  38. package/dist/nodes/Lgtm/resources/snapshots/index.d.ts +2 -0
  39. package/dist/nodes/Lgtm/resources/snapshots/index.js +495 -0
  40. package/dist/nodes/Lgtm/resources/snapshots/index.js.map +1 -0
  41. package/dist/nodes/Lgtm/resources/system/index.d.ts +2 -0
  42. package/dist/nodes/Lgtm/resources/system/index.js +208 -0
  43. package/dist/nodes/Lgtm/resources/system/index.js.map +1 -0
  44. package/dist/package.json +62 -0
  45. package/dist/tsconfig.tsbuildinfo +1 -0
  46. package/package.json +62 -0
@@ -0,0 +1,495 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.snapshotsDescription = void 0;
4
+ exports.snapshotsDescription = [
5
+ {
6
+ "displayName": "Operation",
7
+ "name": "operation",
8
+ "type": "options",
9
+ "noDataExpression": true,
10
+ "displayOptions": {
11
+ "show": {
12
+ "resource": [
13
+ "Snapshots"
14
+ ]
15
+ }
16
+ },
17
+ "options": [
18
+ {
19
+ "name": "Abort Upload",
20
+ "value": "Abort Upload",
21
+ "action": "Abort database upload process",
22
+ "description": "Aborts the specified upload session and deletes any uploaded parts. After the session is aborted it cannot be restarted.\nIf any part uploads are in progress when the session is aborted, their data may not be deleted. To ensure that uploaded parts are deleted correctly, you should only abort an upload session after all part uploads have completed.\n",
23
+ "routing": {
24
+ "request": {
25
+ "method": "DELETE",
26
+ "url": "=/snapshots/uploads/{{$parameter[\"session-id\"]}}"
27
+ }
28
+ }
29
+ },
30
+ {
31
+ "name": "Complete Upload",
32
+ "value": "Complete Upload",
33
+ "action": "Complete snapshot upload session",
34
+ "description": "Completes the database upload by closing the upload session, upgrading the database if appropriate, and scheduling analysis of that snapshot of the codebase.\n\nYou can view the analysis progress and access the results using the `task-result-url`.\n",
35
+ "routing": {
36
+ "request": {
37
+ "method": "POST",
38
+ "url": "=/snapshots/uploads/{{$parameter[\"session-id\"]}}"
39
+ }
40
+ }
41
+ },
42
+ {
43
+ "name": "Upload Part",
44
+ "value": "Upload Part",
45
+ "action": "Upload snapshot",
46
+ "description": "Upload a database representing a snapshot of a codebase. The database is sent in one or more parts. Each part is sent in the request body. \nUse the [`POST /snapshots/{project-id}/{language}`](https://lgtm.com/help/lgtm/api/api-v1#opIdinitSnapshotUpload) endpoint to start an upload session before uploading a database part. Database parts must have been generated and prepared for upload using the CodeQL CLI or the QL command-line tools. For further information on exporting externally-built databases, see [Preparing snapshots to upload to LGTM](https://help.semmle.com/wiki/display/SD/Preparing+snapshots+to+upload+to+LGTM).\n\nSplit large databases into multiple parts. Upload the parts by making a separate request for each part. Don't upload the next part until you've successfully uploaded the previous part.\n\nIf the upload fails you should retry it with the same data.\n",
47
+ "routing": {
48
+ "request": {
49
+ "method": "PUT",
50
+ "url": "=/snapshots/uploads/{{$parameter[\"session-id\"]}}"
51
+ }
52
+ }
53
+ },
54
+ {
55
+ "name": "Get Snapshot",
56
+ "value": "Get Snapshot",
57
+ "action": "Download a snapshot",
58
+ "description": "Download a CodeQL database from LGTM, representing a snapshot of the codebase, to run queries in your IDE.\n\nThis endpoint works for projects that have been successfully analyzed for the language specified in the request. A successful request redirects you to a URL for downloading a database that represents the code snapshot, as specified in the `Location:` header in the response. Therefore, your HTTP client should be configured to follow redirects. For example, if you are using `curl`, you can add the`-L` flag to the command.\n\nThe database is downloaded as a zip file that can be imported into an IDE equipped with a CodeQL extension. The extension must be up to date to analyze databases downloaded from LGTM. For more information on running queries locally in your IDE, see [Runnning queries in your IDE](https://lgtm.com/help/lgtm/running-queries-ide). \n",
59
+ "routing": {
60
+ "request": {
61
+ "method": "GET",
62
+ "url": "=/snapshots/{{$parameter[\"project-id\"]}}/{{$parameter[\"language\"]}}"
63
+ }
64
+ }
65
+ },
66
+ {
67
+ "name": "Init Snapshot Upload",
68
+ "value": "Init Snapshot Upload",
69
+ "action": "Start snapshot upload session",
70
+ "description": "Start a session to upload an externally-built database (which represents a snapshot of a codebase) to a project on LGTM. \n\nThis endpoint works for projects that are already on LGTM, and the selected language of the database must already be configured. The project must be configured with 'upload' analysis mode. You can upload a \"bundled\" CodeQL database or a database exported by the QL command-line tools (`odasa`).\n\nIf your database was generated using a version of the command line that is older than LGTM, LGTM will try to upgrade and analyze it when the upload is complete. You can include cached predicates in the upload, but they are ignored as the cache is repopulated after the database has been upgraded and analyzed. However, if you want to include results with your database, make sure the database is compatible before you start the upload session. Incompatible databases with results won't be upgraded and therefore cannot be uploaded. For further information on externally-built databases, see [Preparing snapshots to upload to LGTM using the QL command-line tools](https://help.semmle.com/wiki/display/SD/Preparing+snapshots+to+upload+to+LGTM).\n\n \nWhen the upload session has been successfully started, upload the database to the upload URL returned in the response. The database can be uploaded to the upload URL in parts using the [`PUT /snapshots/uploads/{session-id}`](https://lgtm.com/help/lgtm/api/api-v1#opIduploadPart) endpoint. After uploading all the parts you must call the [`POST /snapshots/uploads/{session-id}`](https://lgtm.com/help/lgtm/api/api-v1#opIdcompleteUpload) endpoint to complete the upload session.\n",
71
+ "routing": {
72
+ "request": {
73
+ "method": "POST",
74
+ "url": "=/snapshots/{{$parameter[\"project-id\"]}}/{{$parameter[\"language\"]}}"
75
+ }
76
+ }
77
+ }
78
+ ],
79
+ "default": ""
80
+ },
81
+ {
82
+ "displayName": "DELETE /snapshots/uploads/{session-id}",
83
+ "name": "operation",
84
+ "type": "notice",
85
+ "typeOptions": {
86
+ "theme": "info"
87
+ },
88
+ "default": "",
89
+ "displayOptions": {
90
+ "show": {
91
+ "resource": [
92
+ "Snapshots"
93
+ ],
94
+ "operation": [
95
+ "Abort Upload"
96
+ ]
97
+ }
98
+ }
99
+ },
100
+ {
101
+ "displayName": "Session ID",
102
+ "name": "session-id",
103
+ "required": true,
104
+ "description": "The id of the upload session.",
105
+ "default": "",
106
+ "type": "string",
107
+ "displayOptions": {
108
+ "show": {
109
+ "resource": [
110
+ "Snapshots"
111
+ ],
112
+ "operation": [
113
+ "Abort Upload"
114
+ ]
115
+ }
116
+ }
117
+ },
118
+ {
119
+ "displayName": "Bearer Token",
120
+ "name": "security_access_token",
121
+ "type": "string",
122
+ "default": "",
123
+ "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",
124
+ "required": false,
125
+ "routing": {
126
+ "request": {
127
+ "headers": {
128
+ "Authorization": "={{ 'Bearer ' + $value }}"
129
+ }
130
+ }
131
+ },
132
+ "displayOptions": {
133
+ "show": {
134
+ "resource": [
135
+ "Snapshots"
136
+ ],
137
+ "operation": [
138
+ "Abort Upload"
139
+ ]
140
+ }
141
+ }
142
+ },
143
+ {
144
+ "displayName": "POST /snapshots/uploads/{session-id}",
145
+ "name": "operation",
146
+ "type": "notice",
147
+ "typeOptions": {
148
+ "theme": "info"
149
+ },
150
+ "default": "",
151
+ "displayOptions": {
152
+ "show": {
153
+ "resource": [
154
+ "Snapshots"
155
+ ],
156
+ "operation": [
157
+ "Complete Upload"
158
+ ]
159
+ }
160
+ }
161
+ },
162
+ {
163
+ "displayName": "Session ID",
164
+ "name": "session-id",
165
+ "required": true,
166
+ "description": "The id of the upload session.",
167
+ "default": "",
168
+ "type": "string",
169
+ "displayOptions": {
170
+ "show": {
171
+ "resource": [
172
+ "Snapshots"
173
+ ],
174
+ "operation": [
175
+ "Complete Upload"
176
+ ]
177
+ }
178
+ }
179
+ },
180
+ {
181
+ "displayName": "Bearer Token",
182
+ "name": "security_access_token",
183
+ "type": "string",
184
+ "default": "",
185
+ "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",
186
+ "required": false,
187
+ "routing": {
188
+ "request": {
189
+ "headers": {
190
+ "Authorization": "={{ 'Bearer ' + $value }}"
191
+ }
192
+ }
193
+ },
194
+ "displayOptions": {
195
+ "show": {
196
+ "resource": [
197
+ "Snapshots"
198
+ ],
199
+ "operation": [
200
+ "Complete Upload"
201
+ ]
202
+ }
203
+ }
204
+ },
205
+ {
206
+ "displayName": "PUT /snapshots/uploads/{session-id}",
207
+ "name": "operation",
208
+ "type": "notice",
209
+ "typeOptions": {
210
+ "theme": "info"
211
+ },
212
+ "default": "",
213
+ "displayOptions": {
214
+ "show": {
215
+ "resource": [
216
+ "Snapshots"
217
+ ],
218
+ "operation": [
219
+ "Upload Part"
220
+ ]
221
+ }
222
+ }
223
+ },
224
+ {
225
+ "displayName": "Session ID",
226
+ "name": "session-id",
227
+ "required": true,
228
+ "description": "The id of the upload session.",
229
+ "default": "",
230
+ "type": "string",
231
+ "displayOptions": {
232
+ "show": {
233
+ "resource": [
234
+ "Snapshots"
235
+ ],
236
+ "operation": [
237
+ "Upload Part"
238
+ ]
239
+ }
240
+ }
241
+ },
242
+ {
243
+ "displayName": "PUT /snapshots/uploads/{session-id}<br/><br/>There's no body available for request, kindly use HTTP Request node to send body",
244
+ "name": "operation",
245
+ "type": "notice",
246
+ "default": "",
247
+ "displayOptions": {
248
+ "show": {
249
+ "resource": [
250
+ "Snapshots"
251
+ ],
252
+ "operation": [
253
+ "Upload Part"
254
+ ]
255
+ }
256
+ }
257
+ },
258
+ {
259
+ "displayName": "Bearer Token",
260
+ "name": "security_access_token",
261
+ "type": "string",
262
+ "default": "",
263
+ "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",
264
+ "required": false,
265
+ "routing": {
266
+ "request": {
267
+ "headers": {
268
+ "Authorization": "={{ 'Bearer ' + $value }}"
269
+ }
270
+ }
271
+ },
272
+ "displayOptions": {
273
+ "show": {
274
+ "resource": [
275
+ "Snapshots"
276
+ ],
277
+ "operation": [
278
+ "Upload Part"
279
+ ]
280
+ }
281
+ }
282
+ },
283
+ {
284
+ "displayName": "GET /snapshots/{project-id}/{language}",
285
+ "name": "operation",
286
+ "type": "notice",
287
+ "typeOptions": {
288
+ "theme": "info"
289
+ },
290
+ "default": "",
291
+ "displayOptions": {
292
+ "show": {
293
+ "resource": [
294
+ "Snapshots"
295
+ ],
296
+ "operation": [
297
+ "Get Snapshot"
298
+ ]
299
+ }
300
+ }
301
+ },
302
+ {
303
+ "displayName": "Project ID",
304
+ "name": "project-id",
305
+ "required": true,
306
+ "description": "The numeric project identifier.",
307
+ "default": 0,
308
+ "type": "number",
309
+ "displayOptions": {
310
+ "show": {
311
+ "resource": [
312
+ "Snapshots"
313
+ ],
314
+ "operation": [
315
+ "Get Snapshot"
316
+ ]
317
+ }
318
+ }
319
+ },
320
+ {
321
+ "displayName": "Language",
322
+ "name": "language",
323
+ "required": true,
324
+ "description": "The language of the database to download.",
325
+ "default": "",
326
+ "type": "string",
327
+ "displayOptions": {
328
+ "show": {
329
+ "resource": [
330
+ "Snapshots"
331
+ ],
332
+ "operation": [
333
+ "Get Snapshot"
334
+ ]
335
+ }
336
+ }
337
+ },
338
+ {
339
+ "displayName": "Bearer Token",
340
+ "name": "security_access_token",
341
+ "type": "string",
342
+ "default": "",
343
+ "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",
344
+ "required": false,
345
+ "routing": {
346
+ "request": {
347
+ "headers": {
348
+ "Authorization": "={{ 'Bearer ' + $value }}"
349
+ }
350
+ }
351
+ },
352
+ "displayOptions": {
353
+ "show": {
354
+ "resource": [
355
+ "Snapshots"
356
+ ],
357
+ "operation": [
358
+ "Get Snapshot"
359
+ ]
360
+ }
361
+ }
362
+ },
363
+ {
364
+ "displayName": "POST /snapshots/{project-id}/{language}",
365
+ "name": "operation",
366
+ "type": "notice",
367
+ "typeOptions": {
368
+ "theme": "info"
369
+ },
370
+ "default": "",
371
+ "displayOptions": {
372
+ "show": {
373
+ "resource": [
374
+ "Snapshots"
375
+ ],
376
+ "operation": [
377
+ "Init Snapshot Upload"
378
+ ]
379
+ }
380
+ }
381
+ },
382
+ {
383
+ "displayName": "Project ID",
384
+ "name": "project-id",
385
+ "required": true,
386
+ "description": "The numeric project identifier.",
387
+ "default": 0,
388
+ "type": "number",
389
+ "displayOptions": {
390
+ "show": {
391
+ "resource": [
392
+ "Snapshots"
393
+ ],
394
+ "operation": [
395
+ "Init Snapshot Upload"
396
+ ]
397
+ }
398
+ }
399
+ },
400
+ {
401
+ "displayName": "Language",
402
+ "name": "language",
403
+ "required": true,
404
+ "description": "The language of the database to upload.",
405
+ "default": "",
406
+ "type": "string",
407
+ "displayOptions": {
408
+ "show": {
409
+ "resource": [
410
+ "Snapshots"
411
+ ],
412
+ "operation": [
413
+ "Init Snapshot Upload"
414
+ ]
415
+ }
416
+ }
417
+ },
418
+ {
419
+ "displayName": "Commit",
420
+ "name": "commit",
421
+ "required": true,
422
+ "description": "The identifier of the analyzed commit.",
423
+ "default": "",
424
+ "type": "string",
425
+ "routing": {
426
+ "send": {
427
+ "type": "query",
428
+ "property": "commit",
429
+ "value": "={{ $value }}",
430
+ "propertyInDotNotation": false
431
+ }
432
+ },
433
+ "displayOptions": {
434
+ "show": {
435
+ "resource": [
436
+ "Snapshots"
437
+ ],
438
+ "operation": [
439
+ "Init Snapshot Upload"
440
+ ]
441
+ }
442
+ }
443
+ },
444
+ {
445
+ "displayName": "Date",
446
+ "name": "date",
447
+ "description": "The date and time of the analyzed commit (default the current time).",
448
+ "default": "",
449
+ "type": "string",
450
+ "routing": {
451
+ "send": {
452
+ "type": "query",
453
+ "property": "date",
454
+ "value": "={{ $value }}",
455
+ "propertyInDotNotation": false
456
+ }
457
+ },
458
+ "displayOptions": {
459
+ "show": {
460
+ "resource": [
461
+ "Snapshots"
462
+ ],
463
+ "operation": [
464
+ "Init Snapshot Upload"
465
+ ]
466
+ }
467
+ }
468
+ },
469
+ {
470
+ "displayName": "Bearer Token",
471
+ "name": "security_access_token",
472
+ "type": "string",
473
+ "default": "",
474
+ "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",
475
+ "required": false,
476
+ "routing": {
477
+ "request": {
478
+ "headers": {
479
+ "Authorization": "={{ 'Bearer ' + $value }}"
480
+ }
481
+ }
482
+ },
483
+ "displayOptions": {
484
+ "show": {
485
+ "resource": [
486
+ "Snapshots"
487
+ ],
488
+ "operation": [
489
+ "Init Snapshot Upload"
490
+ ]
491
+ }
492
+ }
493
+ },
494
+ ];
495
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../nodes/Lgtm/resources/snapshots/index.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,2 @@
1
+ import type { INodeProperties } from 'n8n-workflow';
2
+ export declare const systemDescription: INodeProperties[];