@n8n-dev/n8n-nodes-ljaero-dflight 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 (43) hide show
  1. package/README.md +158 -0
  2. package/dist/banner.svg +141 -0
  3. package/dist/credentials/LjaeroDflightApi.credentials.d.ts +9 -0
  4. package/dist/credentials/LjaeroDflightApi.credentials.js +40 -0
  5. package/dist/credentials/LjaeroDflightApi.credentials.js.map +1 -0
  6. package/dist/icons/ljaero-dflight.dark.png +0 -0
  7. package/dist/icons/ljaero-dflight.png +0 -0
  8. package/dist/nodes/LjaeroDflight/LjaeroDflight.node.d.ts +4 -0
  9. package/dist/nodes/LjaeroDflight/LjaeroDflight.node.js +103 -0
  10. package/dist/nodes/LjaeroDflight/LjaeroDflight.node.js.map +1 -0
  11. package/dist/nodes/LjaeroDflight/LjaeroDflight.node.json +20 -0
  12. package/dist/nodes/LjaeroDflight/ljaero-dflight.dark.png +0 -0
  13. package/dist/nodes/LjaeroDflight/ljaero-dflight.png +0 -0
  14. package/dist/nodes/LjaeroDflight/resources/aerodromes/index.d.ts +2 -0
  15. package/dist/nodes/LjaeroDflight/resources/aerodromes/index.js +309 -0
  16. package/dist/nodes/LjaeroDflight/resources/aerodromes/index.js.map +1 -0
  17. package/dist/nodes/LjaeroDflight/resources/airspace/index.d.ts +2 -0
  18. package/dist/nodes/LjaeroDflight/resources/airspace/index.js +384 -0
  19. package/dist/nodes/LjaeroDflight/resources/airspace/index.js.map +1 -0
  20. package/dist/nodes/LjaeroDflight/resources/flight-restrictions/index.d.ts +2 -0
  21. package/dist/nodes/LjaeroDflight/resources/flight-restrictions/index.js +309 -0
  22. package/dist/nodes/LjaeroDflight/resources/flight-restrictions/index.js.map +1 -0
  23. package/dist/nodes/LjaeroDflight/resources/index.d.ts +8 -0
  24. package/dist/nodes/LjaeroDflight/resources/index.js +20 -0
  25. package/dist/nodes/LjaeroDflight/resources/index.js.map +1 -0
  26. package/dist/nodes/LjaeroDflight/resources/restricted-public-venues/index.d.ts +2 -0
  27. package/dist/nodes/LjaeroDflight/resources/restricted-public-venues/index.js +309 -0
  28. package/dist/nodes/LjaeroDflight/resources/restricted-public-venues/index.js.map +1 -0
  29. package/dist/nodes/LjaeroDflight/resources/special-security-areas/index.d.ts +2 -0
  30. package/dist/nodes/LjaeroDflight/resources/special-security-areas/index.js +309 -0
  31. package/dist/nodes/LjaeroDflight/resources/special-security-areas/index.js.map +1 -0
  32. package/dist/nodes/LjaeroDflight/resources/surface-obstacles/index.d.ts +2 -0
  33. package/dist/nodes/LjaeroDflight/resources/surface-obstacles/index.js +309 -0
  34. package/dist/nodes/LjaeroDflight/resources/surface-obstacles/index.js.map +1 -0
  35. package/dist/nodes/LjaeroDflight/resources/uas-operating-areas/index.d.ts +2 -0
  36. package/dist/nodes/LjaeroDflight/resources/uas-operating-areas/index.js +309 -0
  37. package/dist/nodes/LjaeroDflight/resources/uas-operating-areas/index.js.map +1 -0
  38. package/dist/nodes/LjaeroDflight/resources/weather/index.d.ts +2 -0
  39. package/dist/nodes/LjaeroDflight/resources/weather/index.js +459 -0
  40. package/dist/nodes/LjaeroDflight/resources/weather/index.js.map +1 -0
  41. package/dist/package.json +62 -0
  42. package/dist/tsconfig.tsbuildinfo +1 -0
  43. package/package.json +62 -0
@@ -0,0 +1,459 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.weatherDescription = void 0;
4
+ exports.weatherDescription = [
5
+ {
6
+ "displayName": "Operation",
7
+ "name": "operation",
8
+ "type": "options",
9
+ "noDataExpression": true,
10
+ "displayOptions": {
11
+ "show": {
12
+ "resource": [
13
+ "Weather"
14
+ ]
15
+ }
16
+ },
17
+ "options": [
18
+ {
19
+ "name": "Wx By Distance Us v1 Wx Forecast Distance Query Post",
20
+ "value": "Wx By Distance Us v1 Wx Forecast Distance Query Post",
21
+ "action": "Retrieve forecast values within given distance of location for all requested weather elements and time periods.",
22
+ "description": "Retrieve forecast values for selected weather elements and time period. Request body parameters are:\n* latitude: WGS84 latitude coordinate of your selected point, in decimal degrees\n* longitude: WGS84 longitude coordinate of your selected point, in decimal degrees\n* distance: distance in meters (max allowed value is 25000)\n* wxtypes: list of one or more weather forecast elements you wish to retrieve. Allowed values are \"CIG\", \"DEWPT\", \"SKY\", \"TEMP\", \"VIS\", \"WINDDIR\", \"WINDGUST\", \"WINDSPEED\".\n* hours: number of hourly forecasts to return (1-24). For current hour only you should enter value of 1. To also retrieve values for each of the next n hours, enter n.\n\n\nThe response will consist of a GeoJSON FeatureCollection with one Feature for each forecast location found within requested area,\nproperties of which will include an ordered list of forecast values for each requested weather element, for each requested hour. Units for each element are as follows:\n* CIG: meters AGL\n* DEWPT: degrees Celsius\n* SKY: % cloud cover\n* TEMP: degrees Celsius\n* VIS: meters\n* WINDDIR: degrees true\n* WINDGUST: meters/sec\n* WINDSPEED: meters/sec",
23
+ "routing": {
24
+ "request": {
25
+ "method": "POST",
26
+ "url": "=/us/v1/wx-forecast/distance-query"
27
+ }
28
+ }
29
+ },
30
+ {
31
+ "name": "Wx By Poly Us v1 Wx Forecast Polygon Query Post",
32
+ "value": "Wx By Poly Us v1 Wx Forecast Polygon Query Post",
33
+ "action": "Retrieve forecast values within given GeoJSON polygon for all requested weather elements and time periods.",
34
+ "description": "Retrieve forecast values located within given area for requested weather elements and time period. Request body parameters are:\n* poly: [GeoJSON Polygon](https://www.rfc-editor.org/rfc/rfc7946.html#appendix-A) defining the area. Max allowed area is 1000 km^2.\n* wxtypes: list of one or more weather forecast elements you wish to retrieve. Allowed values are \"CIG\", \"DEWPT\", \"SKY\", \"TEMP\", \"VIS\", \"WINDDIR\", \"WINDGUST\", \"WINDSPEED\".\n* hours: number of hourly forecasts to return (1-24). For current hour only you should enter value of 1. To also retrieve values for each of the next n hours, enter n.\n\n\nThe response will consist of a GeoJSON FeatureCollection with one Feature for each forecast location found within requested area,\nproperties of which will include an ordered list of forecast values for each requested weather element, for each requested hour. Units for each element are as follows:\n* CIG: meters AGL\n* DEWPT: degrees Celsius\n* SKY: % cloud cover\n* TEMP: degrees Celsius\n* VIS: meters\n* WINDDIR: degrees true\n* WINDGUST: meters/sec\n* WINDSPEED: meters/sec",
35
+ "routing": {
36
+ "request": {
37
+ "method": "POST",
38
+ "url": "=/us/v1/wx-forecast/polygon-query"
39
+ }
40
+ }
41
+ },
42
+ {
43
+ "name": "Wx By Route Us v1 Wx Forecast Route Query Post",
44
+ "value": "Wx By Route Us v1 Wx Forecast Route Query Post",
45
+ "action": "Retrieve forecast values along a route for all requested weather elements and time periods.",
46
+ "description": "Retrieve forecast values along route for requested weather elements and time period. Request body parameters are:\n* route: [GeoJSON Linestring](https://www.rfc-editor.org/rfc/rfc7946.html#appendix-A) defining the route. Max allowed length is 50 km.\n* wxtypes: list of one or more weather forecast elements you wish to retrieve. Allowed values are \"CIG\", \"DEWPT\", \"SKY\", \"TEMP\", \"VIS\", \"WINDDIR\", \"WINDGUST\", \"WINDSPEED\".\n* hours: number of hourly forecasts to return (1-24). For current hour only you should enter value of 1. To also retrieve values for each of the next n hours, enter n.\n\n\nThe response will consist of a GeoJSON FeatureCollection with one Feature for each forecast location found within requested area,\nproperties of which will include an ordered list of forecast values for each requested weather element, for each requested hour. Units for each element are as follows:\n* CIG: meters AGL\n* DEWPT: degrees Celsius\n* SKY: % cloud cover\n* TEMP: degrees Celsius\n* VIS: meters\n* WINDDIR: degrees true\n* WINDGUST: meters/sec\n* WINDSPEED: meters/sec",
47
+ "routing": {
48
+ "request": {
49
+ "method": "POST",
50
+ "url": "=/us/v1/wx-forecast/route-query"
51
+ }
52
+ }
53
+ }
54
+ ],
55
+ "default": ""
56
+ },
57
+ {
58
+ "displayName": "POST /us/v1/wx-forecast/distance-query",
59
+ "name": "operation",
60
+ "type": "notice",
61
+ "typeOptions": {
62
+ "theme": "info"
63
+ },
64
+ "default": "",
65
+ "displayOptions": {
66
+ "show": {
67
+ "resource": [
68
+ "Weather"
69
+ ],
70
+ "operation": [
71
+ "Wx By Distance Us v1 Wx Forecast Distance Query Post"
72
+ ]
73
+ }
74
+ }
75
+ },
76
+ {
77
+ "displayName": "X API Key",
78
+ "name": "x-api-key",
79
+ "default": "",
80
+ "type": "string",
81
+ "routing": {
82
+ "request": {
83
+ "headers": {
84
+ "x-api-key": "={{ $value }}"
85
+ }
86
+ }
87
+ },
88
+ "displayOptions": {
89
+ "show": {
90
+ "resource": [
91
+ "Weather"
92
+ ],
93
+ "operation": [
94
+ "Wx By Distance Us v1 Wx Forecast Distance Query Post"
95
+ ]
96
+ }
97
+ }
98
+ },
99
+ {
100
+ "required": true,
101
+ "displayName": "Distance",
102
+ "name": "distance",
103
+ "type": "number",
104
+ "default": 0,
105
+ "routing": {
106
+ "send": {
107
+ "property": "distance",
108
+ "propertyInDotNotation": false,
109
+ "type": "body",
110
+ "value": "={{ $value }}"
111
+ }
112
+ },
113
+ "displayOptions": {
114
+ "show": {
115
+ "resource": [
116
+ "Weather"
117
+ ],
118
+ "operation": [
119
+ "Wx By Distance Us v1 Wx Forecast Distance Query Post"
120
+ ]
121
+ }
122
+ }
123
+ },
124
+ {
125
+ "required": true,
126
+ "displayName": "Hours",
127
+ "name": "hours",
128
+ "type": "number",
129
+ "default": 0,
130
+ "routing": {
131
+ "send": {
132
+ "property": "hours",
133
+ "propertyInDotNotation": false,
134
+ "type": "body",
135
+ "value": "={{ $value }}"
136
+ }
137
+ },
138
+ "displayOptions": {
139
+ "show": {
140
+ "resource": [
141
+ "Weather"
142
+ ],
143
+ "operation": [
144
+ "Wx By Distance Us v1 Wx Forecast Distance Query Post"
145
+ ]
146
+ }
147
+ }
148
+ },
149
+ {
150
+ "required": true,
151
+ "displayName": "Latitude",
152
+ "name": "latitude",
153
+ "type": "number",
154
+ "default": 0,
155
+ "routing": {
156
+ "send": {
157
+ "property": "latitude",
158
+ "propertyInDotNotation": false,
159
+ "type": "body",
160
+ "value": "={{ $value }}"
161
+ }
162
+ },
163
+ "displayOptions": {
164
+ "show": {
165
+ "resource": [
166
+ "Weather"
167
+ ],
168
+ "operation": [
169
+ "Wx By Distance Us v1 Wx Forecast Distance Query Post"
170
+ ]
171
+ }
172
+ }
173
+ },
174
+ {
175
+ "required": true,
176
+ "displayName": "Longitude",
177
+ "name": "longitude",
178
+ "type": "number",
179
+ "default": 0,
180
+ "routing": {
181
+ "send": {
182
+ "property": "longitude",
183
+ "propertyInDotNotation": false,
184
+ "type": "body",
185
+ "value": "={{ $value }}"
186
+ }
187
+ },
188
+ "displayOptions": {
189
+ "show": {
190
+ "resource": [
191
+ "Weather"
192
+ ],
193
+ "operation": [
194
+ "Wx By Distance Us v1 Wx Forecast Distance Query Post"
195
+ ]
196
+ }
197
+ }
198
+ },
199
+ {
200
+ "required": true,
201
+ "displayName": "Wxtypes",
202
+ "name": "wxtypes",
203
+ "type": "json",
204
+ "default": "[\n null\n]",
205
+ "routing": {
206
+ "send": {
207
+ "property": "wxtypes",
208
+ "propertyInDotNotation": false,
209
+ "type": "body",
210
+ "value": "={{ JSON.parse($value) }}"
211
+ }
212
+ },
213
+ "displayOptions": {
214
+ "show": {
215
+ "resource": [
216
+ "Weather"
217
+ ],
218
+ "operation": [
219
+ "Wx By Distance Us v1 Wx Forecast Distance Query Post"
220
+ ]
221
+ }
222
+ }
223
+ },
224
+ {
225
+ "displayName": "POST /us/v1/wx-forecast/polygon-query",
226
+ "name": "operation",
227
+ "type": "notice",
228
+ "typeOptions": {
229
+ "theme": "info"
230
+ },
231
+ "default": "",
232
+ "displayOptions": {
233
+ "show": {
234
+ "resource": [
235
+ "Weather"
236
+ ],
237
+ "operation": [
238
+ "Wx By Poly Us v1 Wx Forecast Polygon Query Post"
239
+ ]
240
+ }
241
+ }
242
+ },
243
+ {
244
+ "displayName": "X API Key",
245
+ "name": "x-api-key",
246
+ "default": "",
247
+ "type": "string",
248
+ "routing": {
249
+ "request": {
250
+ "headers": {
251
+ "x-api-key": "={{ $value }}"
252
+ }
253
+ }
254
+ },
255
+ "displayOptions": {
256
+ "show": {
257
+ "resource": [
258
+ "Weather"
259
+ ],
260
+ "operation": [
261
+ "Wx By Poly Us v1 Wx Forecast Polygon Query Post"
262
+ ]
263
+ }
264
+ }
265
+ },
266
+ {
267
+ "required": true,
268
+ "displayName": "Hours",
269
+ "name": "hours",
270
+ "type": "number",
271
+ "default": 0,
272
+ "routing": {
273
+ "send": {
274
+ "property": "hours",
275
+ "propertyInDotNotation": false,
276
+ "type": "body",
277
+ "value": "={{ $value }}"
278
+ }
279
+ },
280
+ "displayOptions": {
281
+ "show": {
282
+ "resource": [
283
+ "Weather"
284
+ ],
285
+ "operation": [
286
+ "Wx By Poly Us v1 Wx Forecast Polygon Query Post"
287
+ ]
288
+ }
289
+ }
290
+ },
291
+ {
292
+ "required": true,
293
+ "displayName": "Poly",
294
+ "name": "poly",
295
+ "type": "json",
296
+ "default": "{}",
297
+ "routing": {
298
+ "send": {
299
+ "property": "poly",
300
+ "propertyInDotNotation": false,
301
+ "type": "body",
302
+ "value": "={{ JSON.parse($value) }}"
303
+ }
304
+ },
305
+ "displayOptions": {
306
+ "show": {
307
+ "resource": [
308
+ "Weather"
309
+ ],
310
+ "operation": [
311
+ "Wx By Poly Us v1 Wx Forecast Polygon Query Post"
312
+ ]
313
+ }
314
+ }
315
+ },
316
+ {
317
+ "required": true,
318
+ "displayName": "Wxtypes",
319
+ "name": "wxtypes",
320
+ "type": "json",
321
+ "default": "[\n null\n]",
322
+ "routing": {
323
+ "send": {
324
+ "property": "wxtypes",
325
+ "propertyInDotNotation": false,
326
+ "type": "body",
327
+ "value": "={{ JSON.parse($value) }}"
328
+ }
329
+ },
330
+ "displayOptions": {
331
+ "show": {
332
+ "resource": [
333
+ "Weather"
334
+ ],
335
+ "operation": [
336
+ "Wx By Poly Us v1 Wx Forecast Polygon Query Post"
337
+ ]
338
+ }
339
+ }
340
+ },
341
+ {
342
+ "displayName": "POST /us/v1/wx-forecast/route-query",
343
+ "name": "operation",
344
+ "type": "notice",
345
+ "typeOptions": {
346
+ "theme": "info"
347
+ },
348
+ "default": "",
349
+ "displayOptions": {
350
+ "show": {
351
+ "resource": [
352
+ "Weather"
353
+ ],
354
+ "operation": [
355
+ "Wx By Route Us v1 Wx Forecast Route Query Post"
356
+ ]
357
+ }
358
+ }
359
+ },
360
+ {
361
+ "displayName": "X API Key",
362
+ "name": "x-api-key",
363
+ "default": "",
364
+ "type": "string",
365
+ "routing": {
366
+ "request": {
367
+ "headers": {
368
+ "x-api-key": "={{ $value }}"
369
+ }
370
+ }
371
+ },
372
+ "displayOptions": {
373
+ "show": {
374
+ "resource": [
375
+ "Weather"
376
+ ],
377
+ "operation": [
378
+ "Wx By Route Us v1 Wx Forecast Route Query Post"
379
+ ]
380
+ }
381
+ }
382
+ },
383
+ {
384
+ "required": true,
385
+ "displayName": "Hours",
386
+ "name": "hours",
387
+ "type": "number",
388
+ "default": 0,
389
+ "routing": {
390
+ "send": {
391
+ "property": "hours",
392
+ "propertyInDotNotation": false,
393
+ "type": "body",
394
+ "value": "={{ $value }}"
395
+ }
396
+ },
397
+ "displayOptions": {
398
+ "show": {
399
+ "resource": [
400
+ "Weather"
401
+ ],
402
+ "operation": [
403
+ "Wx By Route Us v1 Wx Forecast Route Query Post"
404
+ ]
405
+ }
406
+ }
407
+ },
408
+ {
409
+ "required": true,
410
+ "displayName": "Route",
411
+ "name": "route",
412
+ "type": "json",
413
+ "default": "{}",
414
+ "routing": {
415
+ "send": {
416
+ "property": "route",
417
+ "propertyInDotNotation": false,
418
+ "type": "body",
419
+ "value": "={{ JSON.parse($value) }}"
420
+ }
421
+ },
422
+ "displayOptions": {
423
+ "show": {
424
+ "resource": [
425
+ "Weather"
426
+ ],
427
+ "operation": [
428
+ "Wx By Route Us v1 Wx Forecast Route Query Post"
429
+ ]
430
+ }
431
+ }
432
+ },
433
+ {
434
+ "required": true,
435
+ "displayName": "Wxtypes",
436
+ "name": "wxtypes",
437
+ "type": "json",
438
+ "default": "[\n null\n]",
439
+ "routing": {
440
+ "send": {
441
+ "property": "wxtypes",
442
+ "propertyInDotNotation": false,
443
+ "type": "body",
444
+ "value": "={{ JSON.parse($value) }}"
445
+ }
446
+ },
447
+ "displayOptions": {
448
+ "show": {
449
+ "resource": [
450
+ "Weather"
451
+ ],
452
+ "operation": [
453
+ "Wx By Route Us v1 Wx Forecast Route Query Post"
454
+ ]
455
+ }
456
+ }
457
+ },
458
+ ];
459
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../nodes/LjaeroDflight/resources/weather/index.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,62 @@
1
+ {
2
+ "name": "@n8n-dev/n8n-nodes-ljaero-dflight",
3
+ "version": "1.0.0",
4
+ "description": "DFlight API provides real-time data for UAV preflight compliance via separate endpoints.",
5
+ "license": "MIT",
6
+ "homepage": "https://n8n-code.github.io/n8n-dev/#/n8n-nodes-ljaero-dflight",
7
+ "keywords": [
8
+ "n8n",
9
+ "n8n-community-node",
10
+ "n8n-node",
11
+ "n8n-community-node-package",
12
+ "openapi",
13
+ "swagger",
14
+ "API",
15
+ "automation",
16
+ "workflow",
17
+ "ljaero-dflight"
18
+ ],
19
+ "author": {
20
+ "name": "kelvinzer0",
21
+ "email": ""
22
+ },
23
+ "repository": {
24
+ "type": "git",
25
+ "url": "https://github.com/n8n-code/n8n-nodes-ljaero-dflight.git"
26
+ },
27
+ "scripts": {
28
+ "build": "n8n-node build",
29
+ "build:watch": "tsc --watch",
30
+ "dev": "n8n-node dev",
31
+ "lint": "n8n-node lint",
32
+ "lint:fix": "n8n-node lint --fix",
33
+ "release": "n8n-node release",
34
+ "prepublishOnly": "npm run build"
35
+ },
36
+ "files": [
37
+ "dist"
38
+ ],
39
+ "n8n": {
40
+ "n8nNodesApiVersion": 1,
41
+ "strict": true,
42
+ "credentials": [
43
+ "dist/credentials/LjaeroDflightApi.credentials.js"
44
+ ],
45
+ "nodes": [
46
+ "dist/nodes/LjaeroDflight/LjaeroDflight.node.js"
47
+ ]
48
+ },
49
+ "dependencies": {
50
+ "n8n-workflow": "*"
51
+ },
52
+ "devDependencies": {
53
+ "@n8n/node-cli": "*",
54
+ "eslint": "*",
55
+ "prettier": "3.8.3",
56
+ "release-it": "20.2.0",
57
+ "typescript": "5.9.3"
58
+ },
59
+ "peerDependencies": {
60
+ "n8n-workflow": "*"
61
+ }
62
+ }