@itentialopensource/adapter-bitbucket 0.3.2 → 0.3.5

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 (41) hide show
  1. package/.eslintignore +1 -0
  2. package/.eslintrc.js +12 -12
  3. package/CHANGELOG.md +24 -0
  4. package/README.md +270 -68
  5. package/adapter.js +2006 -19
  6. package/adapterBase.js +544 -17
  7. package/entities/.generic/action.json +109 -0
  8. package/entities/.generic/schema.json +23 -0
  9. package/entities/.system/action.json +1 -1
  10. package/entities/Repositories/action.json +21 -0
  11. package/entities/Repositories/schema.json +2 -1
  12. package/error.json +6 -0
  13. package/package.json +46 -24
  14. package/pronghorn.json +664 -0
  15. package/propertiesSchema.json +84 -11
  16. package/refs?service=git-upload-pack +0 -0
  17. package/report/bitbucket2.0-OpenApi3Json.json +15713 -0
  18. package/report/updateReport1594060670181.json +95 -0
  19. package/report/updateReport1614703735948.json +95 -0
  20. package/report/updateReport1647122655204.json +95 -0
  21. package/sampleProperties.json +20 -5
  22. package/test/integration/adapterTestBasicGet.js +85 -0
  23. package/test/integration/adapterTestConnectivity.js +93 -0
  24. package/test/integration/adapterTestIntegration.js +30 -11
  25. package/test/unit/adapterBaseTestUnit.js +944 -0
  26. package/test/unit/adapterTestUnit.js +703 -12
  27. package/utils/addAuth.js +94 -0
  28. package/utils/artifactize.js +9 -14
  29. package/utils/basicGet.js +50 -0
  30. package/utils/checkMigrate.js +63 -0
  31. package/utils/entitiesToDB.js +224 -0
  32. package/utils/findPath.js +74 -0
  33. package/utils/modify.js +154 -0
  34. package/utils/packModificationScript.js +1 -1
  35. package/utils/patches2bundledDeps.js +90 -0
  36. package/utils/pre-commit.sh +1 -1
  37. package/utils/removeHooks.js +20 -0
  38. package/utils/tbScript.js +169 -0
  39. package/utils/tbUtils.js +451 -0
  40. package/utils/troubleshootingAdapter.js +190 -0
  41. package/gl-code-quality-report.json +0 -1
package/.eslintignore CHANGED
@@ -2,3 +2,4 @@
2
2
  backup/*
3
3
  coverage/*
4
4
  out/*
5
+ adapter_modifications/*
package/.eslintrc.js CHANGED
@@ -1,18 +1,18 @@
1
1
  module.exports = {
2
- 'env': {
3
- 'browser': true,
4
- 'es6': true,
5
- 'node': true,
2
+ env: {
3
+ browser: true,
4
+ es6: true,
5
+ node: true
6
6
  },
7
- 'extends': 'airbnb-base',
8
- "plugins": [
9
- "json"
7
+ extends: 'airbnb-base',
8
+ plugins: [
9
+ 'json'
10
10
  ],
11
- 'parserOptions': {
12
- 'sourceType': 'module',
11
+ parserOptions: {
12
+ sourceType: 'module'
13
13
  },
14
14
  rules: {
15
15
  'max-len': 'warn',
16
- 'comma-dangle': ['error', 'never'],
17
- },
18
- };
16
+ 'comma-dangle': ['error', 'never']
17
+ }
18
+ };
package/CHANGELOG.md CHANGED
@@ -1,4 +1,28 @@
1
1
 
2
+ ## 0.3.5 [03-12-2022]
3
+
4
+ * Patch/adapt 1925
5
+
6
+ See merge request itentialopensource/adapters/devops-netops/adapter-bitbucket!8
7
+
8
+ ---
9
+
10
+ ## 0.3.4 [03-02-2021]
11
+
12
+ * migration to the latest adapter foundation
13
+
14
+ See merge request itentialopensource/adapters/devops-netops/adapter-bitbucket!6
15
+
16
+ ---
17
+
18
+ ## 0.3.3 [07-07-2020]
19
+
20
+ * migration
21
+
22
+ See merge request itentialopensource/adapters/devops-netops/adapter-bitbucket!5
23
+
24
+ ---
25
+
2
26
  ## 0.3.2 [01-02-2020]
3
27
 
4
28
  * December Migration