repository-provider 37.1.1 → 37.1.3

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": "37.1.1",
3
+ "version": "37.1.3",
4
4
  "publishConfig": {
5
5
  "access": "public",
6
6
  "provenance": true
@@ -35,7 +35,7 @@
35
35
  "dependencies": {
36
36
  "content-entry": "^14.2.7",
37
37
  "matching-iterator": "^2.1.7",
38
- "pacc": "^9.4.2"
38
+ "pacc": "^10.0.1"
39
39
  },
40
40
  "devDependencies": {
41
41
  "ava": "^8.0.1",
@@ -243,12 +243,12 @@ export class PullRequest extends OwnedObject {
243
243
  ...[
244
244
  ...attributeIterator(
245
245
  this.constructor.attributes,
246
- (name, attribute) =>
247
- !attribute.isKey &&
246
+ attribute =>
247
+ !attribute.key &&
248
248
  attribute.type !== types.url &&
249
- name !== "title" &&
250
- name !== "body" &&
251
- this[name] !== undefined
249
+ attribute.name !== "title" &&
250
+ attribute.name !== "body" &&
251
+ this[attribute.name] !== undefined
252
252
  )
253
253
  ].map(([path, attribute]) => {
254
254
  const name = path.join(".");