netlicensing-client 1.2.29 → 1.2.30
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.
|
@@ -9514,7 +9514,7 @@ function setup(env) {
|
|
|
9514
9514
|
|
|
9515
9515
|
/**
|
|
9516
9516
|
* Selects a color for a debug namespace
|
|
9517
|
-
* @param {String} namespace The namespace string for the
|
|
9517
|
+
* @param {String} namespace The namespace string for the debug instance to be colored
|
|
9518
9518
|
* @return {Number|String} An ANSI color code for the given namespace
|
|
9519
9519
|
* @api private
|
|
9520
9520
|
*/
|
|
@@ -9659,7 +9659,7 @@ function setup(env) {
|
|
|
9659
9659
|
namespaces = split[i].replace(/\*/g, '.*?');
|
|
9660
9660
|
|
|
9661
9661
|
if (namespaces[0] === '-') {
|
|
9662
|
-
createDebug.skips.push(new RegExp('^' + namespaces.
|
|
9662
|
+
createDebug.skips.push(new RegExp('^' + namespaces.slice(1) + '$'));
|
|
9663
9663
|
} else {
|
|
9664
9664
|
createDebug.names.push(new RegExp('^' + namespaces + '$'));
|
|
9665
9665
|
}
|
|
@@ -10651,12 +10651,12 @@ module.exports.wrap = wrap;
|
|
|
10651
10651
|
|
|
10652
10652
|
"use strict";
|
|
10653
10653
|
|
|
10654
|
-
|
|
10655
|
-
|
|
10654
|
+
|
|
10655
|
+
module.exports = (flag, argv = process.argv) => {
|
|
10656
10656
|
const prefix = flag.startsWith('-') ? '' : (flag.length === 1 ? '-' : '--');
|
|
10657
|
-
const
|
|
10658
|
-
const
|
|
10659
|
-
return
|
|
10657
|
+
const position = argv.indexOf(prefix + flag);
|
|
10658
|
+
const terminatorPosition = argv.indexOf('--');
|
|
10659
|
+
return position !== -1 && (terminatorPosition === -1 || position < terminatorPosition);
|
|
10660
10660
|
};
|
|
10661
10661
|
|
|
10662
10662
|
|
|
@@ -11598,23 +11598,32 @@ try {
|
|
|
11598
11598
|
"use strict";
|
|
11599
11599
|
|
|
11600
11600
|
const os = __webpack_require__(2037);
|
|
11601
|
+
const tty = __webpack_require__(6224);
|
|
11601
11602
|
const hasFlag = __webpack_require__(6560);
|
|
11602
11603
|
|
|
11603
|
-
const env = process
|
|
11604
|
+
const {env} = process;
|
|
11604
11605
|
|
|
11605
11606
|
let forceColor;
|
|
11606
11607
|
if (hasFlag('no-color') ||
|
|
11607
11608
|
hasFlag('no-colors') ||
|
|
11608
|
-
hasFlag('color=false')
|
|
11609
|
-
|
|
11609
|
+
hasFlag('color=false') ||
|
|
11610
|
+
hasFlag('color=never')) {
|
|
11611
|
+
forceColor = 0;
|
|
11610
11612
|
} else if (hasFlag('color') ||
|
|
11611
11613
|
hasFlag('colors') ||
|
|
11612
11614
|
hasFlag('color=true') ||
|
|
11613
11615
|
hasFlag('color=always')) {
|
|
11614
|
-
forceColor =
|
|
11616
|
+
forceColor = 1;
|
|
11615
11617
|
}
|
|
11618
|
+
|
|
11616
11619
|
if ('FORCE_COLOR' in env) {
|
|
11617
|
-
|
|
11620
|
+
if (env.FORCE_COLOR === 'true') {
|
|
11621
|
+
forceColor = 1;
|
|
11622
|
+
} else if (env.FORCE_COLOR === 'false') {
|
|
11623
|
+
forceColor = 0;
|
|
11624
|
+
} else {
|
|
11625
|
+
forceColor = env.FORCE_COLOR.length === 0 ? 1 : Math.min(parseInt(env.FORCE_COLOR, 10), 3);
|
|
11626
|
+
}
|
|
11618
11627
|
}
|
|
11619
11628
|
|
|
11620
11629
|
function translateLevel(level) {
|
|
@@ -11630,8 +11639,8 @@ function translateLevel(level) {
|
|
|
11630
11639
|
};
|
|
11631
11640
|
}
|
|
11632
11641
|
|
|
11633
|
-
function supportsColor(
|
|
11634
|
-
if (forceColor ===
|
|
11642
|
+
function supportsColor(haveStream, streamIsTTY) {
|
|
11643
|
+
if (forceColor === 0) {
|
|
11635
11644
|
return 0;
|
|
11636
11645
|
}
|
|
11637
11646
|
|
|
@@ -11645,22 +11654,21 @@ function supportsColor(stream) {
|
|
|
11645
11654
|
return 2;
|
|
11646
11655
|
}
|
|
11647
11656
|
|
|
11648
|
-
if (
|
|
11657
|
+
if (haveStream && !streamIsTTY && forceColor === undefined) {
|
|
11649
11658
|
return 0;
|
|
11650
11659
|
}
|
|
11651
11660
|
|
|
11652
|
-
const min = forceColor
|
|
11661
|
+
const min = forceColor || 0;
|
|
11662
|
+
|
|
11663
|
+
if (env.TERM === 'dumb') {
|
|
11664
|
+
return min;
|
|
11665
|
+
}
|
|
11653
11666
|
|
|
11654
11667
|
if (process.platform === 'win32') {
|
|
11655
|
-
//
|
|
11656
|
-
//
|
|
11657
|
-
// won't work. However, here we target Node.js 8 at minimum as it is an LTS
|
|
11658
|
-
// release, and Node.js 7 is not. Windows 10 build 10586 is the first Windows
|
|
11659
|
-
// release that supports 256 colors. Windows 10 build 14931 is the first release
|
|
11660
|
-
// that supports 16m/TrueColor.
|
|
11668
|
+
// Windows 10 build 10586 is the first Windows release that supports 256 colors.
|
|
11669
|
+
// Windows 10 build 14931 is the first release that supports 16m/TrueColor.
|
|
11661
11670
|
const osRelease = os.release().split('.');
|
|
11662
11671
|
if (
|
|
11663
|
-
Number(process.versions.node.split('.')[0]) >= 8 &&
|
|
11664
11672
|
Number(osRelease[0]) >= 10 &&
|
|
11665
11673
|
Number(osRelease[2]) >= 10586
|
|
11666
11674
|
) {
|
|
@@ -11671,7 +11679,7 @@ function supportsColor(stream) {
|
|
|
11671
11679
|
}
|
|
11672
11680
|
|
|
11673
11681
|
if ('CI' in env) {
|
|
11674
|
-
if (['TRAVIS', 'CIRCLECI', 'APPVEYOR', 'GITLAB_CI'].some(sign => sign in env) || env.CI_NAME === 'codeship') {
|
|
11682
|
+
if (['TRAVIS', 'CIRCLECI', 'APPVEYOR', 'GITLAB_CI', 'GITHUB_ACTIONS', 'BUILDKITE'].some(sign => sign in env) || env.CI_NAME === 'codeship') {
|
|
11675
11683
|
return 1;
|
|
11676
11684
|
}
|
|
11677
11685
|
|
|
@@ -11710,22 +11718,18 @@ function supportsColor(stream) {
|
|
|
11710
11718
|
return 1;
|
|
11711
11719
|
}
|
|
11712
11720
|
|
|
11713
|
-
if (env.TERM === 'dumb') {
|
|
11714
|
-
return min;
|
|
11715
|
-
}
|
|
11716
|
-
|
|
11717
11721
|
return min;
|
|
11718
11722
|
}
|
|
11719
11723
|
|
|
11720
11724
|
function getSupportLevel(stream) {
|
|
11721
|
-
const level = supportsColor(stream);
|
|
11725
|
+
const level = supportsColor(stream, stream && stream.isTTY);
|
|
11722
11726
|
return translateLevel(level);
|
|
11723
11727
|
}
|
|
11724
11728
|
|
|
11725
11729
|
module.exports = {
|
|
11726
11730
|
supportsColor: getSupportLevel,
|
|
11727
|
-
stdout:
|
|
11728
|
-
stderr:
|
|
11731
|
+
stdout: translateLevel(supportsColor(true, tty.isatty(1))),
|
|
11732
|
+
stderr: translateLevel(supportsColor(true, tty.isatty(2)))
|
|
11729
11733
|
};
|
|
11730
11734
|
|
|
11731
11735
|
|
|
@@ -11807,7 +11811,7 @@ module.exports = require("zlib");
|
|
|
11807
11811
|
/***/ ((module) => {
|
|
11808
11812
|
|
|
11809
11813
|
"use strict";
|
|
11810
|
-
module.exports = JSON.parse('{"name":"netlicensing-client","version":"1.2.
|
|
11814
|
+
module.exports = JSON.parse('{"name":"netlicensing-client","version":"1.2.29","description":"JavaScript Wrapper for Labs64 NetLicensing RESTful API","keywords":["labs64","netlicensing","licensing","licensing-as-a-service","license","license-management","software-license","client","restful","restful-api","javascript","wrapper","api","client"],"license":"Apache-2.0","author":"Labs64 GmbH","homepage":"https://netlicensing.io","repository":{"type":"git","url":"https://github.com/Labs64/NetLicensingClient-javascript"},"bugs":{"url":"https://github.com/Labs64/NetLicensingClient-javascript/issues"},"contributors":[{"name":"Ready Brown","email":"ready.brown@hotmail.de","url":"https://github.com/r-brown"},{"name":"Viacheslav Rudkovskiy","email":"viachaslau.rudkovski@labs64.de","url":"https://github.com/v-rudkovskiy"},{"name":"Andrei Yushkevich","email":"yushkevich@me.com","url":"https://github.com/yushkevich"}],"main":"dist/netlicensing-client.js","files":["dist"],"scripts":{"build":"node build/build.cjs","release":"npm run build && npm run test","dev":"webpack --progress --watch --config build/webpack.dev.conf.cjs","test":"karma start test/karma.conf.js --single-run","test-mocha":"webpack --config build/webpack.test.conf.cjs","test-for-travis":"karma start test/karma.conf.js --single-run --browsers Firefox","lint":"eslint --ext .js,.vue src test"},"dependencies":{"axios":"^0.26.1","btoa":"^1.2.1","es6-promise":"^4.2.8"},"devDependencies":{"@babel/core":"^7.17.8","@babel/plugin-proposal-class-properties":"^7.16.7","@babel/plugin-proposal-decorators":"^7.17.8","@babel/plugin-proposal-export-namespace-from":"^7.16.7","@babel/plugin-proposal-function-sent":"^7.16.7","@babel/plugin-proposal-json-strings":"^7.16.7","@babel/plugin-proposal-numeric-separator":"^7.16.7","@babel/plugin-proposal-throw-expressions":"^7.16.7","@babel/plugin-syntax-dynamic-import":"^7.8.3","@babel/plugin-syntax-import-meta":"^7.10.4","@babel/plugin-transform-modules-commonjs":"^7.17.7","@babel/plugin-transform-runtime":"^7.17.0","@babel/preset-env":"^7.16.11","@babel/runtime":"^7.17.8","axios-mock-adapter":"^1.20.0","babel-eslint":"^10.1.0","babel-loader":"^8.2.2","chalk":"^4.1.2","eslint":"^8.12.0","eslint-config-airbnb-base":"^15.0.0","eslint-friendly-formatter":"^4.0.1","eslint-import-resolver-webpack":"^0.13.1","eslint-plugin-import":"^2.25.4","eslint-plugin-jasmine":"^4.1.3","eslint-webpack-plugin":"^3.1.1","faker":"^5.5.3","is-docker":"^2.2.1","jasmine":"^4.0.2","jasmine-core":"^4.0.1","karma":"^6.3.17","karma-chrome-launcher":"^3.1.0","karma-firefox-launcher":"^2.1.2","karma-jasmine":"^4.0.2","karma-sourcemap-loader":"^0.3.7","karma-spec-reporter":"0.0.33","karma-webpack":"^5.0.0","lodash":"^4.17.21","ora":"^5.4.1","rimraf":"^3.0.2","terser-webpack-plugin":"^5.3.1","webpack":"^5.70.0","webpack-cli":"^4.9.2","webpack-merge":"^5.8.0"},"engines":{"node":">= 12.0.0","npm":">= 6.0.0"},"browserslist":["> 1%","last 2 versions","not ie <= 10"]}');
|
|
11811
11815
|
|
|
11812
11816
|
/***/ })
|
|
11813
11817
|
|
|
@@ -11850,7 +11854,252 @@ var _interopRequireDefault = __webpack_require__(5318);
|
|
|
11850
11854
|
Object.defineProperty(exports, "__esModule", ({
|
|
11851
11855
|
value: true
|
|
11852
11856
|
}));
|
|
11853
|
-
exports
|
|
11857
|
+
Object.defineProperty(exports, "BaseEntity", ({
|
|
11858
|
+
enumerable: true,
|
|
11859
|
+
get: function get() {
|
|
11860
|
+
return _BaseEntity.default;
|
|
11861
|
+
}
|
|
11862
|
+
}));
|
|
11863
|
+
Object.defineProperty(exports, "CastsUtils", ({
|
|
11864
|
+
enumerable: true,
|
|
11865
|
+
get: function get() {
|
|
11866
|
+
return _CastsUtils.default;
|
|
11867
|
+
}
|
|
11868
|
+
}));
|
|
11869
|
+
Object.defineProperty(exports, "CheckUtils", ({
|
|
11870
|
+
enumerable: true,
|
|
11871
|
+
get: function get() {
|
|
11872
|
+
return _CheckUtils.default;
|
|
11873
|
+
}
|
|
11874
|
+
}));
|
|
11875
|
+
Object.defineProperty(exports, "Constants", ({
|
|
11876
|
+
enumerable: true,
|
|
11877
|
+
get: function get() {
|
|
11878
|
+
return _Constants.default;
|
|
11879
|
+
}
|
|
11880
|
+
}));
|
|
11881
|
+
Object.defineProperty(exports, "Context", ({
|
|
11882
|
+
enumerable: true,
|
|
11883
|
+
get: function get() {
|
|
11884
|
+
return _Context.default;
|
|
11885
|
+
}
|
|
11886
|
+
}));
|
|
11887
|
+
Object.defineProperty(exports, "Country", ({
|
|
11888
|
+
enumerable: true,
|
|
11889
|
+
get: function get() {
|
|
11890
|
+
return _Country.default;
|
|
11891
|
+
}
|
|
11892
|
+
}));
|
|
11893
|
+
Object.defineProperty(exports, "FilterUtils", ({
|
|
11894
|
+
enumerable: true,
|
|
11895
|
+
get: function get() {
|
|
11896
|
+
return _FilterUtils.default;
|
|
11897
|
+
}
|
|
11898
|
+
}));
|
|
11899
|
+
Object.defineProperty(exports, "License", ({
|
|
11900
|
+
enumerable: true,
|
|
11901
|
+
get: function get() {
|
|
11902
|
+
return _License.default;
|
|
11903
|
+
}
|
|
11904
|
+
}));
|
|
11905
|
+
Object.defineProperty(exports, "LicenseService", ({
|
|
11906
|
+
enumerable: true,
|
|
11907
|
+
get: function get() {
|
|
11908
|
+
return _LicenseService.default;
|
|
11909
|
+
}
|
|
11910
|
+
}));
|
|
11911
|
+
Object.defineProperty(exports, "LicenseTemplate", ({
|
|
11912
|
+
enumerable: true,
|
|
11913
|
+
get: function get() {
|
|
11914
|
+
return _LicenseTemplate.default;
|
|
11915
|
+
}
|
|
11916
|
+
}));
|
|
11917
|
+
Object.defineProperty(exports, "LicenseTemplateService", ({
|
|
11918
|
+
enumerable: true,
|
|
11919
|
+
get: function get() {
|
|
11920
|
+
return _LicenseTemplateService.default;
|
|
11921
|
+
}
|
|
11922
|
+
}));
|
|
11923
|
+
Object.defineProperty(exports, "LicenseTransactionJoin", ({
|
|
11924
|
+
enumerable: true,
|
|
11925
|
+
get: function get() {
|
|
11926
|
+
return _LicenseTransactionJoin.default;
|
|
11927
|
+
}
|
|
11928
|
+
}));
|
|
11929
|
+
Object.defineProperty(exports, "Licensee", ({
|
|
11930
|
+
enumerable: true,
|
|
11931
|
+
get: function get() {
|
|
11932
|
+
return _Licensee.default;
|
|
11933
|
+
}
|
|
11934
|
+
}));
|
|
11935
|
+
Object.defineProperty(exports, "LicenseeService", ({
|
|
11936
|
+
enumerable: true,
|
|
11937
|
+
get: function get() {
|
|
11938
|
+
return _LicenseeService.default;
|
|
11939
|
+
}
|
|
11940
|
+
}));
|
|
11941
|
+
Object.defineProperty(exports, "NlicError", ({
|
|
11942
|
+
enumerable: true,
|
|
11943
|
+
get: function get() {
|
|
11944
|
+
return _NlicError.default;
|
|
11945
|
+
}
|
|
11946
|
+
}));
|
|
11947
|
+
Object.defineProperty(exports, "Page", ({
|
|
11948
|
+
enumerable: true,
|
|
11949
|
+
get: function get() {
|
|
11950
|
+
return _Page.default;
|
|
11951
|
+
}
|
|
11952
|
+
}));
|
|
11953
|
+
Object.defineProperty(exports, "PaymentMethod", ({
|
|
11954
|
+
enumerable: true,
|
|
11955
|
+
get: function get() {
|
|
11956
|
+
return _PaymentMethod.default;
|
|
11957
|
+
}
|
|
11958
|
+
}));
|
|
11959
|
+
Object.defineProperty(exports, "PaymentMethodService", ({
|
|
11960
|
+
enumerable: true,
|
|
11961
|
+
get: function get() {
|
|
11962
|
+
return _PaymentMethodService.default;
|
|
11963
|
+
}
|
|
11964
|
+
}));
|
|
11965
|
+
Object.defineProperty(exports, "Product", ({
|
|
11966
|
+
enumerable: true,
|
|
11967
|
+
get: function get() {
|
|
11968
|
+
return _Product.default;
|
|
11969
|
+
}
|
|
11970
|
+
}));
|
|
11971
|
+
Object.defineProperty(exports, "ProductDiscount", ({
|
|
11972
|
+
enumerable: true,
|
|
11973
|
+
get: function get() {
|
|
11974
|
+
return _ProductDiscount.default;
|
|
11975
|
+
}
|
|
11976
|
+
}));
|
|
11977
|
+
Object.defineProperty(exports, "ProductModule", ({
|
|
11978
|
+
enumerable: true,
|
|
11979
|
+
get: function get() {
|
|
11980
|
+
return _ProductModule.default;
|
|
11981
|
+
}
|
|
11982
|
+
}));
|
|
11983
|
+
Object.defineProperty(exports, "ProductModuleService", ({
|
|
11984
|
+
enumerable: true,
|
|
11985
|
+
get: function get() {
|
|
11986
|
+
return _ProductModuleService.default;
|
|
11987
|
+
}
|
|
11988
|
+
}));
|
|
11989
|
+
Object.defineProperty(exports, "ProductService", ({
|
|
11990
|
+
enumerable: true,
|
|
11991
|
+
get: function get() {
|
|
11992
|
+
return _ProductService.default;
|
|
11993
|
+
}
|
|
11994
|
+
}));
|
|
11995
|
+
Object.defineProperty(exports, "Service", ({
|
|
11996
|
+
enumerable: true,
|
|
11997
|
+
get: function get() {
|
|
11998
|
+
return _Service.default;
|
|
11999
|
+
}
|
|
12000
|
+
}));
|
|
12001
|
+
Object.defineProperty(exports, "Token", ({
|
|
12002
|
+
enumerable: true,
|
|
12003
|
+
get: function get() {
|
|
12004
|
+
return _Token.default;
|
|
12005
|
+
}
|
|
12006
|
+
}));
|
|
12007
|
+
Object.defineProperty(exports, "TokenService", ({
|
|
12008
|
+
enumerable: true,
|
|
12009
|
+
get: function get() {
|
|
12010
|
+
return _TokenService.default;
|
|
12011
|
+
}
|
|
12012
|
+
}));
|
|
12013
|
+
Object.defineProperty(exports, "Transaction", ({
|
|
12014
|
+
enumerable: true,
|
|
12015
|
+
get: function get() {
|
|
12016
|
+
return _Transaction.default;
|
|
12017
|
+
}
|
|
12018
|
+
}));
|
|
12019
|
+
Object.defineProperty(exports, "TransactionService", ({
|
|
12020
|
+
enumerable: true,
|
|
12021
|
+
get: function get() {
|
|
12022
|
+
return _TransactionService.default;
|
|
12023
|
+
}
|
|
12024
|
+
}));
|
|
12025
|
+
Object.defineProperty(exports, "UtilityService", ({
|
|
12026
|
+
enumerable: true,
|
|
12027
|
+
get: function get() {
|
|
12028
|
+
return _UtilityService.default;
|
|
12029
|
+
}
|
|
12030
|
+
}));
|
|
12031
|
+
Object.defineProperty(exports, "ValidationParameters", ({
|
|
12032
|
+
enumerable: true,
|
|
12033
|
+
get: function get() {
|
|
12034
|
+
return _ValidationParameters.default;
|
|
12035
|
+
}
|
|
12036
|
+
}));
|
|
12037
|
+
Object.defineProperty(exports, "ValidationResults", ({
|
|
12038
|
+
enumerable: true,
|
|
12039
|
+
get: function get() {
|
|
12040
|
+
return _ValidationResults.default;
|
|
12041
|
+
}
|
|
12042
|
+
}));
|
|
12043
|
+
Object.defineProperty(exports, "itemToCountry", ({
|
|
12044
|
+
enumerable: true,
|
|
12045
|
+
get: function get() {
|
|
12046
|
+
return _itemToCountry.default;
|
|
12047
|
+
}
|
|
12048
|
+
}));
|
|
12049
|
+
Object.defineProperty(exports, "itemToLicense", ({
|
|
12050
|
+
enumerable: true,
|
|
12051
|
+
get: function get() {
|
|
12052
|
+
return _itemToLicense.default;
|
|
12053
|
+
}
|
|
12054
|
+
}));
|
|
12055
|
+
Object.defineProperty(exports, "itemToLicenseTemplate", ({
|
|
12056
|
+
enumerable: true,
|
|
12057
|
+
get: function get() {
|
|
12058
|
+
return _itemToLicenseTemplate.default;
|
|
12059
|
+
}
|
|
12060
|
+
}));
|
|
12061
|
+
Object.defineProperty(exports, "itemToLicensee", ({
|
|
12062
|
+
enumerable: true,
|
|
12063
|
+
get: function get() {
|
|
12064
|
+
return _itemToLicensee.default;
|
|
12065
|
+
}
|
|
12066
|
+
}));
|
|
12067
|
+
Object.defineProperty(exports, "itemToObject", ({
|
|
12068
|
+
enumerable: true,
|
|
12069
|
+
get: function get() {
|
|
12070
|
+
return _itemToObject.default;
|
|
12071
|
+
}
|
|
12072
|
+
}));
|
|
12073
|
+
Object.defineProperty(exports, "itemToPaymentMethod", ({
|
|
12074
|
+
enumerable: true,
|
|
12075
|
+
get: function get() {
|
|
12076
|
+
return _itemToPaymentMethod.default;
|
|
12077
|
+
}
|
|
12078
|
+
}));
|
|
12079
|
+
Object.defineProperty(exports, "itemToProduct", ({
|
|
12080
|
+
enumerable: true,
|
|
12081
|
+
get: function get() {
|
|
12082
|
+
return _itemToProduct.default;
|
|
12083
|
+
}
|
|
12084
|
+
}));
|
|
12085
|
+
Object.defineProperty(exports, "itemToProductModule", ({
|
|
12086
|
+
enumerable: true,
|
|
12087
|
+
get: function get() {
|
|
12088
|
+
return _itemToProductModule.default;
|
|
12089
|
+
}
|
|
12090
|
+
}));
|
|
12091
|
+
Object.defineProperty(exports, "itemToToken", ({
|
|
12092
|
+
enumerable: true,
|
|
12093
|
+
get: function get() {
|
|
12094
|
+
return _itemToToken.default;
|
|
12095
|
+
}
|
|
12096
|
+
}));
|
|
12097
|
+
Object.defineProperty(exports, "itemToTransaction", ({
|
|
12098
|
+
enumerable: true,
|
|
12099
|
+
get: function get() {
|
|
12100
|
+
return _itemToTransaction.default;
|
|
12101
|
+
}
|
|
12102
|
+
}));
|
|
11854
12103
|
|
|
11855
12104
|
var _Constants = _interopRequireDefault(__webpack_require__(1480));
|
|
11856
12105
|
|
|
@@ -11933,69 +12182,6 @@ var _CheckUtils = _interopRequireDefault(__webpack_require__(5661));
|
|
|
11933
12182
|
var _FilterUtils = _interopRequireDefault(__webpack_require__(3093));
|
|
11934
12183
|
|
|
11935
12184
|
var _NlicError = _interopRequireDefault(__webpack_require__(2986));
|
|
11936
|
-
|
|
11937
|
-
// Constants
|
|
11938
|
-
// VO
|
|
11939
|
-
// Services
|
|
11940
|
-
// Entities
|
|
11941
|
-
// Converters
|
|
11942
|
-
// Utils
|
|
11943
|
-
// Errors
|
|
11944
|
-
// Create the default instance to be exported
|
|
11945
|
-
var NetLicensing = {
|
|
11946
|
-
// Constants
|
|
11947
|
-
Constants: _Constants.default,
|
|
11948
|
-
// Expose VO
|
|
11949
|
-
Context: _Context.default,
|
|
11950
|
-
Page: _Page.default,
|
|
11951
|
-
ValidationParameters: _ValidationParameters.default,
|
|
11952
|
-
ValidationResults: _ValidationResults.default,
|
|
11953
|
-
// Expose Services
|
|
11954
|
-
Service: _Service.default,
|
|
11955
|
-
LicenseeService: _LicenseeService.default,
|
|
11956
|
-
LicenseService: _LicenseService.default,
|
|
11957
|
-
LicenseTemplateService: _LicenseTemplateService.default,
|
|
11958
|
-
PaymentMethodService: _PaymentMethodService.default,
|
|
11959
|
-
ProductModuleService: _ProductModuleService.default,
|
|
11960
|
-
ProductService: _ProductService.default,
|
|
11961
|
-
TokenService: _TokenService.default,
|
|
11962
|
-
TransactionService: _TransactionService.default,
|
|
11963
|
-
UtilityService: _UtilityService.default,
|
|
11964
|
-
// Expose Entities
|
|
11965
|
-
BaseEntity: _BaseEntity.default,
|
|
11966
|
-
Country: _Country.default,
|
|
11967
|
-
License: _License.default,
|
|
11968
|
-
Licensee: _Licensee.default,
|
|
11969
|
-
LicenseTemplate: _LicenseTemplate.default,
|
|
11970
|
-
PaymentMethod: _PaymentMethod.default,
|
|
11971
|
-
Product: _Product.default,
|
|
11972
|
-
ProductDiscount: _ProductDiscount.default,
|
|
11973
|
-
ProductModule: _ProductModule.default,
|
|
11974
|
-
Token: _Token.default,
|
|
11975
|
-
Transaction: _Transaction.default,
|
|
11976
|
-
LicenseTransactionJoin: _LicenseTransactionJoin.default,
|
|
11977
|
-
// Expose Converters
|
|
11978
|
-
itemToCountry: _itemToCountry.default,
|
|
11979
|
-
itemToLicense: _itemToLicense.default,
|
|
11980
|
-
itemToLicensee: _itemToLicensee.default,
|
|
11981
|
-
itemToLicenseTemplate: _itemToLicenseTemplate.default,
|
|
11982
|
-
itemToObject: _itemToObject.default,
|
|
11983
|
-
itemToPaymentMethod: _itemToPaymentMethod.default,
|
|
11984
|
-
itemToProduct: _itemToProduct.default,
|
|
11985
|
-
itemToProductModule: _itemToProductModule.default,
|
|
11986
|
-
itemToToken: _itemToToken.default,
|
|
11987
|
-
itemToTransaction: _itemToTransaction.default,
|
|
11988
|
-
// Expose Utils
|
|
11989
|
-
CastsUtils: _CastsUtils.default,
|
|
11990
|
-
CheckUtils: _CheckUtils.default,
|
|
11991
|
-
FilterUtils: _FilterUtils.default,
|
|
11992
|
-
// Errors
|
|
11993
|
-
NlicError: _NlicError.default
|
|
11994
|
-
}; // module.exports = NetLicensing;
|
|
11995
|
-
// Allow use of default import syntax in TypeScript
|
|
11996
|
-
|
|
11997
|
-
var _default = NetLicensing;
|
|
11998
|
-
exports["default"] = _default;
|
|
11999
12185
|
})();
|
|
12000
12186
|
|
|
12001
12187
|
/******/ return __webpack_exports__;
|