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

@chequer-public/harbor-sdk

Package Overview
Dependencies
Maintainers
2
Versions
14
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@chequer-public/harbor-sdk - npm Package Compare versions

Comparing version 0.0.13 to 0.0.14

3

lib/models/Artifact.d.ts
import { type ArtifactDTO } from '../types/dto/ArtifactDTO';
import { type TagDTO } from '../types/dto/TagDTO';
import { type LabelDTO } from '../types/dto/LabelDTO';
export declare class Artifact {

@@ -9,4 +10,6 @@ readonly registryName: string;

readonly tags: TagDTO[];
readonly labels: LabelDTO[];
readonly raw: ArtifactDTO;
constructor(registryName: string, projectName: string, repositoryName: string, dto: ArtifactDTO);
toDigestReference(): string;
}

@@ -10,2 +10,4 @@ "use strict";

tags;
labels;
raw;
constructor(registryName, projectName, repositoryName, dto) {

@@ -20,2 +22,4 @@ this.registryName = registryName;

this.tags = dto.tags ?? [];
this.labels = dto.labels ?? [];
this.raw = dto;
}

@@ -22,0 +26,0 @@ toDigestReference() {

2

package.json
{
"name": "@chequer-public/harbor-sdk",
"version": "0.0.13",
"version": "0.0.14",
"description": "Harbor HTTP Client SDK",

@@ -5,0 +5,0 @@ "main": "lib/index.js",

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