@contrail/flexplm 1.0.8 → 1.0.9
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/lib/flexplm-request.js +4 -1
- package/lib/util/federation.js +4 -1
- package/package.json +1 -1
package/lib/flexplm-request.js
CHANGED
|
@@ -1,7 +1,10 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
2
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
6
|
exports.FlexPLMRequest = void 0;
|
|
4
|
-
const axios_1 = require("axios");
|
|
7
|
+
const axios_1 = __importDefault(require("axios"));
|
|
5
8
|
const BASE_URL = 'https://PP-2006031951wo.portal.ptc.io/Windchill/servlet/rest/cdee';
|
|
6
9
|
const BASE_CONFIG = {
|
|
7
10
|
method: 'POST',
|
package/lib/util/federation.js
CHANGED
|
@@ -1,8 +1,11 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
2
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
6
|
exports.Federation = void 0;
|
|
4
7
|
const sdk_1 = require("@contrail/sdk");
|
|
5
|
-
const p_limit_1 = require("p-limit");
|
|
8
|
+
const p_limit_1 = __importDefault(require("p-limit"));
|
|
6
9
|
const limit = (0, p_limit_1.default)(30);
|
|
7
10
|
const FED_CONFIG = {
|
|
8
11
|
appIdentifier: '@vibeiq/flexplm-connector',
|