@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.
- package/.eslintignore +1 -0
- package/.eslintrc.js +12 -12
- package/CHANGELOG.md +24 -0
- package/README.md +270 -68
- package/adapter.js +2006 -19
- package/adapterBase.js +544 -17
- package/entities/.generic/action.json +109 -0
- package/entities/.generic/schema.json +23 -0
- package/entities/.system/action.json +1 -1
- package/entities/Repositories/action.json +21 -0
- package/entities/Repositories/schema.json +2 -1
- package/error.json +6 -0
- package/package.json +46 -24
- package/pronghorn.json +664 -0
- package/propertiesSchema.json +84 -11
- package/refs?service=git-upload-pack +0 -0
- package/report/bitbucket2.0-OpenApi3Json.json +15713 -0
- package/report/updateReport1594060670181.json +95 -0
- package/report/updateReport1614703735948.json +95 -0
- package/report/updateReport1647122655204.json +95 -0
- package/sampleProperties.json +20 -5
- package/test/integration/adapterTestBasicGet.js +85 -0
- package/test/integration/adapterTestConnectivity.js +93 -0
- package/test/integration/adapterTestIntegration.js +30 -11
- package/test/unit/adapterBaseTestUnit.js +944 -0
- package/test/unit/adapterTestUnit.js +703 -12
- package/utils/addAuth.js +94 -0
- package/utils/artifactize.js +9 -14
- package/utils/basicGet.js +50 -0
- package/utils/checkMigrate.js +63 -0
- package/utils/entitiesToDB.js +224 -0
- package/utils/findPath.js +74 -0
- package/utils/modify.js +154 -0
- package/utils/packModificationScript.js +1 -1
- package/utils/patches2bundledDeps.js +90 -0
- package/utils/pre-commit.sh +1 -1
- package/utils/removeHooks.js +20 -0
- package/utils/tbScript.js +169 -0
- package/utils/tbUtils.js +451 -0
- package/utils/troubleshootingAdapter.js +190 -0
- package/gl-code-quality-report.json +0 -1
package/.eslintignore
CHANGED
package/.eslintrc.js
CHANGED
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
module.exports = {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
2
|
+
env: {
|
|
3
|
+
browser: true,
|
|
4
|
+
es6: true,
|
|
5
|
+
node: true
|
|
6
6
|
},
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
7
|
+
extends: 'airbnb-base',
|
|
8
|
+
plugins: [
|
|
9
|
+
'json'
|
|
10
10
|
],
|
|
11
|
-
|
|
12
|
-
|
|
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
|