bitbucket-repository-provider 6.0.16 → 6.0.18
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.18",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public",
|
|
6
6
|
"provenance": true
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
],
|
|
25
25
|
"license": "BSD-2-Clause",
|
|
26
26
|
"scripts": {
|
|
27
|
-
"prepare": "tsc --allowJs --declaration --emitDeclarationOnly --declarationDir types -t esnext -m esnext --module nodenext --moduleResolution nodenext ./src**/*.mjs",
|
|
27
|
+
"prepare": "tsc --allowJs --declaration --emitDeclarationOnly --declarationDir types -t esnext -m esnext --module nodenext --moduleResolution nodenext --rootDir src ./src**/*.mjs",
|
|
28
28
|
"test": "npm run test:ava",
|
|
29
29
|
"test:ava": "ava --timeout 4m tests/*-ava.mjs tests/*-ava-node.mjs",
|
|
30
30
|
"cover": "c8 -x 'tests/**/*' --temp-directory build/tmp ava --timeout 4m tests/*-ava.mjs tests/*-ava-node.mjs && c8 report -r lcov -o build/coverage --temp-directory build/tmp",
|
|
@@ -34,18 +34,18 @@
|
|
|
34
34
|
"lint:tsc": "tsc --allowJs --checkJs --noEmit -t esnext -m esnext --module nodenext --moduleResolution nodenext ./src**/*.mjs"
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"content-entry": "^9.0.
|
|
38
|
-
"fetch-rate-limit-util": "^4.2.
|
|
37
|
+
"content-entry": "^9.0.1",
|
|
38
|
+
"fetch-rate-limit-util": "^4.2.2",
|
|
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.15"
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
44
|
-
"@types/node": "^20.11.
|
|
45
|
-
"ava": "^6.1.
|
|
44
|
+
"@types/node": "^20.11.24",
|
|
45
|
+
"ava": "^6.1.2",
|
|
46
46
|
"c8": "^9.1.0",
|
|
47
47
|
"documentation": "^14.0.3",
|
|
48
|
-
"repository-provider-test-support": "^3.1.
|
|
48
|
+
"repository-provider-test-support": "^3.1.4",
|
|
49
49
|
"semantic-release": "^23.0.2",
|
|
50
50
|
"typescript": "^5.3.3"
|
|
51
51
|
},
|
|
@@ -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
|
/**
|