@asposecloud/aspose-tasks-cloud 22.7.0 → 22.8.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.
@@ -0,0 +1,6 @@
1
+ export * from './model/model';
2
+ export * from './api';
3
+ export * from './internal/auth';
4
+ export * from './internal/configuration';
5
+ export * from './internal/objectSerializer';
6
+ export * from './internal/requestHelper';
@@ -0,0 +1,23 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
+ };
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("./model/model"), exports);
18
+ __exportStar(require("./api"), exports);
19
+ __exportStar(require("./internal/auth"), exports);
20
+ __exportStar(require("./internal/configuration"), exports);
21
+ __exportStar(require("./internal/objectSerializer"), exports);
22
+ __exportStar(require("./internal/requestHelper"), exports);
23
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,gDAA6B;AAC7B,wCAAqB;AACrB,kDAA+B;AAC/B,2DAAwC;AACxC,8DAA2C;AAC3C,2DAAwC"}
@@ -114,7 +114,7 @@ function invokeApiMethodInternal(requestOptions, confguration, notApplyAuthToReq
114
114
  //headers
115
115
  sa.set("User-Agent", "tasks nodejs sdk");
116
116
  sa.set("x-aspose-client", "nodejs sdk");
117
- sa.set("x-aspose-client-version", "22.7");
117
+ sa.set("x-aspose-client-version", "22.8");
118
118
  if (!requestOptions.headers) {
119
119
  requestOptions.headers = {};
120
120
  }
package/package.json CHANGED
@@ -1,47 +1,47 @@
1
- {
2
- "name": "@asposecloud/aspose-tasks-cloud",
3
- "version": "22.7.0",
4
- "description": "Aspose.Tasks Cloud SDK for Node.js",
5
- "homepage": "https://products.aspose.cloud/tasks",
6
- "readmeFilename": "README.md",
7
- "main": "dist/src/api.js",
8
- "types": "dist/src/api.d.ts",
9
- "scripts": {
10
- "test": "mocha -r ts-node/register test/**/*.ts --no-timeouts",
11
- "compile": "tsc --build tsconfig.json"
12
- },
13
- "keywords": [
14
- "Aspose",
15
- "Cloud",
16
- "Tasks",
17
- "mpp",
18
- "primavera",
19
- "microsoft",
20
- "project"
21
- ],
22
- "author": {
23
- "name": "Ivan Andreychikov"
24
- },
25
- "repository": {
26
- "type": "git",
27
- "url": "https://github.com/aspose-tasks-cloud/aspose-tasks-cloud-node.git"
28
- },
29
- "license": "MIT",
30
- "engines": {
31
- "node": ">=6.15"
32
- },
33
- "devDependencies": {
34
- "@types/chai": "^4.2.3",
35
- "@types/mocha": "^9.1.1",
36
- "@types/request": "^2.48.3",
37
- "chai": "^4.2.0",
38
- "mocha": "^10.0.0",
39
- "request-debug": "^0.2.0",
40
- "ts-node": "^8.4.1",
41
- "typescript": "^3.6.3"
42
- },
43
- "dependencies": {
44
- "request": "^2.88.0",
45
- "superagent": "^3.8.3"
46
- }
47
- }
1
+ {
2
+ "name": "@asposecloud/aspose-tasks-cloud",
3
+ "version": "22.8.0",
4
+ "description": "Aspose.Tasks Cloud SDK for Node.js",
5
+ "homepage": "https://products.aspose.cloud/tasks",
6
+ "readmeFilename": "README.md",
7
+ "main": "dist/src/index.js",
8
+ "types": "dist/src/index.d.ts",
9
+ "scripts": {
10
+ "test": "mocha -r ts-node/register test/**/*.ts --no-timeouts",
11
+ "compile": "tsc --build tsconfig.json"
12
+ },
13
+ "keywords": [
14
+ "Aspose",
15
+ "Cloud",
16
+ "Tasks",
17
+ "mpp",
18
+ "primavera",
19
+ "microsoft",
20
+ "project"
21
+ ],
22
+ "author": {
23
+ "name": "Ivan Andreychikov"
24
+ },
25
+ "repository": {
26
+ "type": "git",
27
+ "url": "https://github.com/aspose-tasks-cloud/aspose-tasks-cloud-node.git"
28
+ },
29
+ "license": "MIT",
30
+ "engines": {
31
+ "node": ">=6.15"
32
+ },
33
+ "devDependencies": {
34
+ "@types/chai": "^4.2.3",
35
+ "@types/mocha": "^9.1.1",
36
+ "@types/request": "^2.48.3",
37
+ "chai": "^4.2.0",
38
+ "mocha": "^10.0.0",
39
+ "request-debug": "^0.2.0",
40
+ "ts-node": "^8.4.1",
41
+ "typescript": "^3.6.3"
42
+ },
43
+ "dependencies": {
44
+ "request": "^2.88.0",
45
+ "superagent": "^3.8.3"
46
+ }
47
+ }