New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@5minds/processcube_engine_client

Package Overview
Dependencies
Maintainers
0
Versions
662
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@5minds/processcube_engine_client - npm Package Compare versions

Comparing version 5.1.5 to 5.1.6

1

dist/ClientCredentialsIdentityAccessor.d.ts

@@ -12,3 +12,4 @@ import { Identity } from '@5minds/processcube_engine_sdk';

private getAuthorityUrlFromEngineUrl;
private ensureEndsWithoutSlash;
private hash;
}

7

dist/commonjs/ClientCredentialsIdentityAccessor.js

@@ -60,3 +60,3 @@ "use strict";

if (config.authorityUrl) {
return config.authorityUrl;
return this.ensureEndsWithoutSlash(this.config.authorityUrl);
}

@@ -72,3 +72,3 @@ if (config.engineUrl) {

const authorityAddress = await (0, Retry_1.executeWithRetry)(async () => applicationInfoClient.getAuthorityAddress(), `${engineUrl} not available, retrying...`);
return authorityAddress;
return this.ensureEndsWithoutSlash(authorityAddress);
}

@@ -80,2 +80,5 @@ catch (err) {

}
ensureEndsWithoutSlash(url) {
return url.replace(/(\/)$/, '');
}
hash(str) {

@@ -82,0 +85,0 @@ // djb2 constants

@@ -7,3 +7,3 @@ {

"name": "@5minds/processcube_engine_client",
"version": "5.1.5",
"version": "5.1.6",
"description": "Contains a typescript based client for accessing the Engine.",

@@ -10,0 +10,0 @@ "main": "dist/commonjs/index.js",

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc