repository-provider 32.3.8 → 32.3.9

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/README.md CHANGED
@@ -217,7 +217,6 @@ console.log(await readme.getString());
217
217
  * [fullName](#fullname-2)
218
218
  * [url](#url-2)
219
219
  * [repository](#repository-1)
220
- * [provider](#provider-2)
221
220
  * [equals](#equals-4)
222
221
  * [Parameters](#parameters-50)
223
222
  * [delete](#delete-1)
@@ -1304,10 +1303,6 @@ Returns **[string](https://developer.mozilla.org/docs/Web/JavaScript/Reference/G
1304
1303
 
1305
1304
  Returns **[Repository](#repository)** destination repository
1306
1305
 
1307
- ### provider
1308
-
1309
- Returns **[BaseProvider](#baseprovider)** 
1310
-
1311
1306
  ### equals
1312
1307
 
1313
1308
  Check for equality
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "repository-provider",
3
- "version": "32.3.8",
3
+ "version": "32.3.9",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -38,7 +38,7 @@
38
38
  "browser-ava": "^1.3.13",
39
39
  "c8": "^7.12.0",
40
40
  "documentation": "^14.0.1",
41
- "repository-provider-test-support": "^2.2.23",
41
+ "repository-provider-test-support": "^2.2.24",
42
42
  "semantic-release": "^19.0.5",
43
43
  "typescript": "^4.9.4"
44
44
  },
@@ -222,15 +222,6 @@ export class PullRequest extends OwnedObject {
222
222
  return this.owner?.repository;
223
223
  }
224
224
 
225
- /**
226
- * Check for equality
227
- * @param {PullRequest} other
228
- * @return {boolean} true if number and repository are equal
229
- */
230
- equals(other) {
231
- return super.equals(other) && this.repository.equals(other.repository);
232
- }
233
-
234
225
  /**
235
226
  * Delete the pull request from the {@link Repository}.
236
227
  * @see {@link Repository#deletePullRequest}