@resolution/jira-api-client 0.3.0 → 0.4.1

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 (2) hide show
  1. package/CHANGELOG.md +33 -0
  2. package/package.json +4 -4
package/CHANGELOG.md CHANGED
@@ -3,6 +3,39 @@
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.1](https://bitbucket.org/resolutiongmbh/atlassian-api-clients/compare/v0.4.0...v0.4.1) (2024-06-10)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * remove previous file versions when building ([3ff3a0a](https://bitbucket.org/resolutiongmbh/atlassian-api-clients/commits/3ff3a0a8dde8376aa551fd66d0b4ed1ac040ac79))
12
+
13
+
14
+
15
+
16
+
17
+ # 0.4.0 (2024-06-10)
18
+
19
+
20
+ ### Bug Fixes
21
+
22
+ * automatic publishing ([65c6149](https://bitbucket.org/resolutiongmbh/atlassian-api-clients/commits/65c61497b5e52294203d893229fc6ddbef9f8bb0))
23
+ * correct entry point ([9c6289f](https://bitbucket.org/resolutiongmbh/atlassian-api-clients/commits/9c6289ff7f1cd429383ad92d0c67fe89c2531344))
24
+ * exclude codegen from build ([ad5a787](https://bitbucket.org/resolutiongmbh/atlassian-api-clients/commits/ad5a787f59002450cf411cdf928453c548a0370f))
25
+ * make ChangeDetails fields to and toString nullable ([097e8b0](https://bitbucket.org/resolutiongmbh/atlassian-api-clients/commits/097e8b0189a2bc23601dc193998d22bf5628eea9))
26
+ * remove unnecessary files from the package ([78f2d55](https://bitbucket.org/resolutiongmbh/atlassian-api-clients/commits/78f2d55adfcd5a2db5f5e14faa1598ce5e80cadf))
27
+
28
+
29
+ ### Features
30
+
31
+ * first confluence API version ([d580ceb](https://bitbucket.org/resolutiongmbh/atlassian-api-clients/commits/d580cebbab7334f2290c08a307bea5eed8a372a5))
32
+ * first version with JiraSoftwareApi ([e941fd3](https://bitbucket.org/resolutiongmbh/atlassian-api-clients/commits/e941fd304be3eb7fa59232cb13722c81b0a9c202))
33
+ * initial version ([5c1e2d2](https://bitbucket.org/resolutiongmbh/atlassian-api-clients/commits/5c1e2d295fb3efe134ae9629fd6b5f00dc83d151))
34
+
35
+
36
+
37
+
38
+
6
39
  # [0.3.0](https://bitbucket.org/resolutiongmbh/atlassian-api-clients/compare/@resolution/jira-api-client@0.2.0...@resolution/jira-api-client@0.3.0) (2024-06-07)
7
40
 
8
41
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@resolution/jira-api-client",
3
- "version": "0.3.0",
3
+ "version": "0.4.1",
4
4
  "description": "JIRA Platform & Software API Client based on OpenAPI Schema from Atlassian.",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",
@@ -11,7 +11,7 @@
11
11
  "LICENSE.md"
12
12
  ],
13
13
  "scripts": {
14
- "build": "yarn run -T tsc -p tsconfig.build.json",
14
+ "build": "rm -Rf lib && yarn run -T tsc -p tsconfig.build.json",
15
15
  "check:compare-schemas": "yarn run -T ts-node config/compareSchemas.ts",
16
16
  "lint": "yarn run -T eslint src config",
17
17
  "openapi:codegen": "yarn run -T api-typescript-generator generate config/apiTypescriptGenerator.config.ts",
@@ -35,10 +35,10 @@
35
35
  },
36
36
  "homepage": "https://bitbucket.org/resolutiongmbh/atlassian-api-clients#readme",
37
37
  "dependencies": {
38
- "@resolution/atlassian-api-common": "^0.3.0"
38
+ "@resolution/atlassian-api-common": "^0.4.1"
39
39
  },
40
40
  "publishConfig": {
41
41
  "access": "public"
42
42
  },
43
- "gitHead": "cc8ea333e2d448625607a7150e0718037efb00d1"
43
+ "gitHead": "4b7d1d7e5223f9f2e2d2d3cc141e972b51b1646d"
44
44
  }