repository-provider 35.3.11 → 35.4.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": "repository-provider",
3
- "version": "35.3.11",
3
+ "version": "35.4.0",
4
4
  "publishConfig": {
5
5
  "access": "public",
6
6
  "provenance": true
@@ -46,7 +46,7 @@
46
46
  "browser-ava": "^2.3.29",
47
47
  "c8": "^10.1.3",
48
48
  "documentation": "^14.0.3",
49
- "repository-provider-test-support": "^3.1.19",
49
+ "repository-provider-test-support": "^3.1.21",
50
50
  "semantic-release": "^24.2.3",
51
51
  "typescript": "^5.8.3"
52
52
  },
@@ -516,10 +516,6 @@ export class BaseProvider extends BaseObject {
516
516
  return Tag;
517
517
  }
518
518
 
519
- get entryClass() {
520
- return ContentEntry;
521
- }
522
-
523
519
  get pullRequestClass() {
524
520
  return PullRequest;
525
521
  }
@@ -200,10 +200,6 @@ export class OwnedObject extends NamedObject {
200
200
  return this.owner.tagClass;
201
201
  }
202
202
 
203
- get entryClass() {
204
- return this.owner.entryClass;
205
- }
206
-
207
203
  get hookClass() {
208
204
  return this.owner.hookClass;
209
205
  }
@@ -248,7 +248,6 @@ export class BaseProvider extends BaseObject {
248
248
  get repositoryClass(): typeof Repository;
249
249
  get branchClass(): typeof Branch;
250
250
  get tagClass(): typeof Tag;
251
- get entryClass(): typeof ContentEntry;
252
251
  get pullRequestClass(): typeof PullRequest;
253
252
  }
254
253
  export type Project = import("./project.mjs").Project;
@@ -276,4 +275,3 @@ import { Branch } from "./branch.mjs";
276
275
  import { Tag } from "./tag.mjs";
277
276
  import { Hook } from "./hook.mjs";
278
277
  import { RepositoryGroup } from "./repository-group.mjs";
279
- import { ContentEntry } from "content-entry";
@@ -106,7 +106,6 @@ export class OwnedObject extends NamedObject {
106
106
  get pullRequestClass(): any;
107
107
  get branchClass(): any;
108
108
  get tagClass(): any;
109
- get entryClass(): any;
110
109
  get hookClass(): any;
111
110
  }
112
111
  export type BaseProvider = import("./base-provider.mjs").BaseProvider;