tetrons 2.3.46 → 2.3.47
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/dist/index.cjs +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -17008,7 +17008,7 @@ async function initializeTetrons(apiKey) {
|
|
|
17008
17008
|
if (!API_VALID) {
|
|
17009
17009
|
throw new Error("API Key is not valid.");
|
|
17010
17010
|
}
|
|
17011
|
-
const { getOrCreateInstallDate, getRemainingDays } = await Promise.resolve().then(() => _interopRequireWildcard(require("./licenseUtils
|
|
17011
|
+
const { getOrCreateInstallDate, getRemainingDays } = await Promise.resolve().then(() => _interopRequireWildcard(require(new URL("./internal/licenseUtils.ts", import.meta.url).href)));
|
|
17012
17012
|
const validityDays = API_VERSION === "free" ? 14 : 30;
|
|
17013
17013
|
const installedAt = getOrCreateInstallDate();
|
|
17014
17014
|
const remainingDays = getRemainingDays(installedAt, validityDays);
|
package/dist/index.mjs
CHANGED
|
@@ -17008,7 +17008,7 @@ async function initializeTetrons(apiKey) {
|
|
|
17008
17008
|
if (!API_VALID) {
|
|
17009
17009
|
throw new Error("API Key is not valid.");
|
|
17010
17010
|
}
|
|
17011
|
-
const { getOrCreateInstallDate, getRemainingDays } = await import("./licenseUtils
|
|
17011
|
+
const { getOrCreateInstallDate, getRemainingDays } = await import(new URL("./internal/licenseUtils.ts", import.meta.url).href);
|
|
17012
17012
|
const validityDays = API_VERSION === "free" ? 14 : 30;
|
|
17013
17013
|
const installedAt = getOrCreateInstallDate();
|
|
17014
17014
|
const remainingDays = getRemainingDays(installedAt, validityDays);
|