repository-provider 35.5.9 → 35.5.10
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 +3 -3
- package/src/pull-request.mjs +5 -5
- package/src/ref.mjs +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "repository-provider",
|
|
3
|
-
"version": "35.5.
|
|
3
|
+
"version": "35.5.10",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public",
|
|
6
6
|
"provenance": true
|
|
@@ -39,14 +39,14 @@
|
|
|
39
39
|
"dependencies": {
|
|
40
40
|
"content-entry": "^14.2.3",
|
|
41
41
|
"matching-iterator": "^2.1.4",
|
|
42
|
-
"pacc": "^4.
|
|
42
|
+
"pacc": "^4.5.2"
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|
|
45
45
|
"ava": "^6.4.1",
|
|
46
46
|
"browser-ava": "^2.3.31",
|
|
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.51",
|
|
50
50
|
"semantic-release": "^24.2.7",
|
|
51
51
|
"typescript": "^5.8.3"
|
|
52
52
|
},
|
package/src/pull-request.mjs
CHANGED
|
@@ -3,7 +3,7 @@ import {
|
|
|
3
3
|
state_attribute,
|
|
4
4
|
body_attribute,
|
|
5
5
|
title_attribute,
|
|
6
|
-
|
|
6
|
+
boolean_attribute_false,
|
|
7
7
|
empty_attribute
|
|
8
8
|
} from "pacc";
|
|
9
9
|
import { optionJSON } from "./attribute-extras.mjs";
|
|
@@ -115,20 +115,20 @@ export class PullRequest extends OwnedObject {
|
|
|
115
115
|
* Locked state of the pull request.
|
|
116
116
|
* @return {boolean}
|
|
117
117
|
*/
|
|
118
|
-
locked:
|
|
118
|
+
locked: boolean_attribute_false,
|
|
119
119
|
|
|
120
120
|
/**
|
|
121
121
|
* Merged state of the pull request.
|
|
122
122
|
* @return {boolean}
|
|
123
123
|
*/
|
|
124
|
-
merged:
|
|
124
|
+
merged: boolean_attribute_false,
|
|
125
125
|
|
|
126
126
|
/**
|
|
127
127
|
* Draft state of the pull request.
|
|
128
128
|
* @return {boolean}
|
|
129
129
|
*/
|
|
130
|
-
draft:
|
|
131
|
-
dry:
|
|
130
|
+
draft: boolean_attribute_false,
|
|
131
|
+
dry: boolean_attribute_false,
|
|
132
132
|
empty: empty_attribute
|
|
133
133
|
};
|
|
134
134
|
|
package/src/ref.mjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { name_attribute,
|
|
1
|
+
import { name_attribute, boolean_attribute_false } from "pacc";
|
|
2
2
|
import { ContentEntry } from "content-entry";
|
|
3
3
|
import { OwnedObject } from "./owned-object.mjs";
|
|
4
4
|
|
|
@@ -22,7 +22,7 @@ export class Ref extends OwnedObject {
|
|
|
22
22
|
* Can the ref be modified.
|
|
23
23
|
* @return {boolean}
|
|
24
24
|
*/
|
|
25
|
-
isProtected:
|
|
25
|
+
isProtected: boolean_attribute_false
|
|
26
26
|
};
|
|
27
27
|
|
|
28
28
|
static attributeMapping = {
|