c8osdkjscore
Advanced tools
Comparing version 0.0.0-beta11 to 0.0.0-beta12
{ | ||
"name": "c8osdkjscore", | ||
"version": "0.0.0-beta11", | ||
"version": "0.0.0-beta12", | ||
"description": "convertigo's sdk js core", | ||
@@ -5,0 +5,0 @@ "main": "bundle/index.umd.js", |
@@ -70,2 +70,3 @@ import { C8oBase } from "./c8oBase"; | ||
readonly abstract sdkVersion: string; | ||
readonly coreVersion: string; | ||
constructor(); | ||
@@ -72,0 +73,0 @@ abstract init(c8oSettings?: C8oSettings): Promise<any>; |
@@ -166,2 +166,9 @@ "use strict"; | ||
}); | ||
Object.defineProperty(C8oCore.prototype, "coreVersion", { | ||
get: function () { | ||
return require("../../package.json").version; | ||
}, | ||
enumerable: true, | ||
configurable: true | ||
}); | ||
C8oCore.prototype.finalizeInit = function () { | ||
@@ -168,0 +175,0 @@ var _this = this; |
@@ -268,2 +268,6 @@ import {C8oBase} from "./c8oBase"; | ||
public get coreVersion(): string { | ||
return require("../../package.json").version; | ||
} | ||
/** | ||
@@ -270,0 +274,0 @@ * This is the base object representing a Convertigo Server end point. This object should be instantiated |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
543654
8802