bitbucket-repository-provider 3.9.4 → 3.9.5

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": "bitbucket-repository-provider",
3
- "version": "3.9.4",
3
+ "version": "3.9.5",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -30,7 +30,7 @@
30
30
  "lint:docs": "documentation lint ./src/**/*.mjs"
31
31
  },
32
32
  "dependencies": {
33
- "content-entry": "^2.7.1",
33
+ "content-entry": "^2.9.0",
34
34
  "matching-iterator": "^2.0.0",
35
35
  "node-fetch": "^3.0.0-beta.9",
36
36
  "one-time-execution-method": "^2.0.9",
@@ -40,7 +40,7 @@
40
40
  "ava": "^3.15.0",
41
41
  "c8": "^7.10.0",
42
42
  "documentation": "^13.2.5",
43
- "repository-provider-test-support": "^1.6.3",
43
+ "repository-provider-test-support": "^1.6.4",
44
44
  "semantic-release": "^18.0.0"
45
45
  },
46
46
  "engines": {
@@ -100,6 +100,11 @@ class LazyBufferContentEntry extends BufferContentEntryMixin(ContentEntry) {
100
100
  });
101
101
  }
102
102
 
103
+ get buffer()
104
+ {
105
+ return this.getBuffer();
106
+ }
107
+
103
108
  async getBuffer() {
104
109
  const branch = this.branch;
105
110
 
@@ -123,6 +123,6 @@ export class BitbucketPullRequest extends PullRequest {
123
123
 
124
124
  get url()
125
125
  {
126
- return `${this.provider.url}/${thist.destination.slug}pull-requests/${this.name}`;
126
+ return `${this.provider.url}/${this.destination.slug}pull-requests/${this.name}`;
127
127
  }
128
128
  }