confluence.js 1.6.0 → 1.6.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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Changelog
2
2
 
3
+ ### 1.6.1
4
+
5
+ `AuthenticationService` added to export facade. Thanks to [Andrew McClenaghan](https://github.com/andymac4182) for this improvement.
6
+
3
7
  ### 1.6.0
4
8
 
5
9
  Cloud API:
package/out/index.d.ts CHANGED
@@ -4,6 +4,7 @@ export * from './requestConfig';
4
4
  export * from './callback';
5
5
  export * from './pagination';
6
6
  export * from './utilityTypes';
7
+ export * from './services/authenticationService';
7
8
  export * as Api from './api';
8
9
  export * as Server from './server';
9
10
  export * as Models from './api/models';
package/out/index.js CHANGED
@@ -8,6 +8,7 @@ tslib_1.__exportStar(require("./requestConfig"), exports);
8
8
  tslib_1.__exportStar(require("./callback"), exports);
9
9
  tslib_1.__exportStar(require("./pagination"), exports);
10
10
  tslib_1.__exportStar(require("./utilityTypes"), exports);
11
+ tslib_1.__exportStar(require("./services/authenticationService"), exports);
11
12
  exports.Api = require("./api");
12
13
  exports.Server = require("./server");
13
14
  exports.Models = require("./api/models");
package/out/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;AAAA,oDAA0B;AAC1B,mDAAyB;AACzB,0DAAgC;AAChC,qDAA2B;AAC3B,uDAA6B;AAC7B,yDAA+B;AAE/B,+BAA6B;AAC7B,qCAAmC;AACnC,yCAAuC;AACvC,iDAA+C;AAC/C,kDAAgD;AAChD,0DAAwD"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;AAAA,oDAA0B;AAC1B,mDAAyB;AACzB,0DAAgC;AAChC,qDAA2B;AAC3B,uDAA6B;AAC7B,yDAA+B;AAC/B,2EAAiD;AAEjD,+BAA6B;AAC7B,qCAAmC;AACnC,yCAAuC;AACvC,iDAA+C;AAC/C,kDAAgD;AAChD,0DAAwD"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "confluence.js",
3
- "version": "1.6.0",
3
+ "version": "1.6.1",
4
4
  "description": "confluence.js is a powerful Node.JS/Browser module that allows you to interact with the Confluence API very easily",
5
5
  "author": "Vladislav Tupikin <mrrefactoring@yandex.ru>",
6
6
  "license": "MIT",
@@ -42,25 +42,25 @@
42
42
  "atlassian"
43
43
  ],
44
44
  "devDependencies": {
45
- "@swc-node/register": "^1.5.1",
46
- "@types/express": "^4.17.13",
45
+ "@swc-node/register": "^1.5.4",
46
+ "@types/express": "^4.17.14",
47
47
  "@types/oauth": "^0.9.1",
48
48
  "@types/sinon": "^10.0.13",
49
- "@typescript-eslint/eslint-plugin": "^5.36.2",
50
- "@typescript-eslint/parser": "^5.36.2",
51
- "ava": "^4.3.3",
52
- "dotenv": "^16.0.2",
53
- "eslint": "^8.23.0",
49
+ "@typescript-eslint/eslint-plugin": "^5.41.0",
50
+ "@typescript-eslint/parser": "^5.41.0",
51
+ "ava": "^5.0.1",
52
+ "dotenv": "^16.0.3",
53
+ "eslint": "^8.26.0",
54
54
  "eslint-config-airbnb": "^19.0.4",
55
55
  "eslint-config-airbnb-typescript": "^17.0.0",
56
- "eslint-import-resolver-typescript": "^3.5.1",
56
+ "eslint-import-resolver-typescript": "^3.5.2",
57
57
  "eslint-plugin-import": "^2.26.0",
58
58
  "prettier": "^2.7.1",
59
59
  "prettier-plugin-jsdoc": "^0.4.2",
60
- "sinon": "^14.0.0",
61
- "typedoc": "^0.23.14",
60
+ "sinon": "^14.0.1",
61
+ "typedoc": "^0.23.19",
62
62
  "typedoc-plugin-extras": "^2.3.0",
63
- "typescript": "^4.8.3"
63
+ "typescript": "^4.8.4"
64
64
  },
65
65
  "dependencies": {
66
66
  "atlassian-jwt": "^2.0.2",
package/src/index.ts CHANGED
@@ -4,6 +4,7 @@ export * from './requestConfig';
4
4
  export * from './callback';
5
5
  export * from './pagination';
6
6
  export * from './utilityTypes';
7
+ export * from './services/authenticationService';
7
8
 
8
9
  export * as Api from './api';
9
10
  export * as Server from './server';