@open-charging-cloud/chargy-core 0.14.0 → 0.14.1
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/README.md +1 -1
- package/dist/browser/index.js +5 -3
- package/dist/browser/index.js.map +1 -1
- package/dist/chargy.d.ts.map +1 -1
- package/dist/node/index.js +5 -3
- package/dist/node/index.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
package/dist/browser/index.js
CHANGED
|
@@ -13704,10 +13704,12 @@ var Chargy = class {
|
|
|
13704
13704
|
verifyLiveLinkSignatures(LiveLink) {
|
|
13705
13705
|
const result = verifyDocumentSignatures(LiveLink);
|
|
13706
13706
|
const warnings = new Array();
|
|
13707
|
+
const reported = /* @__PURE__ */ new Set();
|
|
13707
13708
|
const warn = (messageKey, level) => {
|
|
13708
|
-
|
|
13709
|
-
|
|
13710
|
-
|
|
13709
|
+
if (reported.has(messageKey))
|
|
13710
|
+
return;
|
|
13711
|
+
reported.add(messageKey);
|
|
13712
|
+
warnings.push({ level, message: this.GetMultilanguageText(messageKey) });
|
|
13711
13713
|
};
|
|
13712
13714
|
if (result.status === "unsigned")
|
|
13713
13715
|
warn("DocumentSignature_Missing", "low" /* low */);
|