github-repository-provider 9.1.8 → 9.2.0

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.1.8",
3
+ "version": "9.2.0",
4
4
  "publishConfig": {
5
5
  "access": "public",
6
6
  "provenance": true
@@ -1,7 +1,5 @@
1
1
  import { replaceWithOneTimeExecutionMethod } from "one-time-execution-method";
2
2
  import { stateActionHandler } from "fetch-rate-limit-util";
3
- import { BufferContentEntry } from "content-entry";
4
-
5
3
  import { MultiGroupProvider, url_attribute, default_attribute, priority_attribute } from "repository-provider";
6
4
  import { GithubRepository } from "./github-repository.mjs";
7
5
  import { GithubBranch } from "./github-branch.mjs";
@@ -180,10 +178,6 @@ export class GithubProvider extends MultiGroupProvider {
180
178
  get repositoryGroupClass() {
181
179
  return GithubOwner;
182
180
  }
183
-
184
- get entryClass() {
185
- return BufferContentEntry;
186
- }
187
181
  }
188
182
 
189
183
  replaceWithOneTimeExecutionMethod(
@@ -144,7 +144,6 @@ export class GithubProvider extends MultiGroupProvider {
144
144
  get repositoryClass(): typeof GithubRepository;
145
145
  get branchClass(): typeof GithubBranch;
146
146
  get repositoryGroupClass(): typeof GithubOwner;
147
- get entryClass(): typeof BufferContentEntry;
148
147
  }
149
148
  export default GithubProvider;
150
149
  import { GithubRepository } from "./github-repository.mjs";
@@ -152,5 +151,4 @@ import { GithubBranch } from "./github-branch.mjs";
152
151
  import { GithubOwner } from "./github-owner.mjs";
153
152
  import { GithubPullRequest } from "./github-pull-request.mjs";
154
153
  import { MultiGroupProvider } from "repository-provider";
155
- import { BufferContentEntry } from "content-entry";
156
154
  export { GithubRepository, GithubBranch, GithubOwner, GithubPullRequest };