@contrail/flexplm 1.3.0 → 1.3.1-alpha.3e8dbdd
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/cli/commands/compile.d.ts +1 -0
- package/lib/cli/commands/compile.js +71 -0
- package/lib/cli/commands/compile.spec.d.ts +1 -0
- package/lib/cli/commands/compile.spec.js +80 -0
- package/lib/cli/commands/create.d.ts +1 -0
- package/lib/cli/commands/create.js +75 -0
- package/lib/cli/commands/create.spec.d.ts +1 -0
- package/lib/cli/commands/create.spec.js +78 -0
- package/lib/cli/commands/upload.d.ts +10 -0
- package/lib/cli/commands/upload.js +226 -0
- package/lib/cli/commands/upload.spec.d.ts +1 -0
- package/lib/cli/commands/upload.spec.js +88 -0
- package/lib/cli/index.d.ts +2 -0
- package/lib/cli/index.js +64 -0
- package/lib/cli/index.spec.d.ts +1 -0
- package/lib/cli/index.spec.js +79 -0
- package/lib/cli/template/mapping-template.ts.template +62 -0
- package/lib/entity-processor/base-entity-processor.d.ts +89 -42
- package/lib/entity-processor/base-entity-processor.js +438 -385
- package/lib/entity-processor/base-entity-processor.spec.d.ts +1 -1
- package/lib/entity-processor/base-entity-processor.spec.js +398 -397
- package/lib/flexplm-request.d.ts +3 -3
- package/lib/flexplm-request.js +34 -34
- package/lib/flexplm-utils.d.ts +5 -5
- package/lib/flexplm-utils.js +33 -33
- package/lib/flexplm-utils.spec.d.ts +1 -1
- package/lib/flexplm-utils.spec.js +26 -26
- package/lib/index.d.ts +23 -22
- package/lib/index.js +39 -38
- package/lib/interfaces/interfaces.d.ts +105 -105
- package/lib/interfaces/interfaces.js +2 -2
- package/lib/interfaces/item-family-changes.d.ts +20 -20
- package/lib/interfaces/item-family-changes.js +56 -56
- package/lib/interfaces/mapping-file.d.ts +460 -0
- package/lib/interfaces/mapping-file.js +2 -0
- package/lib/interfaces/publish-change-data.d.ts +19 -19
- package/lib/interfaces/publish-change-data.js +32 -32
- package/lib/publish/base-process-publish-assortment-callback.d.ts +9 -9
- package/lib/publish/base-process-publish-assortment-callback.js +38 -38
- package/lib/publish/base-process-publish-assortment.d.ts +118 -93
- package/lib/publish/base-process-publish-assortment.js +998 -944
- package/lib/publish/base-process-publish-assortment.spec.d.ts +1 -1
- package/lib/publish/base-process-publish-assortment.spec.js +1688 -1670
- package/lib/publish/mockData.d.ts +1389 -1389
- package/lib/publish/mockData.js +4524 -4519
- package/lib/transform/identifier-conversion-spec-mockData.js +472 -444
- package/lib/transform/identifier-conversion.d.ts +51 -15
- package/lib/transform/identifier-conversion.js +248 -212
- package/lib/transform/identifier-conversion.spec.d.ts +1 -1
- package/lib/transform/identifier-conversion.spec.js +343 -339
- package/lib/util/config-defaults.d.ts +8 -8
- package/lib/util/config-defaults.js +88 -85
- package/lib/util/config-defaults.spec.d.ts +1 -1
- package/lib/util/config-defaults.spec.js +302 -293
- package/lib/util/data-converter-spec-mockData.js +219 -205
- package/lib/util/data-converter.d.ts +136 -39
- package/lib/util/data-converter.js +718 -592
- package/lib/util/data-converter.spec.d.ts +1 -1
- package/lib/util/data-converter.spec.js +906 -904
- package/lib/util/error-response-object.d.ts +9 -4
- package/lib/util/error-response-object.js +54 -47
- package/lib/util/error-response-object.spec.d.ts +1 -1
- package/lib/util/error-response-object.spec.js +99 -99
- package/lib/util/event-short-message-status.d.ts +19 -19
- package/lib/util/event-short-message-status.js +24 -23
- package/lib/util/federation.d.ts +15 -15
- package/lib/util/federation.js +157 -149
- package/lib/util/flexplm-connect.d.ts +29 -22
- package/lib/util/flexplm-connect.js +190 -176
- package/lib/util/flexplm-connect.spec.d.ts +1 -1
- package/lib/util/flexplm-connect.spec.js +88 -88
- package/lib/util/logger-config.d.ts +1 -1
- package/lib/util/logger-config.js +27 -26
- package/lib/util/map-util-spec-mockData.js +219 -205
- package/lib/util/map-utils.d.ts +33 -6
- package/lib/util/map-utils.js +42 -15
- package/lib/util/map-utils.spec.d.ts +1 -1
- package/lib/util/map-utils.spec.js +89 -89
- package/lib/util/mockData.d.ts +80 -80
- package/lib/util/mockData.js +103 -103
- package/lib/util/thumbnail-util.d.ts +55 -34
- package/lib/util/thumbnail-util.js +242 -215
- package/lib/util/thumbnail-util.spec.d.ts +1 -1
- package/lib/util/thumbnail-util.spec.js +440 -434
- package/lib/util/type-conversion-utils-spec-mockData.js +259 -259
- package/lib/util/type-conversion-utils.d.ts +163 -23
- package/lib/util/type-conversion-utils.js +408 -265
- package/lib/util/type-conversion-utils.spec.d.ts +1 -1
- package/lib/util/type-conversion-utils.spec.js +868 -868
- package/lib/util/type-defaults.d.ts +74 -16
- package/lib/util/type-defaults.js +279 -221
- package/lib/util/type-defaults.spec.d.ts +1 -1
- package/lib/util/type-defaults.spec.js +516 -516
- package/lib/util/type-utils.d.ts +34 -13
- package/lib/util/type-utils.js +137 -114
- package/lib/util/type-utils.spec.d.ts +1 -1
- package/lib/util/type-utils.spec.js +192 -190
- package/package.json +21 -6
- package/scripts/copy-template.js +10 -0
- package/.claude/settings.local.json +0 -8
- package/.github/pull_request_template.md +0 -31
- package/.github/workflows/flexplm-lib.yml +0 -27
- package/.github/workflows/publish-to-npm.yml +0 -124
- package/CHANGELOG.md +0 -32
- package/publish.bat +0 -5
- package/publish.sh +0 -5
- package/src/entity-processor/base-entity-processor.spec.ts +0 -460
- package/src/entity-processor/base-entity-processor.ts +0 -515
- package/src/flexplm-request.ts +0 -28
- package/src/flexplm-utils.spec.ts +0 -27
- package/src/flexplm-utils.ts +0 -29
- package/src/index.ts +0 -22
- package/src/interfaces/interfaces.ts +0 -122
- package/src/interfaces/item-family-changes.ts +0 -67
- package/src/interfaces/publish-change-data.ts +0 -43
- package/src/publish/base-process-publish-assortment-callback.ts +0 -50
- package/src/publish/base-process-publish-assortment.spec.ts +0 -1992
- package/src/publish/base-process-publish-assortment.ts +0 -1134
- package/src/publish/mockData.ts +0 -4561
- package/src/transform/identifier-conversion-spec-mockData.ts +0 -496
- package/src/transform/identifier-conversion.spec.ts +0 -354
- package/src/transform/identifier-conversion.ts +0 -282
- package/src/util/config-defaults.spec.ts +0 -350
- package/src/util/config-defaults.ts +0 -93
- package/src/util/data-converter-spec-mockData.ts +0 -231
- package/src/util/data-converter.spec.ts +0 -1041
- package/src/util/data-converter.ts +0 -762
- package/src/util/error-response-object.spec.ts +0 -116
- package/src/util/error-response-object.ts +0 -50
- package/src/util/event-short-message-status.ts +0 -22
- package/src/util/federation.ts +0 -172
- package/src/util/flexplm-connect.spec.ts +0 -132
- package/src/util/flexplm-connect.ts +0 -208
- package/src/util/logger-config.ts +0 -20
- package/src/util/map-util-spec-mockData.ts +0 -231
- package/src/util/map-utils.spec.ts +0 -103
- package/src/util/map-utils.ts +0 -41
- package/src/util/mockData.ts +0 -101
- package/src/util/thumbnail-util.spec.ts +0 -508
- package/src/util/thumbnail-util.ts +0 -272
- package/src/util/type-conversion-utils-spec-mockData.ts +0 -271
- package/src/util/type-conversion-utils.spec.ts +0 -968
- package/src/util/type-conversion-utils.ts +0 -460
- package/src/util/type-defaults.spec.ts +0 -669
- package/src/util/type-defaults.ts +0 -281
- package/src/util/type-utils.spec.ts +0 -227
- package/src/util/type-utils.ts +0 -144
- package/tsconfig.json +0 -29
- package/tslint.json +0 -57
package/lib/flexplm-request.d.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export declare class FlexPLMRequest {
|
|
2
|
-
static request(path: string, data: any): Promise<any>;
|
|
3
|
-
}
|
|
1
|
+
export declare class FlexPLMRequest {
|
|
2
|
+
static request(path: string, data: any): Promise<any>;
|
|
3
|
+
}
|
package/lib/flexplm-request.js
CHANGED
|
@@ -1,34 +1,34 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
-
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
-
};
|
|
5
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
-
exports.FlexPLMRequest = void 0;
|
|
7
|
-
const axios_1 = __importDefault(require("axios"));
|
|
8
|
-
const BASE_URL = 'https://PP-2006031951wo.portal.ptc.io/Windchill/servlet/rest/cdee';
|
|
9
|
-
const BASE_CONFIG = {
|
|
10
|
-
method: 'POST',
|
|
11
|
-
headers: {
|
|
12
|
-
'Accept': 'application/json',
|
|
13
|
-
'Content-Type': 'application/json',
|
|
14
|
-
'CSRF_NONCE': '2OaLp+0dWNBtrkTwtdDC491zaacu6Hykvqi/lpl6bZgJ/QXBrK/B1J5FErMkmAmktr/I3thcbO1Xn3HJ7Ne/l9kpaedUmn7H75Xey4ZbNLsenW+anM3vxIZ7ELosk3k=',
|
|
15
|
-
'Authorization': 'Basic d2NhZG1pbjpSZXRhaWwyMDIwLQ==',
|
|
16
|
-
'Cookie': 'JSESSIONID=36D5B3C74C1F963C6C73E9AF5B6BDA78.tomcat1; JSESSIONID=B8090C802D8548EA773C97F5886FAB79.tomcat1',
|
|
17
|
-
},
|
|
18
|
-
};
|
|
19
|
-
class FlexPLMRequest {
|
|
20
|
-
static async request(path, data) {
|
|
21
|
-
const config = Object.assign({}, BASE_CONFIG);
|
|
22
|
-
config.url = BASE_URL + path;
|
|
23
|
-
config.data = data;
|
|
24
|
-
try {
|
|
25
|
-
const resp = await (0, axios_1.default)(config);
|
|
26
|
-
return Promise.resolve(resp.data);
|
|
27
|
-
}
|
|
28
|
-
catch (error) {
|
|
29
|
-
console.error(`${FlexPLMRequest} error: ${error.message}`);
|
|
30
|
-
return Promise.resolve(null);
|
|
31
|
-
}
|
|
32
|
-
}
|
|
33
|
-
}
|
|
34
|
-
exports.FlexPLMRequest = FlexPLMRequest;
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.FlexPLMRequest = void 0;
|
|
7
|
+
const axios_1 = __importDefault(require("axios"));
|
|
8
|
+
const BASE_URL = 'https://PP-2006031951wo.portal.ptc.io/Windchill/servlet/rest/cdee';
|
|
9
|
+
const BASE_CONFIG = {
|
|
10
|
+
method: 'POST',
|
|
11
|
+
headers: {
|
|
12
|
+
'Accept': 'application/json',
|
|
13
|
+
'Content-Type': 'application/json',
|
|
14
|
+
'CSRF_NONCE': '2OaLp+0dWNBtrkTwtdDC491zaacu6Hykvqi/lpl6bZgJ/QXBrK/B1J5FErMkmAmktr/I3thcbO1Xn3HJ7Ne/l9kpaedUmn7H75Xey4ZbNLsenW+anM3vxIZ7ELosk3k=',
|
|
15
|
+
'Authorization': 'Basic d2NhZG1pbjpSZXRhaWwyMDIwLQ==',
|
|
16
|
+
'Cookie': 'JSESSIONID=36D5B3C74C1F963C6C73E9AF5B6BDA78.tomcat1; JSESSIONID=B8090C802D8548EA773C97F5886FAB79.tomcat1',
|
|
17
|
+
},
|
|
18
|
+
};
|
|
19
|
+
class FlexPLMRequest {
|
|
20
|
+
static async request(path, data) {
|
|
21
|
+
const config = Object.assign({}, BASE_CONFIG);
|
|
22
|
+
config.url = BASE_URL + path;
|
|
23
|
+
config.data = data;
|
|
24
|
+
try {
|
|
25
|
+
const resp = await (0, axios_1.default)(config);
|
|
26
|
+
return Promise.resolve(resp.data);
|
|
27
|
+
}
|
|
28
|
+
catch (error) {
|
|
29
|
+
console.error(`${FlexPLMRequest} error: ${error.message}`);
|
|
30
|
+
return Promise.resolve(null);
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
exports.FlexPLMRequest = FlexPLMRequest;
|
package/lib/flexplm-utils.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
export declare class FlexPLMUtils {
|
|
2
|
-
static convertTypePath: (path: string) => string;
|
|
3
|
-
static getParentTypePath: (path: string) => string;
|
|
4
|
-
static computeLevelFromPath(path: string): number;
|
|
5
|
-
}
|
|
1
|
+
export declare class FlexPLMUtils {
|
|
2
|
+
static convertTypePath: (path: string) => string;
|
|
3
|
+
static getParentTypePath: (path: string) => string;
|
|
4
|
+
static computeLevelFromPath(path: string): number;
|
|
5
|
+
}
|
package/lib/flexplm-utils.js
CHANGED
|
@@ -1,33 +1,33 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.FlexPLMUtils = void 0;
|
|
4
|
-
class FlexPLMUtils {
|
|
5
|
-
static computeLevelFromPath(path) {
|
|
6
|
-
return (path.match(/:/g) || []).length + 1;
|
|
7
|
-
}
|
|
8
|
-
}
|
|
9
|
-
exports.FlexPLMUtils = FlexPLMUtils;
|
|
10
|
-
FlexPLMUtils.convertTypePath = (path) => {
|
|
11
|
-
if (!path) {
|
|
12
|
-
return null;
|
|
13
|
-
}
|
|
14
|
-
let newPath = path;
|
|
15
|
-
while (newPath.indexOf('\\') > 1) {
|
|
16
|
-
newPath = newPath.replace('\\', ':');
|
|
17
|
-
}
|
|
18
|
-
while (newPath.indexOf('[') > 1) {
|
|
19
|
-
newPath = newPath.replace('[', '*');
|
|
20
|
-
}
|
|
21
|
-
while (newPath.indexOf(']') > 1) {
|
|
22
|
-
newPath = newPath.replace(']', '*');
|
|
23
|
-
}
|
|
24
|
-
while (newPath.indexOf(' ') > 1) {
|
|
25
|
-
newPath = newPath.replace(' ', '_');
|
|
26
|
-
}
|
|
27
|
-
newPath = newPath.toLowerCase();
|
|
28
|
-
return newPath;
|
|
29
|
-
};
|
|
30
|
-
FlexPLMUtils.getParentTypePath = (path) => {
|
|
31
|
-
const newPath = FlexPLMUtils.convertTypePath(path);
|
|
32
|
-
return (!newPath || newPath.indexOf(':') < 0) ? null : newPath.substring(0, newPath.lastIndexOf(':'));
|
|
33
|
-
};
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.FlexPLMUtils = void 0;
|
|
4
|
+
class FlexPLMUtils {
|
|
5
|
+
static computeLevelFromPath(path) {
|
|
6
|
+
return (path.match(/:/g) || []).length + 1;
|
|
7
|
+
}
|
|
8
|
+
}
|
|
9
|
+
exports.FlexPLMUtils = FlexPLMUtils;
|
|
10
|
+
FlexPLMUtils.convertTypePath = (path) => {
|
|
11
|
+
if (!path) {
|
|
12
|
+
return null;
|
|
13
|
+
}
|
|
14
|
+
let newPath = path;
|
|
15
|
+
while (newPath.indexOf('\\') > 1) {
|
|
16
|
+
newPath = newPath.replace('\\', ':');
|
|
17
|
+
}
|
|
18
|
+
while (newPath.indexOf('[') > 1) {
|
|
19
|
+
newPath = newPath.replace('[', '*');
|
|
20
|
+
}
|
|
21
|
+
while (newPath.indexOf(']') > 1) {
|
|
22
|
+
newPath = newPath.replace(']', '*');
|
|
23
|
+
}
|
|
24
|
+
while (newPath.indexOf(' ') > 1) {
|
|
25
|
+
newPath = newPath.replace(' ', '_');
|
|
26
|
+
}
|
|
27
|
+
newPath = newPath.toLowerCase();
|
|
28
|
+
return newPath;
|
|
29
|
+
};
|
|
30
|
+
FlexPLMUtils.getParentTypePath = (path) => {
|
|
31
|
+
const newPath = FlexPLMUtils.convertTypePath(path);
|
|
32
|
+
return (!newPath || newPath.indexOf(':') < 0) ? null : newPath.substring(0, newPath.lastIndexOf(':'));
|
|
33
|
+
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export {};
|
|
1
|
+
export {};
|
|
@@ -1,26 +1,26 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
const flexplm_utils_1 = require("./flexplm-utils");
|
|
4
|
-
describe('Types Controller', () => {
|
|
5
|
-
beforeEach(async () => {
|
|
6
|
-
});
|
|
7
|
-
it('should convert a type path', () => {
|
|
8
|
-
expect(flexplm_utils_1.FlexPLMUtils.convertTypePath('Product')).toEqual('product');
|
|
9
|
-
expect(flexplm_utils_1.FlexPLMUtils.convertTypePath('Product\\Apparel')).toEqual('product:apparel');
|
|
10
|
-
expect(flexplm_utils_1.FlexPLMUtils.convertTypePath('Product\\Skin Care')).toEqual('product:skin_care');
|
|
11
|
-
expect(flexplm_utils_1.FlexPLMUtils.convertTypePath('Product\\Apparel\\Shirt')).toEqual('product:apparel:shirt');
|
|
12
|
-
expect(flexplm_utils_1.FlexPLMUtils.convertTypePath('Product\\Apparel\\[Shirt]')).toEqual('product:apparel:*shirt*');
|
|
13
|
-
expect(flexplm_utils_1.FlexPLMUtils.convertTypePath('')).toBeNull();
|
|
14
|
-
});
|
|
15
|
-
it('should compute level in tree', () => {
|
|
16
|
-
expect(flexplm_utils_1.FlexPLMUtils.computeLevelFromPath('product')).toEqual(1);
|
|
17
|
-
expect(flexplm_utils_1.FlexPLMUtils.computeLevelFromPath('product:apparel')).toEqual(2);
|
|
18
|
-
expect(flexplm_utils_1.FlexPLMUtils.computeLevelFromPath('product:apparel:dress:mini')).toEqual(4);
|
|
19
|
-
});
|
|
20
|
-
it('should get a parent type path', () => {
|
|
21
|
-
expect(flexplm_utils_1.FlexPLMUtils.getParentTypePath('product')).toBeNull();
|
|
22
|
-
expect(flexplm_utils_1.FlexPLMUtils.getParentTypePath('product:apparel')).toEqual('product');
|
|
23
|
-
expect(flexplm_utils_1.FlexPLMUtils.getParentTypePath('product:apparel:stuff')).toEqual('product:apparel');
|
|
24
|
-
expect(flexplm_utils_1.FlexPLMUtils.getParentTypePath('Product\\Apparel')).toEqual('product');
|
|
25
|
-
});
|
|
26
|
-
});
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const flexplm_utils_1 = require("./flexplm-utils");
|
|
4
|
+
describe('Types Controller', () => {
|
|
5
|
+
beforeEach(async () => {
|
|
6
|
+
});
|
|
7
|
+
it('should convert a type path', () => {
|
|
8
|
+
expect(flexplm_utils_1.FlexPLMUtils.convertTypePath('Product')).toEqual('product');
|
|
9
|
+
expect(flexplm_utils_1.FlexPLMUtils.convertTypePath('Product\\Apparel')).toEqual('product:apparel');
|
|
10
|
+
expect(flexplm_utils_1.FlexPLMUtils.convertTypePath('Product\\Skin Care')).toEqual('product:skin_care');
|
|
11
|
+
expect(flexplm_utils_1.FlexPLMUtils.convertTypePath('Product\\Apparel\\Shirt')).toEqual('product:apparel:shirt');
|
|
12
|
+
expect(flexplm_utils_1.FlexPLMUtils.convertTypePath('Product\\Apparel\\[Shirt]')).toEqual('product:apparel:*shirt*');
|
|
13
|
+
expect(flexplm_utils_1.FlexPLMUtils.convertTypePath('')).toBeNull();
|
|
14
|
+
});
|
|
15
|
+
it('should compute level in tree', () => {
|
|
16
|
+
expect(flexplm_utils_1.FlexPLMUtils.computeLevelFromPath('product')).toEqual(1);
|
|
17
|
+
expect(flexplm_utils_1.FlexPLMUtils.computeLevelFromPath('product:apparel')).toEqual(2);
|
|
18
|
+
expect(flexplm_utils_1.FlexPLMUtils.computeLevelFromPath('product:apparel:dress:mini')).toEqual(4);
|
|
19
|
+
});
|
|
20
|
+
it('should get a parent type path', () => {
|
|
21
|
+
expect(flexplm_utils_1.FlexPLMUtils.getParentTypePath('product')).toBeNull();
|
|
22
|
+
expect(flexplm_utils_1.FlexPLMUtils.getParentTypePath('product:apparel')).toEqual('product');
|
|
23
|
+
expect(flexplm_utils_1.FlexPLMUtils.getParentTypePath('product:apparel:stuff')).toEqual('product:apparel');
|
|
24
|
+
expect(flexplm_utils_1.FlexPLMUtils.getParentTypePath('Product\\Apparel')).toEqual('product');
|
|
25
|
+
});
|
|
26
|
+
});
|
package/lib/index.d.ts
CHANGED
|
@@ -1,22 +1,23 @@
|
|
|
1
|
-
export * from './flexplm-request';
|
|
2
|
-
export * from './flexplm-utils';
|
|
3
|
-
export * from './util/config-defaults';
|
|
4
|
-
export * from './util/data-converter';
|
|
5
|
-
export * from './util/error-response-object';
|
|
6
|
-
export * from './util/event-short-message-status';
|
|
7
|
-
export * from './util/federation';
|
|
8
|
-
export * from './util/flexplm-connect';
|
|
9
|
-
export * from './interfaces/interfaces';
|
|
10
|
-
export * from './util/logger-config';
|
|
11
|
-
export * from './util/thumbnail-util';
|
|
12
|
-
export * from './util/type-conversion-utils';
|
|
13
|
-
export * from './util/type-defaults';
|
|
14
|
-
export * from './util/type-utils';
|
|
15
|
-
export * from './util/map-utils';
|
|
16
|
-
export * from './interfaces/interfaces';
|
|
17
|
-
export * from './interfaces/item-family-changes';
|
|
18
|
-
export * from './interfaces/publish-change-data';
|
|
19
|
-
export * from './
|
|
20
|
-
export * from './publish/base-process-publish-assortment
|
|
21
|
-
export * from './
|
|
22
|
-
export * from './
|
|
1
|
+
export * from './flexplm-request';
|
|
2
|
+
export * from './flexplm-utils';
|
|
3
|
+
export * from './util/config-defaults';
|
|
4
|
+
export * from './util/data-converter';
|
|
5
|
+
export * from './util/error-response-object';
|
|
6
|
+
export * from './util/event-short-message-status';
|
|
7
|
+
export * from './util/federation';
|
|
8
|
+
export * from './util/flexplm-connect';
|
|
9
|
+
export * from './interfaces/interfaces';
|
|
10
|
+
export * from './util/logger-config';
|
|
11
|
+
export * from './util/thumbnail-util';
|
|
12
|
+
export * from './util/type-conversion-utils';
|
|
13
|
+
export * from './util/type-defaults';
|
|
14
|
+
export * from './util/type-utils';
|
|
15
|
+
export * from './util/map-utils';
|
|
16
|
+
export * from './interfaces/interfaces';
|
|
17
|
+
export * from './interfaces/item-family-changes';
|
|
18
|
+
export * from './interfaces/publish-change-data';
|
|
19
|
+
export * from './interfaces/mapping-file';
|
|
20
|
+
export * from './publish/base-process-publish-assortment';
|
|
21
|
+
export * from './publish/base-process-publish-assortment-callback';
|
|
22
|
+
export * from './entity-processor/base-entity-processor';
|
|
23
|
+
export * from './transform/identifier-conversion';
|
package/lib/index.js
CHANGED
|
@@ -1,38 +1,39 @@
|
|
|
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("./flexplm-request"), exports);
|
|
18
|
-
__exportStar(require("./flexplm-utils"), exports);
|
|
19
|
-
__exportStar(require("./util/config-defaults"), exports);
|
|
20
|
-
__exportStar(require("./util/data-converter"), exports);
|
|
21
|
-
__exportStar(require("./util/error-response-object"), exports);
|
|
22
|
-
__exportStar(require("./util/event-short-message-status"), exports);
|
|
23
|
-
__exportStar(require("./util/federation"), exports);
|
|
24
|
-
__exportStar(require("./util/flexplm-connect"), exports);
|
|
25
|
-
__exportStar(require("./interfaces/interfaces"), exports);
|
|
26
|
-
__exportStar(require("./util/logger-config"), exports);
|
|
27
|
-
__exportStar(require("./util/thumbnail-util"), exports);
|
|
28
|
-
__exportStar(require("./util/type-conversion-utils"), exports);
|
|
29
|
-
__exportStar(require("./util/type-defaults"), exports);
|
|
30
|
-
__exportStar(require("./util/type-utils"), exports);
|
|
31
|
-
__exportStar(require("./util/map-utils"), exports);
|
|
32
|
-
__exportStar(require("./interfaces/interfaces"), exports);
|
|
33
|
-
__exportStar(require("./interfaces/item-family-changes"), exports);
|
|
34
|
-
__exportStar(require("./interfaces/publish-change-data"), exports);
|
|
35
|
-
__exportStar(require("./
|
|
36
|
-
__exportStar(require("./publish/base-process-publish-assortment
|
|
37
|
-
__exportStar(require("./
|
|
38
|
-
__exportStar(require("./
|
|
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("./flexplm-request"), exports);
|
|
18
|
+
__exportStar(require("./flexplm-utils"), exports);
|
|
19
|
+
__exportStar(require("./util/config-defaults"), exports);
|
|
20
|
+
__exportStar(require("./util/data-converter"), exports);
|
|
21
|
+
__exportStar(require("./util/error-response-object"), exports);
|
|
22
|
+
__exportStar(require("./util/event-short-message-status"), exports);
|
|
23
|
+
__exportStar(require("./util/federation"), exports);
|
|
24
|
+
__exportStar(require("./util/flexplm-connect"), exports);
|
|
25
|
+
__exportStar(require("./interfaces/interfaces"), exports);
|
|
26
|
+
__exportStar(require("./util/logger-config"), exports);
|
|
27
|
+
__exportStar(require("./util/thumbnail-util"), exports);
|
|
28
|
+
__exportStar(require("./util/type-conversion-utils"), exports);
|
|
29
|
+
__exportStar(require("./util/type-defaults"), exports);
|
|
30
|
+
__exportStar(require("./util/type-utils"), exports);
|
|
31
|
+
__exportStar(require("./util/map-utils"), exports);
|
|
32
|
+
__exportStar(require("./interfaces/interfaces"), exports);
|
|
33
|
+
__exportStar(require("./interfaces/item-family-changes"), exports);
|
|
34
|
+
__exportStar(require("./interfaces/publish-change-data"), exports);
|
|
35
|
+
__exportStar(require("./interfaces/mapping-file"), exports);
|
|
36
|
+
__exportStar(require("./publish/base-process-publish-assortment"), exports);
|
|
37
|
+
__exportStar(require("./publish/base-process-publish-assortment-callback"), exports);
|
|
38
|
+
__exportStar(require("./entity-processor/base-entity-processor"), exports);
|
|
39
|
+
__exportStar(require("./transform/identifier-conversion"), exports);
|
|
@@ -1,105 +1,105 @@
|
|
|
1
|
-
export interface FCConfig {
|
|
2
|
-
apiKey?: string;
|
|
3
|
-
orgSlug?: string;
|
|
4
|
-
action?: string;
|
|
5
|
-
configFile?: string;
|
|
6
|
-
eventObjectClassParam?: string;
|
|
7
|
-
eventFlexTypePathParam?: string;
|
|
8
|
-
flexplmConnect?: any;
|
|
9
|
-
taskId?: string;
|
|
10
|
-
apiHost: string;
|
|
11
|
-
userName(): string;
|
|
12
|
-
password(): string;
|
|
13
|
-
plmEnviornment?: string;
|
|
14
|
-
urlContext: string;
|
|
15
|
-
vibeEventEndpoint: string;
|
|
16
|
-
csrfEndpoint: string;
|
|
17
|
-
itemPreDevelopmentLifecycleStages: string[];
|
|
18
|
-
identifierAtts?: {
|
|
19
|
-
[key: string]: string[];
|
|
20
|
-
};
|
|
21
|
-
propertyMapping?: object;
|
|
22
|
-
[key: string]: any;
|
|
23
|
-
}
|
|
24
|
-
export interface ProductFederation {
|
|
25
|
-
entityReference: string;
|
|
26
|
-
objectClass: 'LCSProduct';
|
|
27
|
-
federatedId?: string;
|
|
28
|
-
flexPLMTypePath?: string;
|
|
29
|
-
vibeIQIdentifier?: string;
|
|
30
|
-
}
|
|
31
|
-
export interface ProductData extends ProductFederation {
|
|
32
|
-
data: object;
|
|
33
|
-
productSeason: {
|
|
34
|
-
data: object;
|
|
35
|
-
};
|
|
36
|
-
}
|
|
37
|
-
export interface SeasonFederation {
|
|
38
|
-
entityReference: string;
|
|
39
|
-
objectClass: 'LCSSeason';
|
|
40
|
-
flexPLMSeasonName?: string;
|
|
41
|
-
federationId?: string;
|
|
42
|
-
flexPLMTypePath?: string;
|
|
43
|
-
}
|
|
44
|
-
export interface SeasonGroupFederation {
|
|
45
|
-
entityReference: string;
|
|
46
|
-
objectClass: 'SeasonGroup';
|
|
47
|
-
seasonGroupName?: string;
|
|
48
|
-
federationId?: string;
|
|
49
|
-
flexPLMTypePath?: string;
|
|
50
|
-
}
|
|
51
|
-
export interface SkuFederation {
|
|
52
|
-
entityReference: string;
|
|
53
|
-
objectClass: 'LCSSKU';
|
|
54
|
-
LCSProduct?: ProductFederation;
|
|
55
|
-
federatedId?: string;
|
|
56
|
-
flexPLMTypePath?: string;
|
|
57
|
-
vibeIQIdentifier?: string;
|
|
58
|
-
}
|
|
59
|
-
export interface SkuData extends SkuFederation {
|
|
60
|
-
data: object;
|
|
61
|
-
}
|
|
62
|
-
export interface PayloadType {
|
|
63
|
-
eventType: string;
|
|
64
|
-
objectClass: string;
|
|
65
|
-
}
|
|
66
|
-
export interface AsyncPayloadType extends PayloadType {
|
|
67
|
-
taskId: string;
|
|
68
|
-
}
|
|
69
|
-
export interface AsyncEventsPayloadType extends AsyncPayloadType {
|
|
70
|
-
events?: PayloadType[];
|
|
71
|
-
eventsFileId?: string;
|
|
72
|
-
eventsDownloadLink?: string;
|
|
73
|
-
eventsAdminDownloadLink?: string;
|
|
74
|
-
}
|
|
75
|
-
export interface EntityPayloadType extends PayloadType {
|
|
76
|
-
entityReference: string;
|
|
77
|
-
federatedId?: string;
|
|
78
|
-
flexPLMTypePath?: string;
|
|
79
|
-
data: object;
|
|
80
|
-
}
|
|
81
|
-
export interface ItemPayloadType extends EntityPayloadType {
|
|
82
|
-
LCSProduct?: ProductFederation;
|
|
83
|
-
}
|
|
84
|
-
export interface SeasonalPayload extends EntityPayloadType {
|
|
85
|
-
eventType: 'UPSERT_ON_SEASON' | 'UPDATE_ON_SEASON' | 'REMOVE_FROM_SEASON';
|
|
86
|
-
objectClass: 'LCSProductSeasonLink' | 'LCSSKUSeasonLink';
|
|
87
|
-
LCSSeason: SeasonFederation;
|
|
88
|
-
LCSProduct?: ProductFederation;
|
|
89
|
-
LCSSKU?: SkuFederation;
|
|
90
|
-
carriedFromSeason?: object;
|
|
91
|
-
}
|
|
92
|
-
export interface ExportPayloadType extends AsyncPayloadType {
|
|
93
|
-
flexPLMTypePath: string;
|
|
94
|
-
}
|
|
95
|
-
export interface FederationRecord {
|
|
96
|
-
reference: string;
|
|
97
|
-
mappedReference: string;
|
|
98
|
-
appIdentifier: string;
|
|
99
|
-
federationSchema: string;
|
|
100
|
-
}
|
|
101
|
-
export interface FlexPLMResponseData {
|
|
102
|
-
status: number;
|
|
103
|
-
data?: object;
|
|
104
|
-
error?: string;
|
|
105
|
-
}
|
|
1
|
+
export interface FCConfig {
|
|
2
|
+
apiKey?: string;
|
|
3
|
+
orgSlug?: string;
|
|
4
|
+
action?: string;
|
|
5
|
+
configFile?: string;
|
|
6
|
+
eventObjectClassParam?: string;
|
|
7
|
+
eventFlexTypePathParam?: string;
|
|
8
|
+
flexplmConnect?: any;
|
|
9
|
+
taskId?: string;
|
|
10
|
+
apiHost: string;
|
|
11
|
+
userName(): string;
|
|
12
|
+
password(): string;
|
|
13
|
+
plmEnviornment?: string;
|
|
14
|
+
urlContext: string;
|
|
15
|
+
vibeEventEndpoint: string;
|
|
16
|
+
csrfEndpoint: string;
|
|
17
|
+
itemPreDevelopmentLifecycleStages: string[];
|
|
18
|
+
identifierAtts?: {
|
|
19
|
+
[key: string]: string[];
|
|
20
|
+
};
|
|
21
|
+
propertyMapping?: object;
|
|
22
|
+
[key: string]: any;
|
|
23
|
+
}
|
|
24
|
+
export interface ProductFederation {
|
|
25
|
+
entityReference: string;
|
|
26
|
+
objectClass: 'LCSProduct';
|
|
27
|
+
federatedId?: string;
|
|
28
|
+
flexPLMTypePath?: string;
|
|
29
|
+
vibeIQIdentifier?: string;
|
|
30
|
+
}
|
|
31
|
+
export interface ProductData extends ProductFederation {
|
|
32
|
+
data: object;
|
|
33
|
+
productSeason: {
|
|
34
|
+
data: object;
|
|
35
|
+
};
|
|
36
|
+
}
|
|
37
|
+
export interface SeasonFederation {
|
|
38
|
+
entityReference: string;
|
|
39
|
+
objectClass: 'LCSSeason';
|
|
40
|
+
flexPLMSeasonName?: string;
|
|
41
|
+
federationId?: string;
|
|
42
|
+
flexPLMTypePath?: string;
|
|
43
|
+
}
|
|
44
|
+
export interface SeasonGroupFederation {
|
|
45
|
+
entityReference: string;
|
|
46
|
+
objectClass: 'SeasonGroup';
|
|
47
|
+
seasonGroupName?: string;
|
|
48
|
+
federationId?: string;
|
|
49
|
+
flexPLMTypePath?: string;
|
|
50
|
+
}
|
|
51
|
+
export interface SkuFederation {
|
|
52
|
+
entityReference: string;
|
|
53
|
+
objectClass: 'LCSSKU';
|
|
54
|
+
LCSProduct?: ProductFederation;
|
|
55
|
+
federatedId?: string;
|
|
56
|
+
flexPLMTypePath?: string;
|
|
57
|
+
vibeIQIdentifier?: string;
|
|
58
|
+
}
|
|
59
|
+
export interface SkuData extends SkuFederation {
|
|
60
|
+
data: object;
|
|
61
|
+
}
|
|
62
|
+
export interface PayloadType {
|
|
63
|
+
eventType: string;
|
|
64
|
+
objectClass: string;
|
|
65
|
+
}
|
|
66
|
+
export interface AsyncPayloadType extends PayloadType {
|
|
67
|
+
taskId: string;
|
|
68
|
+
}
|
|
69
|
+
export interface AsyncEventsPayloadType extends AsyncPayloadType {
|
|
70
|
+
events?: PayloadType[];
|
|
71
|
+
eventsFileId?: string;
|
|
72
|
+
eventsDownloadLink?: string;
|
|
73
|
+
eventsAdminDownloadLink?: string;
|
|
74
|
+
}
|
|
75
|
+
export interface EntityPayloadType extends PayloadType {
|
|
76
|
+
entityReference: string;
|
|
77
|
+
federatedId?: string;
|
|
78
|
+
flexPLMTypePath?: string;
|
|
79
|
+
data: object;
|
|
80
|
+
}
|
|
81
|
+
export interface ItemPayloadType extends EntityPayloadType {
|
|
82
|
+
LCSProduct?: ProductFederation;
|
|
83
|
+
}
|
|
84
|
+
export interface SeasonalPayload extends EntityPayloadType {
|
|
85
|
+
eventType: 'UPSERT_ON_SEASON' | 'UPDATE_ON_SEASON' | 'REMOVE_FROM_SEASON';
|
|
86
|
+
objectClass: 'LCSProductSeasonLink' | 'LCSSKUSeasonLink';
|
|
87
|
+
LCSSeason: SeasonFederation;
|
|
88
|
+
LCSProduct?: ProductFederation;
|
|
89
|
+
LCSSKU?: SkuFederation;
|
|
90
|
+
carriedFromSeason?: object;
|
|
91
|
+
}
|
|
92
|
+
export interface ExportPayloadType extends AsyncPayloadType {
|
|
93
|
+
flexPLMTypePath: string;
|
|
94
|
+
}
|
|
95
|
+
export interface FederationRecord {
|
|
96
|
+
reference: string;
|
|
97
|
+
mappedReference: string;
|
|
98
|
+
appIdentifier: string;
|
|
99
|
+
federationSchema: string;
|
|
100
|
+
}
|
|
101
|
+
export interface FlexPLMResponseData {
|
|
102
|
+
status: number;
|
|
103
|
+
data?: object;
|
|
104
|
+
error?: string;
|
|
105
|
+
}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -1,20 +1,20 @@
|
|
|
1
|
-
export declare class ItemFamilyChanges {
|
|
2
|
-
private _itemFamilyId;
|
|
3
|
-
get itemFamilyId(): string;
|
|
4
|
-
private _sinceDate;
|
|
5
|
-
get sinceDate(): Date;
|
|
6
|
-
familyAdd: boolean;
|
|
7
|
-
familyDelete: boolean;
|
|
8
|
-
familyUpdate: boolean;
|
|
9
|
-
familyItemRemoved: boolean;
|
|
10
|
-
itemFamilyObject: any;
|
|
11
|
-
colorAdds: string[];
|
|
12
|
-
colorDeletes: string[];
|
|
13
|
-
colorUpdates: string[];
|
|
14
|
-
colorUnchanged: string[];
|
|
15
|
-
assortmentItemFullChangeMap: Map<string, any>;
|
|
16
|
-
assortmentItemDeleteMap: Map<string, any>;
|
|
17
|
-
itemToFederatedIdMapping: Map<string, string>;
|
|
18
|
-
constructor(itemFamilyId: string, sinceDate: Date);
|
|
19
|
-
toString(): string;
|
|
20
|
-
}
|
|
1
|
+
export declare class ItemFamilyChanges {
|
|
2
|
+
private _itemFamilyId;
|
|
3
|
+
get itemFamilyId(): string;
|
|
4
|
+
private _sinceDate;
|
|
5
|
+
get sinceDate(): Date;
|
|
6
|
+
familyAdd: boolean;
|
|
7
|
+
familyDelete: boolean;
|
|
8
|
+
familyUpdate: boolean;
|
|
9
|
+
familyItemRemoved: boolean;
|
|
10
|
+
itemFamilyObject: any;
|
|
11
|
+
colorAdds: string[];
|
|
12
|
+
colorDeletes: string[];
|
|
13
|
+
colorUpdates: string[];
|
|
14
|
+
colorUnchanged: string[];
|
|
15
|
+
assortmentItemFullChangeMap: Map<string, any>;
|
|
16
|
+
assortmentItemDeleteMap: Map<string, any>;
|
|
17
|
+
itemToFederatedIdMapping: Map<string, string>;
|
|
18
|
+
constructor(itemFamilyId: string, sinceDate: Date);
|
|
19
|
+
toString(): string;
|
|
20
|
+
}
|