@itentialopensource/adapter-etsi_sol003 0.1.2 → 0.3.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 (54) hide show
  1. package/AUTH.md +39 -0
  2. package/BROKER.md +199 -0
  3. package/CALLS.md +707 -0
  4. package/CHANGELOG.md +13 -5
  5. package/CODE_OF_CONDUCT.md +12 -17
  6. package/CONTRIBUTING.md +3 -148
  7. package/ENHANCE.md +69 -0
  8. package/PROPERTIES.md +641 -0
  9. package/README.md +235 -576
  10. package/SUMMARY.md +9 -0
  11. package/SYSTEMINFO.md +11 -0
  12. package/TROUBLESHOOT.md +47 -0
  13. package/adapter.js +291 -640
  14. package/adapterBase.js +843 -419
  15. package/changelogs/changelog.md +16 -0
  16. package/entities/.generic/action.json +105 -0
  17. package/entities/.generic/schema.json +6 -1
  18. package/error.json +6 -0
  19. package/metadata.json +49 -0
  20. package/package.json +24 -24
  21. package/pronghorn.json +527 -116
  22. package/propertiesDecorators.json +14 -0
  23. package/propertiesSchema.json +827 -6
  24. package/refs?service=git-upload-pack +0 -0
  25. package/report/adapter-openapi.json +7598 -0
  26. package/report/adapter-openapi.yaml +5267 -0
  27. package/report/adapterInfo.json +10 -0
  28. package/report/updateReport1653138357676.json +120 -0
  29. package/report/updateReport1691507408979.json +120 -0
  30. package/report/updateReport1692202442500.json +120 -0
  31. package/report/updateReport1694460725963.json +120 -0
  32. package/report/updateReport1698420524874.json +120 -0
  33. package/sampleProperties.json +153 -3
  34. package/test/integration/adapterTestBasicGet.js +3 -5
  35. package/test/integration/adapterTestConnectivity.js +91 -42
  36. package/test/integration/adapterTestIntegration.js +1784 -2174
  37. package/test/unit/adapterBaseTestUnit.js +388 -308
  38. package/test/unit/adapterTestUnit.js +399 -260
  39. package/utils/adapterInfo.js +206 -0
  40. package/utils/addAuth.js +1 -1
  41. package/utils/artifactize.js +1 -1
  42. package/utils/checkMigrate.js +1 -1
  43. package/utils/entitiesToDB.js +12 -57
  44. package/utils/findPath.js +1 -1
  45. package/utils/methodDocumentor.js +273 -0
  46. package/utils/modify.js +13 -15
  47. package/utils/packModificationScript.js +1 -1
  48. package/utils/pre-commit.sh +5 -0
  49. package/utils/taskMover.js +309 -0
  50. package/utils/tbScript.js +123 -53
  51. package/utils/tbUtils.js +87 -49
  52. package/utils/testRunner.js +17 -17
  53. package/utils/troubleshootingAdapter.js +9 -6
  54. package/workflows/README.md +0 -3
package/pronghorn.json CHANGED
@@ -9,7 +9,7 @@
9
9
  ],
10
10
  "methods": [
11
11
  {
12
- "name": "updateAdapterConfiguration",
12
+ "name": "iapUpdateAdapterConfiguration",
13
13
  "summary": "Updates the adapter configuration",
14
14
  "description": "Updates the adapter configuration file with the provided changes",
15
15
  "input": [
@@ -62,6 +62,16 @@
62
62
  "title": "action",
63
63
  "type": "string"
64
64
  }
65
+ },
66
+ {
67
+ "name" : "replace",
68
+ "type": "boolean",
69
+ "info": "True to replace entire mock data, false to merge/append",
70
+ "required": false,
71
+ "schema": {
72
+ "title": "replace",
73
+ "type" : "boolean"
74
+ }
65
75
  }
66
76
  ],
67
77
  "output": {
@@ -78,12 +88,97 @@
78
88
  ],
79
89
  "route": {
80
90
  "verb": "POST",
81
- "path": "/updateAdapterConfiguration"
91
+ "path": "/iapUpdateAdapterConfiguration"
92
+ },
93
+ "task": true
94
+ },
95
+ {
96
+ "name": "iapSuspendAdapter",
97
+ "summary": "Suspends the adapter",
98
+ "description": "Suspends the adapter",
99
+ "input": [
100
+ {
101
+ "name": "mode",
102
+ "type": "enum",
103
+ "enumerals": [
104
+ "pause",
105
+ "error"
106
+ ],
107
+ "info": "How incoming requests are handled. Defaults to 'pause'",
108
+ "description": "How incoming requests are handled. Defaults to 'pause'",
109
+ "schema": {
110
+ "title": "mode",
111
+ "type": "string"
112
+ },
113
+ "required": false
114
+ }
115
+ ],
116
+ "output": {
117
+ "name": "result",
118
+ "type": "object",
119
+ "description": "A JSON Object containing the adapter suspended status",
120
+ "schema": {
121
+ "title": "result",
122
+ "type": "object"
123
+ }
124
+ },
125
+ "roles": [
126
+ "admin"
127
+ ],
128
+ "route": {
129
+ "verb": "POST",
130
+ "path": "/iapSuspendAdapter"
131
+ },
132
+ "task": true
133
+ },
134
+ {
135
+ "name": "iapUnsuspendAdapter",
136
+ "summary": "Unsuspends the adapter",
137
+ "description": "Unsuspends the adapter",
138
+ "input": [],
139
+ "output": {
140
+ "name": "result",
141
+ "type": "object",
142
+ "description": "A JSON Object containing the adapter suspended status",
143
+ "schema": {
144
+ "title": "result",
145
+ "type": "object"
146
+ }
147
+ },
148
+ "roles": [
149
+ "admin"
150
+ ],
151
+ "route": {
152
+ "verb": "POST",
153
+ "path": "/iapUnsuspendAdapter"
82
154
  },
83
155
  "task": true
84
156
  },
85
157
  {
86
- "name": "findPath",
158
+ "name": "iapGetAdapterQueue",
159
+ "summary": "Return the requests that are waiting in the queue if throttling is enabled",
160
+ "description": "Return the requests that are waiting in the queue if throttling is enabled",
161
+ "input": [],
162
+ "output": {
163
+ "name": "result",
164
+ "type": "object",
165
+ "description": "A JSON Object containing the adapter queue",
166
+ "schema": {
167
+ "title": "result",
168
+ "type": "object"
169
+ }
170
+ },
171
+ "roles": [
172
+ "admin"
173
+ ],
174
+ "route": {
175
+ "verb": "POST",
176
+ "path": "/iapGetAdapterQueue"
177
+ },
178
+ "task": true
179
+ },
180
+ {
181
+ "name": "iapFindAdapterPath",
87
182
  "summary": "Provides the ability to see if a particular API path is supported by the adapter",
88
183
  "description": "Provides the ability to see if a particular API path is supported by the adapter",
89
184
  "input": [
@@ -113,12 +208,12 @@
113
208
  ],
114
209
  "route": {
115
210
  "verb": "POST",
116
- "path": "/findPath"
211
+ "path": "/iapFindAdapterPath"
117
212
  },
118
213
  "task": true
119
214
  },
120
215
  {
121
- "name": "troubleshoot",
216
+ "name": "iapTroubleshootAdapter",
122
217
  "summary": "Runs troubleshoot script for adapter",
123
218
  "description": "Runs troubleshoot script for adapter",
124
219
  "input": [
@@ -136,7 +231,11 @@
136
231
  "name": "persistFlag",
137
232
  "type": "boolean",
138
233
  "info": "Whether the input properties should be saved",
139
- "required": true
234
+ "required": true,
235
+ "schema": {
236
+ "title": "persistFlag",
237
+ "type": "boolean"
238
+ }
140
239
  }
141
240
  ],
142
241
  "output": {
@@ -153,31 +252,35 @@
153
252
  ],
154
253
  "route": {
155
254
  "verb": "POST",
156
- "path": "/troubleshoot"
255
+ "path": "/iapTroubleshootAdapter"
157
256
  },
158
257
  "task": true
159
258
  },
160
259
  {
161
- "name": "runHealthcheck",
260
+ "name": "iapRunAdapterHealthcheck",
162
261
  "summary": "Runs healthcheck script for adapter",
163
262
  "description": "Runs healthcheck script for adapter",
164
263
  "input": [],
165
264
  "output": {
166
265
  "name": "result",
167
266
  "type": "boolean",
168
- "description": "Whether healthcheck passed or failed"
267
+ "description": "Whether healthcheck passed or failed",
268
+ "schema": {
269
+ "title": "result",
270
+ "type": "boolean"
271
+ }
169
272
  },
170
273
  "roles": [
171
274
  "admin"
172
275
  ],
173
276
  "route": {
174
277
  "verb": "POST",
175
- "path": "/runHealthcheck"
278
+ "path": "/iapRunAdapterHealthcheck"
176
279
  },
177
280
  "task": true
178
281
  },
179
282
  {
180
- "name": "runConnectivity",
283
+ "name": "iapRunAdapterConnectivity",
181
284
  "summary": "Runs connectivity check script for adapter",
182
285
  "description": "Runs connectivity check script for adapter",
183
286
  "input": [],
@@ -195,12 +298,12 @@
195
298
  ],
196
299
  "route": {
197
300
  "verb": "POST",
198
- "path": "/runConnectivity"
301
+ "path": "/iapRunAdapterConnectivity"
199
302
  },
200
303
  "task": true
201
304
  },
202
305
  {
203
- "name": "runBasicGet",
306
+ "name": "iapRunAdapterBasicGet",
204
307
  "summary": "Runs basicGet script for adapter",
205
308
  "description": "Runs basicGet script for adapter",
206
309
  "input": [],
@@ -218,37 +321,21 @@
218
321
  ],
219
322
  "route": {
220
323
  "verb": "POST",
221
- "path": "/runBasicGet"
324
+ "path": "/iapRunAdapterBasicGet"
222
325
  },
223
326
  "task": true
224
327
  },
225
328
  {
226
- "name": "suspend",
227
- "summary": "Suspends the adapter",
228
- "description": "Suspends the adapter",
229
- "input": [
230
- {
231
- "name": "mode",
232
- "type": "enum",
233
- "enumerals": [
234
- "pause",
235
- "error"
236
- ],
237
- "info": "How incoming requests are handled. Defaults to 'pause'",
238
- "description": "How incoming requests are handled. Defaults to 'pause'",
239
- "schema": {
240
- "title": "mode",
241
- "type": "string"
242
- },
243
- "required": false
244
- }
245
- ],
329
+ "name": "iapMoveAdapterEntitiesToDB",
330
+ "summary": "Moves entities from an adapter into the IAP database",
331
+ "description": "Moves entities from an adapter into the IAP database",
332
+ "input": [],
246
333
  "output": {
247
- "name": "result",
334
+ "name": "res",
248
335
  "type": "object",
249
- "description": "A JSON Object containing the adapter suspended status",
336
+ "description": "A JSON Object containing status, code and the response from the mongo transaction",
250
337
  "schema": {
251
- "title": "result",
338
+ "title": "res",
252
339
  "type": "object"
253
340
  }
254
341
  },
@@ -257,19 +344,29 @@
257
344
  ],
258
345
  "route": {
259
346
  "verb": "POST",
260
- "path": "/suspend"
347
+ "path": "/iapMoveAdapterEntitiesToDB"
261
348
  },
262
349
  "task": true
263
350
  },
264
351
  {
265
- "name": "unsuspend",
266
- "summary": "Unsuspends the adapter",
267
- "description": "Unsuspends the adapter",
268
- "input": [],
352
+ "name": "iapDeactivateTasks",
353
+ "summary": "Deactivate the inputted tasks",
354
+ "description": "Deactivate the inputted tasks",
355
+ "input": [
356
+ {
357
+ "name": "tasks",
358
+ "type": "array",
359
+ "description": "Tasks to deactivate",
360
+ "schema": {
361
+ "title": "tasks",
362
+ "type": "array"
363
+ }
364
+ }
365
+ ],
269
366
  "output": {
270
367
  "name": "result",
271
368
  "type": "object",
272
- "description": "A JSON Object containing the adapter suspended status",
369
+ "description": "A JSON Object containing success status",
273
370
  "schema": {
274
371
  "title": "result",
275
372
  "type": "object"
@@ -280,19 +377,29 @@
280
377
  ],
281
378
  "route": {
282
379
  "verb": "POST",
283
- "path": "/unsuspend"
380
+ "path": "/iapDeactivateTasks"
284
381
  },
285
382
  "task": true
286
383
  },
287
384
  {
288
- "name": "getQueue",
289
- "summary": "Return the requests that are waiting in the queue if throttling is enabled",
290
- "description": "Return the requests that are waiting in the queue if throttling is enabled",
291
- "input": [],
385
+ "name": "iapActivateTasks",
386
+ "summary": "Activate the inputted tasks",
387
+ "description": "activate the inputted tasks",
388
+ "input": [
389
+ {
390
+ "name": "tasks",
391
+ "type": "array",
392
+ "description": "Tasks to activate",
393
+ "schema": {
394
+ "title": "tasks",
395
+ "type": "array"
396
+ }
397
+ }
398
+ ],
292
399
  "output": {
293
400
  "name": "result",
294
401
  "type": "object",
295
- "description": "A JSON Object containing the adapter queue",
402
+ "description": "A JSON Object containing success status",
296
403
  "schema": {
297
404
  "title": "result",
298
405
  "type": "object"
@@ -303,69 +410,24 @@
303
410
  ],
304
411
  "route": {
305
412
  "verb": "POST",
306
- "path": "/getQueue"
413
+ "path": "/iapActivateTasks"
307
414
  },
308
415
  "task": true
309
416
  },
310
417
  {
311
- "name": "genericAdapterRequest",
312
- "summary": "Makes the requested generic call",
313
- "description": "Makes the requested generic call",
418
+ "name": "iapPopulateEntityCache",
419
+ "summary": "Populate the cache for the given entities",
420
+ "description": "Populate the cache for the given entities",
314
421
  "input": [
315
422
  {
316
- "name": "uriPath",
317
- "type": "string",
318
- "info": "the path of the api call - do not include the host, port, base path or version",
319
- "description": "the path of the api call",
320
- "schema": {
321
- "title": "uriPath",
322
- "type": "string"
323
- },
324
- "required": true
325
- },
326
- {
327
- "name": "restMethod",
328
- "type": "string",
329
- "info": "the rest method (GET, POST, PUT, PATCH, DELETE)",
330
- "description": "the rest method (GET, POST, PUT, PATCH, DELETE)",
331
- "schema": {
332
- "title": "restMethod",
333
- "type": "string"
334
- },
335
- "required": true
336
- },
337
- {
338
- "name": "queryData",
339
- "type": "object",
340
- "info": "the query parameters to be put on the url (optional)",
341
- "description": "the query parameters to be put on the url (optional)",
342
- "schema": {
343
- "title": "queryData",
344
- "type": "object"
345
- },
346
- "required": false
347
- },
348
- {
349
- "name": "requestBody",
350
- "type": "object",
351
- "info": "the payload to be sent with the request (optional)",
352
- "description": "the payload to be sent with the request (optional)",
353
- "schema": {
354
- "title": "requestBody",
355
- "type": "object"
356
- },
357
- "required": false
358
- },
359
- {
360
- "name": "addlHeaders",
361
- "type": "object",
362
- "info": "additional headers to be put on the call (optional)",
363
- "description": "additional headers to be put on the call (optional)",
423
+ "name": "entityTypes",
424
+ "type": "array",
425
+ "info": "the entity type(s) to populate",
426
+ "required": true,
364
427
  "schema": {
365
- "title": "addlHeaders",
366
- "type": "object"
367
- },
368
- "required": false
428
+ "title": "entityTypes",
429
+ "type": "array"
430
+ }
369
431
  }
370
432
  ],
371
433
  "output": {
@@ -382,21 +444,42 @@
382
444
  ],
383
445
  "route": {
384
446
  "verb": "POST",
385
- "path": "/genericAdapterRequest"
447
+ "path": "/iapPopulateEntityCache"
386
448
  },
387
449
  "task": true
388
450
  },
389
451
  {
390
- "name": "moveEntitiesToDB",
391
- "summary": "Moves entities from an adapter into the IAP database",
392
- "description": "Moves entities from an adapter into the IAP database",
393
- "input": [],
452
+ "name": "iapRetrieveEntitiesCache",
453
+ "summary": "Retrieves data from cache for specified entity type",
454
+ "description": "Retrieves data from cache for specified entity type",
455
+ "input": [
456
+ {
457
+ "name": "entityType",
458
+ "type": "string",
459
+ "info": "entity of which to retrieve",
460
+ "required": true,
461
+ "schema": {
462
+ "title": "entityType",
463
+ "type": "string"
464
+ }
465
+ },
466
+ {
467
+ "name": "options",
468
+ "type": "object",
469
+ "info": "settings of which data to return and how to return it",
470
+ "required": false,
471
+ "schema": {
472
+ "title": "options",
473
+ "type": "object"
474
+ }
475
+ }
476
+ ],
394
477
  "output": {
395
- "name": "res",
478
+ "name": "result",
396
479
  "type": "object",
397
- "description": "A JSON Object containing status, code and the response from the mongo transaction",
480
+ "description": "A JSON Object containing status, code and the result",
398
481
  "schema": {
399
- "title": "res",
482
+ "title": "result",
400
483
  "type": "object"
401
484
  }
402
485
  },
@@ -405,7 +488,7 @@
405
488
  ],
406
489
  "route": {
407
490
  "verb": "POST",
408
- "path": "/moveEntitiesToDB"
491
+ "path": "/iapRetrieveEntitiesCache"
409
492
  },
410
493
  "task": true
411
494
  },
@@ -556,7 +639,7 @@
556
639
  "task": false
557
640
  },
558
641
  {
559
- "name": "getCount",
642
+ "name": "iapGetDeviceCount",
560
643
  "summary": "Gets a device count from the system",
561
644
  "description": "Gets a device count from the system",
562
645
  "input": [],
@@ -574,10 +657,338 @@
574
657
  ],
575
658
  "route": {
576
659
  "verb": "POST",
577
- "path": "/getCount"
660
+ "path": "/iapGetDeviceCount"
578
661
  },
579
662
  "task": false
580
663
  },
664
+ {
665
+ "name": "iapExpandedGenericAdapterRequest",
666
+ "summary": "Makes the requested generic call with additional options",
667
+ "description": "Makes the requested generic call with additional options via metadata",
668
+ "input": [
669
+ {
670
+ "name": "metadata",
671
+ "type": "object",
672
+ "info": "metadata for the call (optional)",
673
+ "description": "metadata for the call - allows for many enhancements (optional)",
674
+ "schema": {
675
+ "title": "metadata",
676
+ "type": "object"
677
+ },
678
+ "required": false
679
+ },
680
+ {
681
+ "name": "uriPath",
682
+ "type": "string",
683
+ "info": "the path of the api call - do not include the host, port, base path or version",
684
+ "description": "the path of the api call",
685
+ "schema": {
686
+ "title": "uriPath",
687
+ "type": "string"
688
+ },
689
+ "required": false
690
+ },
691
+ {
692
+ "name": "restMethod",
693
+ "type": "string",
694
+ "info": "the rest method (GET, POST, PUT, PATCH, DELETE)",
695
+ "description": "the rest method (GET, POST, PUT, PATCH, DELETE)",
696
+ "schema": {
697
+ "title": "restMethod",
698
+ "type": "string"
699
+ },
700
+ "required": false
701
+ },
702
+ {
703
+ "name": "pathVars",
704
+ "type": "object",
705
+ "info": "the parameters to be put within the url path (optional)",
706
+ "description": "the parameters to be put within the url path (optional)",
707
+ "schema": {
708
+ "title": "pathVars",
709
+ "type": "object"
710
+ },
711
+ "required": false
712
+ },
713
+ {
714
+ "name": "queryData",
715
+ "type": "object",
716
+ "info": "the query parameters to be put on the url (optional)",
717
+ "description": "the query parameters to be put on the url (optional)",
718
+ "schema": {
719
+ "title": "queryData",
720
+ "type": "object"
721
+ },
722
+ "required": false
723
+ },
724
+ {
725
+ "name": "requestBody",
726
+ "type": "object",
727
+ "info": "the payload to be sent with the request (optional)",
728
+ "description": "the payload to be sent with the request (optional)",
729
+ "schema": {
730
+ "title": "requestBody",
731
+ "type": "object"
732
+ },
733
+ "required": false
734
+ },
735
+ {
736
+ "name": "addlHeaders",
737
+ "type": "object",
738
+ "info": "additional headers to be put on the call (optional)",
739
+ "description": "additional headers to be put on the call (optional)",
740
+ "schema": {
741
+ "title": "addlHeaders",
742
+ "type": "object"
743
+ },
744
+ "required": false
745
+ }
746
+ ],
747
+ "output": {
748
+ "name": "result",
749
+ "type": "object",
750
+ "description": "A JSON Object containing status, code and the result",
751
+ "schema": {
752
+ "title": "result",
753
+ "type": "object"
754
+ }
755
+ },
756
+ "roles": [
757
+ "admin"
758
+ ],
759
+ "route": {
760
+ "verb": "POST",
761
+ "path": "/iapExpandedGenericAdapterRequest"
762
+ },
763
+ "task": true
764
+ },
765
+ {
766
+ "name": "genericAdapterRequest",
767
+ "summary": "Makes the requested generic call",
768
+ "description": "Makes the requested generic call",
769
+ "input": [
770
+ {
771
+ "name": "uriPath",
772
+ "type": "string",
773
+ "info": "the path of the api call - do not include the host, port, base path or version",
774
+ "description": "the path of the api call",
775
+ "schema": {
776
+ "title": "uriPath",
777
+ "type": "string"
778
+ },
779
+ "required": true
780
+ },
781
+ {
782
+ "name": "restMethod",
783
+ "type": "string",
784
+ "info": "the rest method (GET, POST, PUT, PATCH, DELETE)",
785
+ "description": "the rest method (GET, POST, PUT, PATCH, DELETE)",
786
+ "schema": {
787
+ "title": "restMethod",
788
+ "type": "string"
789
+ },
790
+ "required": true
791
+ },
792
+ {
793
+ "name": "queryData",
794
+ "type": "object",
795
+ "info": "the query parameters to be put on the url (optional)",
796
+ "description": "the query parameters to be put on the url (optional)",
797
+ "schema": {
798
+ "title": "queryData",
799
+ "type": "object"
800
+ },
801
+ "required": false
802
+ },
803
+ {
804
+ "name": "requestBody",
805
+ "type": "object",
806
+ "info": "the payload to be sent with the request (optional)",
807
+ "description": "the payload to be sent with the request (optional)",
808
+ "schema": {
809
+ "title": "requestBody",
810
+ "type": "object"
811
+ },
812
+ "required": false
813
+ },
814
+ {
815
+ "name": "addlHeaders",
816
+ "type": "object",
817
+ "info": "additional headers to be put on the call (optional)",
818
+ "description": "additional headers to be put on the call (optional)",
819
+ "schema": {
820
+ "title": "addlHeaders",
821
+ "type": "object"
822
+ },
823
+ "required": false
824
+ }
825
+ ],
826
+ "output": {
827
+ "name": "result",
828
+ "type": "object",
829
+ "description": "A JSON Object containing status, code and the result",
830
+ "schema": {
831
+ "title": "result",
832
+ "type": "object"
833
+ }
834
+ },
835
+ "roles": [
836
+ "admin"
837
+ ],
838
+ "route": {
839
+ "verb": "POST",
840
+ "path": "/genericAdapterRequest"
841
+ },
842
+ "task": true
843
+ },
844
+ {
845
+ "name": "genericAdapterRequestNoBasePath",
846
+ "summary": "Makes the requested generic call",
847
+ "description": "Makes the requested generic call",
848
+ "input": [
849
+ {
850
+ "name": "uriPath",
851
+ "type": "string",
852
+ "info": "the path of the api call - do not include the host, port, base path or version",
853
+ "description": "the path of the api call",
854
+ "schema": {
855
+ "title": "uriPath",
856
+ "type": "string"
857
+ },
858
+ "required": true
859
+ },
860
+ {
861
+ "name": "restMethod",
862
+ "type": "string",
863
+ "info": "the rest method (GET, POST, PUT, PATCH, DELETE)",
864
+ "description": "the rest method (GET, POST, PUT, PATCH, DELETE)",
865
+ "schema": {
866
+ "title": "restMethod",
867
+ "type": "string"
868
+ },
869
+ "required": true
870
+ },
871
+ {
872
+ "name": "queryData",
873
+ "type": "object",
874
+ "info": "the query parameters to be put on the url (optional)",
875
+ "description": "the query parameters to be put on the url (optional)",
876
+ "schema": {
877
+ "title": "queryData",
878
+ "type": "object"
879
+ },
880
+ "required": false
881
+ },
882
+ {
883
+ "name": "requestBody",
884
+ "type": "object",
885
+ "info": "the payload to be sent with the request (optional)",
886
+ "description": "the payload to be sent with the request (optional)",
887
+ "schema": {
888
+ "title": "requestBody",
889
+ "type": "object"
890
+ },
891
+ "required": false
892
+ },
893
+ {
894
+ "name": "addlHeaders",
895
+ "type": "object",
896
+ "info": "additional headers to be put on the call (optional)",
897
+ "description": "additional headers to be put on the call (optional)",
898
+ "schema": {
899
+ "title": "addlHeaders",
900
+ "type": "object"
901
+ },
902
+ "required": false
903
+ }
904
+ ],
905
+ "output": {
906
+ "name": "result",
907
+ "type": "object",
908
+ "description": "A JSON Object containing status, code and the result",
909
+ "schema": {
910
+ "title": "result",
911
+ "type": "object"
912
+ }
913
+ },
914
+ "roles": [
915
+ "admin"
916
+ ],
917
+ "route": {
918
+ "verb": "POST",
919
+ "path": "/genericAdapterRequestNoBasePath"
920
+ },
921
+ "task": true
922
+ },
923
+ {
924
+ "name": "iapRunAdapterLint",
925
+ "summary": "Run the adapter lint script to return the results",
926
+ "description": "Run the adapter lint script to return the results",
927
+ "input": [],
928
+ "output": {
929
+ "name": "result",
930
+ "type": "string",
931
+ "description": "A string containing the run results",
932
+ "schema": {
933
+ "title": "result",
934
+ "type": "string"
935
+ }
936
+ },
937
+ "roles": [
938
+ "admin"
939
+ ],
940
+ "route": {
941
+ "verb": "GET",
942
+ "path": "/iapRunAdapterLint"
943
+ },
944
+ "task": true
945
+ },
946
+ {
947
+ "name": "iapRunAdapterTests",
948
+ "summary": "Run the adapter test scripts (baseunit and unit) to return the results",
949
+ "description": "Run the adapter test scripts (baseunit and unit) to return the results",
950
+ "input": [],
951
+ "output": {
952
+ "name": "result",
953
+ "type": "object",
954
+ "description": "A JSON Object containing status, code and the result",
955
+ "schema": {
956
+ "title": "result",
957
+ "type": "object"
958
+ }
959
+ },
960
+ "roles": [
961
+ "admin"
962
+ ],
963
+ "route": {
964
+ "verb": "GET",
965
+ "path": "/iapRunAdapterTests"
966
+ },
967
+ "task": true
968
+ },
969
+ {
970
+ "name": "iapGetAdapterInventory",
971
+ "summary": "Provide inventory information abbout the adapter",
972
+ "description": "Provide inventory information abbout the adapter",
973
+ "input": [],
974
+ "output": {
975
+ "name": "result",
976
+ "type": "object",
977
+ "description": "A JSON Object containing status, code and the result",
978
+ "schema": {
979
+ "title": "result",
980
+ "type": "object"
981
+ }
982
+ },
983
+ "roles": [
984
+ "admin"
985
+ ],
986
+ "route": {
987
+ "verb": "GET",
988
+ "path": "/iapGetAdapterInventory"
989
+ },
990
+ "task": true
991
+ },
581
992
  {
582
993
  "name": "getApiVersions",
583
994
  "summary": "Retrieve API version information",