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

@finos/legend-server-depot

Package Overview
Dependencies
Maintainers
4
Versions
183
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@finos/legend-server-depot - npm Package Compare versions

Comparing version 6.0.62 to 6.0.63

2

lib/DepotEntityHelper.d.ts

@@ -19,3 +19,5 @@ /**

import type { DepotServerClient } from './DepotServerClient.js';
import type { PlainObject } from '@finos/legend-shared';
export declare const retrieveProjectEntitiesWithDependencies: (project: StoreProjectData, versionId: string, depotServerClient: DepotServerClient) => Promise<Entity[]>;
export declare const retrieveProjectEntitiesWithClassifier: (project: StoreProjectData, versionId: string, classifier: string, depotServerClient: DepotServerClient) => Promise<[PlainObject<Entity>[], PlainObject<Entity>[]]>;
//# sourceMappingURL=DepotEntityHelper.d.ts.map

@@ -26,2 +26,9 @@ /**

};
export const retrieveProjectEntitiesWithClassifier = async (project, versionId, classifier, depotServerClient) => {
const [entities, dependencyEntities] = await Promise.all([
depotServerClient.getEntities(project, versionId, classifier),
depotServerClient.getDependencyEntities(project.groupId, project.artifactId, versionId, false, false, classifier),
]);
return [entities, dependencyEntities];
};
//# sourceMappingURL=DepotEntityHelper.js.map

4

package.json
{
"name": "@finos/legend-server-depot",
"version": "6.0.62",
"version": "6.0.63",
"description": "Legend Depot server client",

@@ -47,3 +47,3 @@ "keywords": [

"devDependencies": {
"@finos/legend-dev-utils": "2.1.24",
"@finos/legend-dev-utils": "2.1.25",
"@jest/globals": "29.7.0",

@@ -50,0 +50,0 @@ "cross-env": "7.0.3",

@@ -39,1 +39,24 @@ /**

};
export const retrieveProjectEntitiesWithClassifier = async (
project: StoreProjectData,
versionId: string,
classifier: string,
depotServerClient: DepotServerClient,
): Promise<[PlainObject<Entity>[], PlainObject<Entity>[]]> => {
const [entities, dependencyEntities]: [
PlainObject<Entity>[],
PlainObject<Entity>[],
] = await Promise.all([
depotServerClient.getEntities(project, versionId, classifier),
depotServerClient.getDependencyEntities(
project.groupId,
project.artifactId,
versionId,
false,
false,
classifier,
),
]);
return [entities, dependencyEntities];
};

Sorry, the diff of this file is not supported yet

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