bitbucket-repository-provider 4.1.8 → 4.1.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 +13 -0
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -28,12 +28,14 @@ repository provider for bitbucket
|
|
|
28
28
|
* [Parameters](#parameters-2)
|
|
29
29
|
* [attributes](#attributes)
|
|
30
30
|
* [hash](#hash)
|
|
31
|
+
* [BitbucketHook](#bitbuckethook)
|
|
31
32
|
* [BitbucketProvider](#bitbucketprovider)
|
|
32
33
|
* [Parameters](#parameters-3)
|
|
33
34
|
* [repositoryGroupClass](#repositorygroupclass)
|
|
34
35
|
* [repositoryClass](#repositoryclass)
|
|
35
36
|
* [branchClass](#branchclass)
|
|
36
37
|
* [pullRequestClass](#pullrequestclass)
|
|
38
|
+
* [hookClass](#hookclass)
|
|
37
39
|
* [repositoryBases](#repositorybases)
|
|
38
40
|
* [initializeRepositories](#initializerepositories)
|
|
39
41
|
* [name](#name)
|
|
@@ -58,6 +60,7 @@ repository provider for bitbucket
|
|
|
58
60
|
* [homePageURL](#homepageurl)
|
|
59
61
|
* [issuesURL](#issuesurl)
|
|
60
62
|
* [update](#update)
|
|
63
|
+
* [initializeHooks](#initializehooks)
|
|
61
64
|
* [initializeBranches](#initializebranches)
|
|
62
65
|
* [createBranch](#createbranch)
|
|
63
66
|
* [Parameters](#parameters-10)
|
|
@@ -106,6 +109,10 @@ options
|
|
|
106
109
|
|
|
107
110
|
Returns **[string](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String)**
|
|
108
111
|
|
|
112
|
+
## BitbucketHook
|
|
113
|
+
|
|
114
|
+
**Extends Hook**
|
|
115
|
+
|
|
109
116
|
## BitbucketProvider
|
|
110
117
|
|
|
111
118
|
**Extends MultiGroupProvider**
|
|
@@ -155,6 +162,10 @@ Returns **Class** BitbucketBranch
|
|
|
155
162
|
|
|
156
163
|
Returns **Class** pull request class used by the Provider
|
|
157
164
|
|
|
165
|
+
### hookClass
|
|
166
|
+
|
|
167
|
+
Returns **Class** hook class used by the Provider
|
|
168
|
+
|
|
158
169
|
### repositoryBases
|
|
159
170
|
|
|
160
171
|
All possible base urls.
|
|
@@ -285,6 +296,8 @@ Returns **[string](https://developer.mozilla.org/docs/Web/JavaScript/Reference/G
|
|
|
285
296
|
|
|
286
297
|
<https://developer.atlassian.com/cloud/bitbucket/rest/api-group-repositories/#api-repositories-workspace-repo-slug-put>
|
|
287
298
|
|
|
299
|
+
### initializeHooks
|
|
300
|
+
|
|
288
301
|
### initializeBranches
|
|
289
302
|
|
|
290
303
|
<https://developer.atlassian.com/cloud/bitbucket/rest/api-group-refs/#api-group-refs>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "bitbucket-repository-provider",
|
|
3
|
-
"version": "4.1.
|
|
3
|
+
"version": "4.1.9",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
"matching-iterator": "^2.0.4",
|
|
36
36
|
"node-fetch": "^3.2.4",
|
|
37
37
|
"one-time-execution-method": "^2.0.13",
|
|
38
|
-
"repository-provider": "^28.3.
|
|
38
|
+
"repository-provider": "^28.3.6"
|
|
39
39
|
},
|
|
40
40
|
"devDependencies": {
|
|
41
41
|
"ava": "^4.2.0",
|