@beauraines/node-helpers 2.6.0 → 2.7.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 CHANGED
@@ -2,6 +2,15 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
4
 
5
+ ## [2.7.0](https://github.com/beauraines/node-helpers/compare/v2.6.1...v2.7.0) (2023-06-14)
6
+
7
+
8
+ ### Features
9
+
10
+ * exports new ADO module ([6dbc0d9](https://github.com/beauraines/node-helpers/commit/6dbc0d966ed4daefaaa8c3ed8e0cdf9368a78d87))
11
+
12
+ ### [2.6.1](https://github.com/beauraines/node-helpers/compare/v2.6.0...v2.6.1) (2023-06-14)
13
+
5
14
  ## [2.6.0](https://github.com/beauraines/node-helpers/compare/v2.5.2...v2.6.0) (2023-06-14)
6
15
 
7
16
 
package/index.js CHANGED
@@ -1,4 +1,5 @@
1
1
 
2
+ const ado = require("./src/ado");
2
3
  const AzureStorage = require("./src/azure")
3
4
  const config = require('./src/config.js')
4
5
  const credentials = require("./src/credentials.js");
@@ -12,6 +13,7 @@ module.exports = {
12
13
  credentials,
13
14
  database,
14
15
  helpers,
15
- jira
16
+ jira,
17
+ ado
16
18
  }
17
19
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@beauraines/node-helpers",
3
- "version": "2.6.0",
3
+ "version": "2.7.0",
4
4
  "description": "Collection of node helpers",
5
5
  "main": "index.js",
6
6
  "scripts": {