repository-provider 35.3.12 → 35.4.1
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
|
+
"version": "35.4.1",
|
|
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.
|
|
49
|
+
"repository-provider-test-support": "^3.1.23",
|
|
50
50
|
"semantic-release": "^24.2.3",
|
|
51
51
|
"typescript": "^5.8.3"
|
|
52
52
|
},
|
package/src/base-provider.mjs
CHANGED
package/src/owned-object.mjs
CHANGED
|
@@ -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";
|
package/types/owned-object.d.mts
CHANGED
|
@@ -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;
|