repository-provider
Advanced tools
Comparing version 3.8.3 to 3.9.0
@@ -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; |
{ | ||
"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 |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
55907
1355
1
36
841