bitbucket-repository-provider 6.0.21 → 6.0.22

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
@@ -82,7 +82,7 @@ Returns **[Promise](https://developer.mozilla.org/docs/Web/JavaScript/Reference/
82
82
 
83
83
  #### Parameters
84
84
 
85
- * `patterns`  
85
+ * `patterns` **([Array](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Array)<[string](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String)> | [string](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String))**&#x20;
86
86
 
87
87
  ### commit
88
88
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bitbucket-repository-provider",
3
- "version": "6.0.21",
3
+ "version": "6.0.22",
4
4
  "publishConfig": {
5
5
  "access": "public",
6
6
  "provenance": true
@@ -35,19 +35,19 @@
35
35
  "lint:typescript": "tsc --allowJs --checkJs --noEmit --resolveJsonModule -t esnext -m esnext --module nodenext --moduleResolution nodenext ./src**/*.mjs"
36
36
  },
37
37
  "dependencies": {
38
- "content-entry": "^11.0.0",
38
+ "content-entry": "^11.0.1",
39
39
  "fetch-rate-limit-util": "^4.3.1",
40
40
  "matching-iterator": "^2.1.3",
41
41
  "one-time-execution-method": "^3.1.1",
42
- "repository-provider": "^35.2.15"
42
+ "repository-provider": "^35.2.19"
43
43
  },
44
44
  "devDependencies": {
45
- "@types/node": "^20.12.11",
45
+ "@types/node": "^20.14.1",
46
46
  "ava": "^6.1.3",
47
47
  "c8": "^9.1.0",
48
48
  "documentation": "^14.0.3",
49
- "repository-provider-test-support": "^3.1.4",
50
- "semantic-release": "^23.1.1",
49
+ "repository-provider-test-support": "^3.1.5",
50
+ "semantic-release": "^24.0.0",
51
51
  "typescript": "^5.4.5"
52
52
  },
53
53
  "engines": {
@@ -4,12 +4,6 @@
4
4
  export class BitbucketBranch extends Branch {
5
5
  initialize(): Promise<void>;
6
6
  hash: any;
7
- /**
8
- * {@link https://developer.atlassian.com/bitbucket/api/2/reference/resource/repositories/%7Busername%7D/%7Brepo_slug%7D/src/%7Bnode%7D/%7Bpath%7D}
9
- * @param {string} name
10
- * @return {Promise<ContentEntry>}
11
- */
12
- entry(name: string): Promise<ContentEntry>;
13
7
  /**
14
8
  *
15
9
  * @param {string[]|string} patterns
@@ -26,7 +20,6 @@ export class BitbucketBranch extends Branch {
26
20
  get entryClass(): typeof BufferContentEntry;
27
21
  }
28
22
  import { Branch } from "repository-provider";
29
- import { ContentEntry } from "content-entry";
30
23
  import { CollectionEntry } from "content-entry";
31
24
  declare const LazyBufferContentEntry_base: new (name: string) => {
32
25
  readonly string: string;
@@ -57,5 +50,6 @@ declare class LazyBufferContentEntry extends LazyBufferContentEntry_base {
57
50
  get buffer(): Promise<Buffer>;
58
51
  _buffer(): Promise<Buffer>;
59
52
  }
53
+ import { ContentEntry } from "content-entry";
60
54
  import { BufferContentEntry } from "content-entry";
61
55
  export {};
@@ -55,7 +55,7 @@ export class BitbucketRepository extends Repository {
55
55
  description: import("pacc").AttributeDefinition;
56
56
  };
57
57
  static get attributMapping(): any;
58
- get user(): any;
58
+ get user(): string;
59
59
  /**
60
60
  * @see https://developer.atlassian.com/cloud/bitbucket/rest/api-group-repositories/#api-repositories-workspace-repo-slug-put
61
61
  */