repository-provider 32.4.6 → 32.4.8
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/attributes.mjs +1 -1
- package/src/named-object.mjs +1 -7
- package/src/pull-request.mjs +1 -2
- package/src/repository-group.mjs +6 -1
package/package.json
CHANGED
package/src/attributes.mjs
CHANGED
|
@@ -41,7 +41,7 @@ export const description_attribute = {
|
|
|
41
41
|
*/
|
|
42
42
|
export const id_attribute = { isKey: true, type: "string" };
|
|
43
43
|
|
|
44
|
-
export const state_attribute = { type: "string" };
|
|
44
|
+
export const state_attribute = { type: "string", writeable: true };
|
|
45
45
|
|
|
46
46
|
/**
|
|
47
47
|
* The description of the pull request.
|
package/src/named-object.mjs
CHANGED
|
@@ -18,13 +18,7 @@ export class NamedObject extends BaseObject {
|
|
|
18
18
|
return {
|
|
19
19
|
name: name_attribute,
|
|
20
20
|
id: id_attribute,
|
|
21
|
-
description: description_attribute
|
|
22
|
-
|
|
23
|
-
/**
|
|
24
|
-
* The url of home page.
|
|
25
|
-
* @return {string}
|
|
26
|
-
*/
|
|
27
|
-
homePageURL: { ...url_attribute, writable: true }
|
|
21
|
+
description: description_attribute
|
|
28
22
|
};
|
|
29
23
|
}
|
|
30
24
|
|
package/src/pull-request.mjs
CHANGED
package/src/repository-group.mjs
CHANGED
|
@@ -48,7 +48,12 @@ export class RepositoryGroup extends RepositoryOwner(OwnedObject) {
|
|
|
48
48
|
type: type_attribute,
|
|
49
49
|
url: url_attribute,
|
|
50
50
|
avatarURL: url_attribute,
|
|
51
|
-
isAdmin: boolean_attribute
|
|
51
|
+
isAdmin: boolean_attribute,
|
|
52
|
+
/**
|
|
53
|
+
* The url of home page.
|
|
54
|
+
* @return {string}
|
|
55
|
+
*/
|
|
56
|
+
homePageURL: { ...url_attribute, writable: true }
|
|
52
57
|
};
|
|
53
58
|
}
|
|
54
59
|
|