@resolution/confluence-api-client 0.4.6 → 0.5.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.
- package/CHANGELOG.md +11 -0
- package/README.md +4 -2
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,17 @@
|
|
|
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.5.0](https://bitbucket.org/resolutiongmbh/atlassian-api-clients/compare/v0.4.6...v0.5.0) (2024-06-20)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* first version of Jira Service Management API ([67634ea](https://bitbucket.org/resolutiongmbh/atlassian-api-clients/commits/67634ea9bfe37adf30a7d2b124b59f52c4f1ccda))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
## [0.4.6](https://bitbucket.org/resolutiongmbh/atlassian-api-clients/compare/v0.4.5...v0.4.6) (2024-06-14)
|
|
7
18
|
|
|
8
19
|
|
package/README.md
CHANGED
|
@@ -11,16 +11,18 @@ Compatible with the following request/fetch Atlassian libraries:
|
|
|
11
11
|
|
|
12
12
|
## Installation
|
|
13
13
|
|
|
14
|
+
Note that this package requires `zod` as a peer dependency.
|
|
15
|
+
|
|
14
16
|
Install using npm
|
|
15
17
|
|
|
16
18
|
```bash
|
|
17
|
-
npm add @resolution/confluence-api-client
|
|
19
|
+
npm add @resolution/confluence-api-client zod
|
|
18
20
|
```
|
|
19
21
|
|
|
20
22
|
Or using yarn
|
|
21
23
|
|
|
22
24
|
```bash
|
|
23
|
-
yarn add @resolution/confluence-api-client
|
|
25
|
+
yarn add @resolution/confluence-api-client zod
|
|
24
26
|
```
|
|
25
27
|
|
|
26
28
|
## Usage
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@resolution/confluence-api-client",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.5.0",
|
|
4
4
|
"description": "Confluence API Client based on OpenAPI Schema from Atlassian.",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"types": "lib/index.d.ts",
|
|
@@ -36,10 +36,10 @@
|
|
|
36
36
|
},
|
|
37
37
|
"homepage": "https://bitbucket.org/resolutiongmbh/atlassian-api-clients#readme",
|
|
38
38
|
"dependencies": {
|
|
39
|
-
"@resolution/atlassian-api-common": "^0.
|
|
39
|
+
"@resolution/atlassian-api-common": "^0.5.0"
|
|
40
40
|
},
|
|
41
41
|
"publishConfig": {
|
|
42
42
|
"access": "public"
|
|
43
43
|
},
|
|
44
|
-
"gitHead": "
|
|
44
|
+
"gitHead": "191b97ebdd6570a60258d3b5a4ac17dfa5377be5"
|
|
45
45
|
}
|