bitbucket-repository-provider 6.0.2 → 6.0.4

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/LICENSE CHANGED
@@ -1,4 +1,4 @@
1
- Copyright (c) 2017-2023 by arlac77
1
+ Copyright (c) 2017-2024 by arlac77
2
2
  All rights reserved.
3
3
 
4
4
  Redistribution and use in source and binary forms, with or without
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bitbucket-repository-provider",
3
- "version": "6.0.2",
3
+ "version": "6.0.4",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -33,17 +33,17 @@
33
33
  "fetch-rate-limit-util": "^4.1.2",
34
34
  "matching-iterator": "^2.0.12",
35
35
  "one-time-execution-method": "^3.0.6",
36
- "repository-provider": "^34.0.3"
36
+ "repository-provider": "^35.0.0"
37
37
  },
38
38
  "devDependencies": {
39
- "ava": "^6.0.1",
40
- "c8": "^8.0.1",
39
+ "ava": "^6.1.0",
40
+ "c8": "^9.1.0",
41
41
  "documentation": "^14.0.2",
42
- "repository-provider-test-support": "^3.0.1",
43
- "semantic-release": "^22.0.12"
42
+ "repository-provider-test-support": "^3.0.2",
43
+ "semantic-release": "^23.0.0"
44
44
  },
45
45
  "engines": {
46
- "node": ">=20.10.0"
46
+ "node": ">=20.11.0"
47
47
  },
48
48
  "repository": {
49
49
  "type": "git",
@@ -1,4 +1,4 @@
1
- import { RepositoryGroup, uuid_attiribute } from "repository-provider";
1
+ import { RepositoryGroup, uuid_attribute } from "repository-provider";
2
2
 
3
3
  /**
4
4
  *
@@ -8,7 +8,7 @@ export class BitbucketRepositoryGroup extends RepositoryGroup {
8
8
  static get attributes() {
9
9
  return {
10
10
  ...super.attributes,
11
- uuid: uuid_attiribute
11
+ uuid: uuid_attribute
12
12
  };
13
13
  }
14
14
 
@@ -1,7 +1,7 @@
1
1
  import { replaceWithOneTimeExecutionMethod } from "one-time-execution-method";
2
2
  import {
3
3
  Repository,
4
- uuid_attiribute,
4
+ uuid_attribute,
5
5
  size_attribute,
6
6
  language_attribute,
7
7
  default_attribute
@@ -23,7 +23,7 @@ export class BitbucketRepository extends Repository {
23
23
  static get attributes() {
24
24
  return {
25
25
  ...super.attributes,
26
- uuid: uuid_attiribute,
26
+ uuid: uuid_attribute,
27
27
  size_attribute,
28
28
  language_attribute,
29
29
  fork_policy: { ...default_attribute, default: "allow_forks" }