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 +4 -0
- package/out/index.d.ts +1 -0
- package/out/index.js +1 -0
- package/out/index.js.map +1 -1
- package/package.json +12 -12
- package/src/index.ts +1 -0
package/CHANGELOG.md
CHANGED
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;
|
|
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.
|
|
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.
|
|
46
|
-
"@types/express": "^4.17.
|
|
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.
|
|
50
|
-
"@typescript-eslint/parser": "^5.
|
|
51
|
-
"ava": "^
|
|
52
|
-
"dotenv": "^16.0.
|
|
53
|
-
"eslint": "^8.
|
|
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.
|
|
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.
|
|
61
|
-
"typedoc": "^0.23.
|
|
60
|
+
"sinon": "^14.0.1",
|
|
61
|
+
"typedoc": "^0.23.19",
|
|
62
62
|
"typedoc-plugin-extras": "^2.3.0",
|
|
63
|
-
"typescript": "^4.8.
|
|
63
|
+
"typescript": "^4.8.4"
|
|
64
64
|
},
|
|
65
65
|
"dependencies": {
|
|
66
66
|
"atlassian-jwt": "^2.0.2",
|
package/src/index.ts
CHANGED