github-repository-provider 9.3.13 → 9.3.14

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "github-repository-provider",
3
- "version": "9.3.13",
3
+ "version": "9.3.14",
4
4
  "publishConfig": {
5
5
  "access": "public",
6
6
  "provenance": true
@@ -38,7 +38,7 @@
38
38
  "fetch-rate-limit-util": "^4.5.5",
39
39
  "matching-iterator": "^2.1.5",
40
40
  "one-time-execution-method": "^3.1.4",
41
- "repository-provider": "^35.8.2"
41
+ "repository-provider": "^35.9.0"
42
42
  },
43
43
  "devDependencies": {
44
44
  "@types/node": "^24.10.1",
@@ -114,8 +114,8 @@ export class GithubProvider extends MultiGroupProvider {
114
114
  options.agent = this.agent;
115
115
 
116
116
  const authorization = {};
117
- if(this.authentication?.token) {
118
- authorization.authorization = `token ${this.authentication.token}`
117
+ if (this.authentication?.token) {
118
+ authorization.authorization = `token ${this.authentication.token}`;
119
119
  }
120
120
 
121
121
  return stateActionHandler(new URL(url, this.api), {
@@ -203,7 +203,7 @@ export class GithubProvider extends MultiGroupProvider {
203
203
  return GithubBranch;
204
204
  }
205
205
 
206
- get repositoryGroupClass() {
206
+ repositoryGroupClassFor(name, options) {
207
207
  return GithubOwner;
208
208
  }
209
209
  }