Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

repository-provider

Package Overview
Dependencies
Maintainers
1
Versions
662
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

repository-provider - npm Package Compare versions

Comparing version 3.8.3 to 3.9.0

6

dist/provider.js

@@ -109,2 +109,5 @@ 'use strict';

async _initialize() {}
async refId(ref = this.ref) {
return this.repository.refId(ref);
}
}

@@ -206,2 +209,5 @@ );

}
async refId(ref) {
return undefined;
}
get rateLimitReached() {

@@ -208,0 +214,0 @@ return this.provider.rateLimitReached;

2

package.json
{
"name": "repository-provider",
"version": "3.8.3",
"version": "3.9.0",
"publishConfig": {

@@ -5,0 +5,0 @@ "access": "public"

@@ -205,3 +205,12 @@ import { notImplementedError } from "./util";

async _initialize() {}
/**
* Get sha of a ref
* @param {string} ref
* @return {string} sha of the ref
*/
async refId(ref = this.ref) {
return this.repository.refId(ref);
}
}
);

@@ -247,2 +247,11 @@ import { notImplementedError } from "./util";

/**
* Get sha of a ref
* @param {string} ref
* @return {string} sha of the ref
*/
async refId(ref) {
return undefined;
}
/**
* Value delivered from the provider

@@ -249,0 +258,0 @@ * @return {boolean} providers rateLimitReached

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