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

@monokle/types

Package Overview
Dependencies
Maintainers
5
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@monokle/types - npm Package Compare versions

Comparing version 0.2.0 to 0.2.1

6

CHANGELOG.md
# @monokle/types
## 0.2.1
### Patch Changes
- 8e49957: add get suppressions query in the synchronizer package
## 0.2.0

@@ -4,0 +10,0 @@

@@ -38,1 +38,30 @@ /**

};
export type SuppressionKind = 'inSource' | 'external';
export type SuppressionStatus = 'underReview' | 'accepted' | 'rejected';
/**
* A request to suppress a result.
*
* @see https://docs.oasis-open.org/sarif/sarif/v2.1.0/csprd01/sarif-v2.1.0-csprd01.html#_Toc10541171
*/
export interface Suppression {
guid?: string;
kind: SuppressionKind;
status: SuppressionStatus;
justification?: string;
};
export interface ExternalSuppression extends Suppression {
guid: string;
};
export interface AnnotationsSuppression extends Suppression {
kind: 'inSource';
status: 'accepted';
}
export interface FingerprintSuppression extends ExternalSuppression {
kind: 'external';
fingerprint: string;
}

2

package.json
{
"name": "@monokle/types",
"version": "0.2.0",
"version": "0.2.1",
"types": "./index.d.ts",

@@ -5,0 +5,0 @@ "scripts": {

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