@itentialopensource/adapter-paragon_insights 0.1.2 → 0.2.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 (52) hide show
  1. package/.eslintignore +0 -1
  2. package/.jshintrc +3 -0
  3. package/CALLS.md +638 -483
  4. package/CHANGELOG.md +16 -0
  5. package/CONTRIBUTING.md +1 -160
  6. package/ENHANCE.md +2 -2
  7. package/README.md +31 -22
  8. package/adapter.js +10567 -8758
  9. package/adapterBase.js +538 -873
  10. package/changelogs/CHANGELOG.md +16 -0
  11. package/entities/Config/action.json +306 -0
  12. package/entities/Config/mockdatafiles/retrieveHealthbotIngestIfaDeviceIds-default.json +4 -0
  13. package/entities/Config/mockdatafiles/retrieveHealthbotIngestIfaDevices-default.json +10 -0
  14. package/entities/Config/schema.json +16 -1
  15. package/entities/Configuration/action.json +61 -0
  16. package/entities/Configuration/schema.json +4 -1
  17. package/entities/Utility/action.json +44 -0
  18. package/entities/Utility/schema.json +20 -0
  19. package/metadata.json +51 -0
  20. package/package.json +23 -25
  21. package/pronghorn.json +1480 -343
  22. package/propertiesSchema.json +453 -41
  23. package/refs?service=git-upload-pack +0 -0
  24. package/report/adapter-openapi.json +42358 -0
  25. package/report/adapter-openapi.yaml +29640 -0
  26. package/report/adapterInfo.json +8 -8
  27. package/report/updateReport1691508880430.json +120 -0
  28. package/report/updateReport1692202195666.json +120 -0
  29. package/report/updateReport1692203297401.json +120 -0
  30. package/report/updateReport1694469141676.json +120 -0
  31. package/report/updateReport1698422888699.json +120 -0
  32. package/sampleProperties.json +67 -14
  33. package/test/integration/adapterTestBasicGet.js +1 -1
  34. package/test/integration/adapterTestConnectivity.js +91 -42
  35. package/test/integration/adapterTestIntegration.js +640 -2
  36. package/test/unit/adapterBaseTestUnit.js +388 -315
  37. package/test/unit/adapterTestUnit.js +870 -110
  38. package/utils/adapterInfo.js +1 -1
  39. package/utils/addAuth.js +1 -1
  40. package/utils/artifactize.js +1 -1
  41. package/utils/checkMigrate.js +1 -1
  42. package/utils/entitiesToDB.js +1 -0
  43. package/utils/findPath.js +1 -1
  44. package/utils/methodDocumentor.js +71 -23
  45. package/utils/modify.js +13 -15
  46. package/utils/packModificationScript.js +1 -1
  47. package/utils/taskMover.js +309 -0
  48. package/utils/tbScript.js +3 -10
  49. package/utils/tbUtils.js +2 -3
  50. package/utils/testRunner.js +1 -1
  51. package/utils/troubleshootingAdapter.js +1 -3
  52. package/workflows/README.md +0 -3
package/.eslintignore CHANGED
@@ -1,4 +1,3 @@
1
-
2
1
  .nyc_output/*
3
2
  backup/*
4
3
  coverage/*
package/.jshintrc CHANGED
@@ -0,0 +1,3 @@
1
+ {
2
+ "esversion": 6
3
+ }