@itentialopensource/adapter-nokia_nsp_nfm_p 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 (48) hide show
  1. package/.eslintignore +0 -1
  2. package/.jshintrc +3 -0
  3. package/BROKER.md +3 -3
  4. package/CALLS.md +894 -1059
  5. package/CHANGELOG.md +8 -0
  6. package/CONTRIBUTING.md +1 -160
  7. package/ENHANCE.md +4 -4
  8. package/PROPERTIES.md +19 -19
  9. package/README.md +45 -36
  10. package/SUMMARY.md +2 -2
  11. package/TROUBLESHOOT.md +6 -6
  12. package/adapter.js +163 -334
  13. package/adapterBase.js +538 -873
  14. package/changelogs/changelog.md +16 -0
  15. package/metadata.json +47 -0
  16. package/package.json +22 -25
  17. package/pronghorn.json +474 -142
  18. package/propertiesSchema.json +456 -43
  19. package/refs?service=git-upload-pack +0 -0
  20. package/report/adapter-openapi.json +137461 -0
  21. package/report/adapter-openapi.yaml +106230 -0
  22. package/report/adapterInfo.json +8 -8
  23. package/report/updateReport1691505789653.json +120 -0
  24. package/report/updateReport1692203069319.json +120 -0
  25. package/report/updateReport1694458442348.json +120 -0
  26. package/report/updateReport1694467392133.json +120 -0
  27. package/report/updateReport1698422254993.json +120 -0
  28. package/sampleProperties.json +64 -3
  29. package/test/integration/adapterTestBasicGet.js +1 -1
  30. package/test/integration/adapterTestConnectivity.js +91 -42
  31. package/test/integration/adapterTestIntegration.js +1720 -1592
  32. package/test/unit/adapterBaseTestUnit.js +388 -313
  33. package/test/unit/adapterTestUnit.js +1195 -998
  34. package/utils/adapterInfo.js +1 -1
  35. package/utils/addAuth.js +1 -1
  36. package/utils/artifactize.js +1 -1
  37. package/utils/checkMigrate.js +1 -1
  38. package/utils/entitiesToDB.js +1 -0
  39. package/utils/findPath.js +1 -1
  40. package/utils/methodDocumentor.js +71 -23
  41. package/utils/modify.js +13 -15
  42. package/utils/packModificationScript.js +1 -1
  43. package/utils/taskMover.js +309 -0
  44. package/utils/tbScript.js +3 -10
  45. package/utils/tbUtils.js +2 -3
  46. package/utils/testRunner.js +1 -1
  47. package/utils/troubleshootingAdapter.js +1 -3
  48. 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
+ }
package/BROKER.md CHANGED
@@ -1,9 +1,9 @@
1
- ## Integrating Nokia_NSP_NFM-P Adapter with IAP Device Broker
1
+ ## Integrating Nokia_nsp_nfm_p Adapter with IAP Device Broker
2
2
 
3
- This document will go through the steps for integrating the Nokia_NSP_NFM-P adapter with IAP's Device Broker. IAP Device Broker integration allows for easier interation into several of IAPs applications (e.g. Configuration Manager). Properly configuring the properties for the adapter in IAP is critical for getting the device broker integration to work. Their is additional information in the configuration section of the adapter readme. This document will go through each of the calls that are utilized by the Device Broker.
3
+ This document will go through the steps for integrating the Nokia_nsp_nfm_p adapter with IAP's Device Broker. IAP Device Broker integration allows for easier interation into several of IAPs applications (e.g. Configuration Manager). Properly configuring the properties for the adapter in IAP is critical for getting the device broker integration to work. Their is additional information in the configuration section of the adapter readme. This document will go through each of the calls that are utilized by the Device Broker.
4
4
 
5
5
  ### getDevicesFiltered
6
- getDevicesFiltered(options, callback) → This call returns all of the devices within Nokia_NSP_NFM-P that match the provided filter.
6
+ getDevicesFiltered(options, callback) → This call returns all of the devices within Nokia_nsp_nfm_p that match the provided filter.
7
7
 
8
8
  #### input
9
9