repository-provider 35.2.1 → 35.2.2
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 +1 -1
- package/src/repository.mjs +6 -3
- package/types/repository.d.mts +3 -0
package/package.json
CHANGED
package/src/repository.mjs
CHANGED
|
@@ -7,6 +7,9 @@ import { Branch } from "./branch.mjs";
|
|
|
7
7
|
import { PullRequest } from "./pull-request.mjs";
|
|
8
8
|
import { RepositoryOwner } from "./repository-owner.mjs";
|
|
9
9
|
import { Commit } from "./commit.mjs";
|
|
10
|
+
import { Milestone } from "./milestone.mjs";
|
|
11
|
+
import { Project } from "./project.mjs";
|
|
12
|
+
import { Application } from "./application.mjs";
|
|
10
13
|
import {
|
|
11
14
|
url_attribute,
|
|
12
15
|
boolean_attribute,
|
|
@@ -76,9 +79,9 @@ export class Repository extends OwnedObject {
|
|
|
76
79
|
|
|
77
80
|
/** @type {Map<string,Branch>} */ #branches = new Map();
|
|
78
81
|
/** @type {Map<string,Tag>} */ #tags = new Map();
|
|
79
|
-
#projects = new Map();
|
|
80
|
-
#applications = new Map();
|
|
81
|
-
#milestones = new Map();
|
|
82
|
+
/** @type {Map<string,Project>} */ #projects = new Map();
|
|
83
|
+
/** @type {Map<string,Application>} */ #applications = new Map();
|
|
84
|
+
/** @type {Map<string,Milestone>} */ #milestones = new Map();
|
|
82
85
|
/** @type {Map<string,PullRequest>} */ #pullRequests = new Map();
|
|
83
86
|
#hooks = [];
|
|
84
87
|
|
package/types/repository.d.mts
CHANGED
|
@@ -345,3 +345,6 @@ import { Branch } from "./branch.mjs";
|
|
|
345
345
|
import { Tag } from "./tag.mjs";
|
|
346
346
|
import { PullRequest } from "./pull-request.mjs";
|
|
347
347
|
import { Hook } from "./hook.mjs";
|
|
348
|
+
import { Milestone } from "./milestone.mjs";
|
|
349
|
+
import { Project } from "./project.mjs";
|
|
350
|
+
import { Application } from "./application.mjs";
|