repository-provider 35.5.5 → 35.5.6

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
@@ -445,8 +445,8 @@ options and merged with the given set of properties.
445
445
 
446
446
  ```js
447
447
  class aClass {
448
- static get attributes() {
449
- return { with_default: { default: 77 }};
448
+ static attributes = {
449
+ with_default: { default: 77 }
450
450
  }
451
451
  }
452
452
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "repository-provider",
3
- "version": "35.5.5",
3
+ "version": "35.5.6",
4
4
  "publishConfig": {
5
5
  "access": "public",
6
6
  "provenance": true
@@ -39,7 +39,7 @@
39
39
  "dependencies": {
40
40
  "content-entry": "^14.2.3",
41
41
  "matching-iterator": "^2.1.4",
42
- "pacc": "^4.0.0"
42
+ "pacc": "^4.1.0"
43
43
  },
44
44
  "devDependencies": {
45
45
  "ava": "^6.4.1",
@@ -61,7 +61,6 @@ export class BaseProvider extends BaseObject {
61
61
  collection: boolean;
62
62
  private?: boolean;
63
63
  depends?: string;
64
- additionalAttributes: string[];
65
64
  description?: string;
66
65
  default?: any;
67
66
  set?: Function;
@@ -82,7 +81,6 @@ export class BaseProvider extends BaseObject {
82
81
  mandatory: boolean;
83
82
  collection: boolean;
84
83
  depends?: string;
85
- additionalAttributes: string[];
86
84
  description?: string;
87
85
  set?: Function;
88
86
  get?: Function;
package/types/hook.d.mts CHANGED
@@ -15,7 +15,6 @@ export class Hook extends OwnedObject {
15
15
  collection: boolean;
16
16
  private?: boolean;
17
17
  depends?: string;
18
- additionalAttributes: string[];
19
18
  default?: any;
20
19
  set?: Function;
21
20
  get?: Function;
@@ -30,7 +29,6 @@ export class Hook extends OwnedObject {
30
29
  collection: boolean;
31
30
  private?: boolean;
32
31
  depends?: string;
33
- additionalAttributes: string[];
34
32
  description?: string;
35
33
  set?: Function;
36
34
  get?: Function;
@@ -80,7 +80,6 @@ export class PullRequest extends OwnedObject {
80
80
  collection: boolean;
81
81
  private?: boolean;
82
82
  depends?: string;
83
- additionalAttributes: string[];
84
83
  description?: string;
85
84
  set?: Function;
86
85
  get?: Function;
@@ -30,7 +30,6 @@ export class Repository extends OwnedObject {
30
30
  collection: boolean;
31
31
  private?: boolean;
32
32
  depends?: string;
33
- additionalAttributes: string[];
34
33
  description?: string;
35
34
  set?: Function;
36
35
  get?: Function;