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 +2 -2
- package/package.json +2 -2
- package/types/base-provider.d.mts +0 -2
- package/types/hook.d.mts +0 -2
- package/types/pull-request.d.mts +0 -1
- package/types/repository.d.mts +0 -1
package/README.md
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "repository-provider",
|
|
3
|
-
"version": "35.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.
|
|
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;
|
package/types/pull-request.d.mts
CHANGED