bitbucket-repository-provider 6.0.16 → 6.0.17
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": "6.0.
|
|
3
|
+
"version": "6.0.17",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public",
|
|
6
6
|
"provenance": true
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"fetch-rate-limit-util": "^4.2.1",
|
|
39
39
|
"matching-iterator": "^2.1.3",
|
|
40
40
|
"one-time-execution-method": "^3.1.1",
|
|
41
|
-
"repository-provider": "^35.2.
|
|
41
|
+
"repository-provider": "^35.2.14"
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
44
44
|
"@types/node": "^20.11.20",
|
|
@@ -65,7 +65,7 @@ export class BitbucketRepository extends Repository {
|
|
|
65
65
|
}
|
|
66
66
|
|
|
67
67
|
/**
|
|
68
|
-
* @
|
|
68
|
+
* @see https://developer.atlassian.com/cloud/bitbucket/rest/api-group-repositories/#api-repositories-workspace-repo-slug-put
|
|
69
69
|
*/
|
|
70
70
|
async update() {
|
|
71
71
|
return this.provider.fetch(this.api, {
|
|
@@ -80,7 +80,7 @@ export class BitbucketRepository extends Repository {
|
|
|
80
80
|
}
|
|
81
81
|
|
|
82
82
|
/**
|
|
83
|
-
* @
|
|
83
|
+
* @see https://developer.atlassian.com/cloud/bitbucket/rest/api-group-repositories/#api-repositories-workspace-repo-slug-hooks-get
|
|
84
84
|
*/
|
|
85
85
|
async initializeHooks() {
|
|
86
86
|
let url = `${this.api}/hooks`;
|
|
@@ -57,11 +57,11 @@ export class BitbucketRepository extends Repository {
|
|
|
57
57
|
static get attributMapping(): any;
|
|
58
58
|
get user(): any;
|
|
59
59
|
/**
|
|
60
|
-
* @
|
|
60
|
+
* @see https://developer.atlassian.com/cloud/bitbucket/rest/api-group-repositories/#api-repositories-workspace-repo-slug-put
|
|
61
61
|
*/
|
|
62
62
|
update(): Promise<any>;
|
|
63
63
|
/**
|
|
64
|
-
* @
|
|
64
|
+
* @see https://developer.atlassian.com/cloud/bitbucket/rest/api-group-repositories/#api-repositories-workspace-repo-slug-hooks-get
|
|
65
65
|
*/
|
|
66
66
|
initializeHooks(): Promise<void>;
|
|
67
67
|
/**
|