@itentialopensource/adapter-paragon_active_assurance 0.1.1 → 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 (56) hide show
  1. package/.eslintignore +0 -1
  2. package/.jshintrc +3 -0
  3. package/CALLS.md +175 -139
  4. package/CHANGELOG.md +16 -1
  5. package/CONTRIBUTING.md +1 -160
  6. package/ENHANCE.md +2 -2
  7. package/README.md +31 -22
  8. package/adapter.js +163 -334
  9. package/adapterBase.js +538 -873
  10. package/changelogs/CHANGELOG.md +16 -0
  11. package/entities/.system/action.json +40 -0
  12. package/entities/.system/mockdatafiles/MFA_Step_1-default.json +31 -0
  13. package/entities/.system/mockdatafiles/MFA_Step_2-default.json +107 -0
  14. package/entities/.system/schemaTokenReq_MFA_Step_1.json +19 -0
  15. package/entities/.system/schemaTokenReq_MFA_Step_2.json +24 -0
  16. package/entities/.system/schemaTokenResp_MFA_Step_1.json +38 -0
  17. package/entities/.system/schemaTokenResp_MFA_Step_2.json +33 -0
  18. package/metadata.json +51 -0
  19. package/package.json +24 -26
  20. package/pronghorn.json +474 -142
  21. package/propertiesSchema.json +453 -40
  22. package/refs?service=git-upload-pack +0 -0
  23. package/report/adapter-openapi.json +15052 -0
  24. package/report/adapter-openapi.yaml +10325 -0
  25. package/report/adapterInfo.json +8 -8
  26. package/report/updateReport1691508876405.json +120 -0
  27. package/report/updateReport1692202191653.json +120 -0
  28. package/report/updateReport1692203293320.json +120 -0
  29. package/report/updateReport1694469109205.json +120 -0
  30. package/report/updateReport1698422878147.json +120 -0
  31. package/sampleProperties.json +94 -7
  32. package/test/integration/adapterTestBasicGet.js +1 -1
  33. package/test/integration/adapterTestConnectivity.js +91 -42
  34. package/test/integration/adapterTestIntegration.js +130 -2
  35. package/test/unit/adapterBaseTestUnit.js +388 -313
  36. package/test/unit/adapterTestUnit.js +307 -110
  37. package/utils/adapterInfo.js +1 -1
  38. package/utils/addAuth.js +1 -1
  39. package/utils/artifactize.js +1 -1
  40. package/utils/checkMigrate.js +1 -1
  41. package/utils/entitiesToDB.js +1 -0
  42. package/utils/findPath.js +1 -1
  43. package/utils/methodDocumentor.js +71 -23
  44. package/utils/modify.js +13 -15
  45. package/utils/packModificationScript.js +1 -1
  46. package/utils/taskMover.js +309 -0
  47. package/utils/tbScript.js +3 -10
  48. package/utils/tbUtils.js +2 -3
  49. package/utils/testRunner.js +1 -1
  50. package/utils/troubleshootingAdapter.js +1 -3
  51. package/.gitlab/.gitkeep +0 -0
  52. package/.gitlab/issue_templates/.gitkeep +0 -0
  53. package/.gitlab/issue_templates/Default.md +0 -17
  54. package/.gitlab/issue_templates/bugReportTemplate.md +0 -76
  55. package/.gitlab/issue_templates/featureRequestTemplate.md +0 -14
  56. 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
+ }