@resolution/atlassian-api-common 0.4.2 → 0.4.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/CHANGELOG.md +23 -0
- package/README.md +5 -0
- package/package.json +3 -2
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,29 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [0.4.5](https://bitbucket.org/resolutiongmbh/atlassian-api-clients/compare/v0.4.4...v0.4.5) (2024-06-14)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* a hack for "fields" schema, which was probably added by mistake ([c860460](https://bitbucket.org/resolutiongmbh/atlassian-api-clients/commits/c86046039324361ae2b06de33e0007947e08d74e))
|
|
12
|
+
* missing packages changes ([2c1f946](https://bitbucket.org/resolutiongmbh/atlassian-api-clients/commits/2c1f946e7c96f955fa88464f0c673081209616c6))
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
## [0.4.4](https://bitbucket.org/resolutiongmbh/atlassian-api-clients/compare/v0.4.3...v0.4.4) (2024-06-11)
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
### Bug Fixes
|
|
22
|
+
|
|
23
|
+
* add license information to all packages ([d771640](https://bitbucket.org/resolutiongmbh/atlassian-api-clients/commits/d771640b39b4e9b8901a5d93bf8bec77496c957d))
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
|
|
6
29
|
## [0.4.2](https://bitbucket.org/resolutiongmbh/atlassian-api-clients/compare/v0.4.1...v0.4.2) (2024-06-11)
|
|
7
30
|
|
|
8
31
|
|
package/README.md
CHANGED
|
@@ -3,3 +3,8 @@
|
|
|
3
3
|
This package contains common code for Atlassian OpenAPI-based clients.
|
|
4
4
|
|
|
5
5
|
It is not intended to be used directly, but rather as a dependency of other Atlassian OpenAPI-based clients.
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
## License
|
|
9
|
+
|
|
10
|
+
This repository is licensed under the [MIT License](./LICENSE.md).
|
package/package.json
CHANGED
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@resolution/atlassian-api-common",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.5",
|
|
4
4
|
"description": "Shared code across different implementations of Atlassian API Clients.",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"scripts": {
|
|
7
7
|
"lint": "yarn run -T eslint src config",
|
|
8
|
+
"lint:fix": "yarn run -T eslint --fix src config",
|
|
8
9
|
"build": "rm -Rf lib && yarn run -T tsc -p tsconfig.build.json"
|
|
9
10
|
},
|
|
10
11
|
"files": [
|
|
@@ -42,5 +43,5 @@
|
|
|
42
43
|
"publishConfig": {
|
|
43
44
|
"access": "public"
|
|
44
45
|
},
|
|
45
|
-
"gitHead": "
|
|
46
|
+
"gitHead": "163cbdf037e089d6199734ab13caa7da4ff67e69"
|
|
46
47
|
}
|