github-repository-provider 9.0.17 → 9.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": "github-repository-provider",
3
- "version": "9.0.17",
3
+ "version": "9.0.18",
4
4
  "publishConfig": {
5
5
  "access": "public",
6
6
  "provenance": true
@@ -40,19 +40,19 @@
40
40
  "fetch-rate-limit-util": "^4.3.1",
41
41
  "matching-iterator": "^2.1.3",
42
42
  "one-time-execution-method": "^3.1.1",
43
- "repository-provider": "^35.2.21"
43
+ "repository-provider": "^35.2.22"
44
44
  },
45
45
  "devDependencies": {
46
- "@types/node": "^20.14.2",
46
+ "@types/node": "^20.14.9",
47
47
  "ava": "^6.1.3",
48
- "c8": "^9.1.0",
48
+ "c8": "^10.1.2",
49
49
  "documentation": "^14.0.3",
50
50
  "etag-cache-leveldb": "^2.1.2",
51
51
  "leveldown": "^6.1.1",
52
52
  "levelup": "^5.1.1",
53
- "repository-provider-test-support": "^3.1.5",
53
+ "repository-provider-test-support": "^3.1.6",
54
54
  "semantic-release": "^24.0.0",
55
- "typescript": "^5.4.5"
55
+ "typescript": "^5.5.3"
56
56
  },
57
57
  "engines": {
58
58
  "node": ">=20.12.2"
@@ -30,10 +30,7 @@ export class GithubProvider extends MultiGroupProvider {
30
30
  additionalAttributes: string[];
31
31
  description?: string;
32
32
  set?: Function;
33
- get?: Function; /**
34
- * We are called github.
35
- * @return {string} github
36
- */
33
+ get?: Function;
37
34
  };
38
35
  ssh: {
39
36
  default: string;
@@ -46,11 +43,8 @@ export class GithubProvider extends MultiGroupProvider {
46
43
  additionalAttributes: string[];
47
44
  description?: string;
48
45
  set?: Function;
49
- get?: Function; /**
50
- * We are called github.
51
- * @return {string} github
52
- */
53
- env?: string | string[];
46
+ get?: Function;
47
+ env?: string[] | string;
54
48
  };
55
49
  url: {
56
50
  env: string;
@@ -64,10 +58,7 @@ export class GithubProvider extends MultiGroupProvider {
64
58
  private?: boolean;
65
59
  additionalAttributes: string[];
66
60
  description?: string;
67
- get?: Function; /**
68
- * We are called github.
69
- * @return {string} github
70
- */
61
+ get?: Function;
71
62
  };
72
63
  api: {
73
64
  env: string;
@@ -81,10 +72,7 @@ export class GithubProvider extends MultiGroupProvider {
81
72
  private?: boolean;
82
73
  additionalAttributes: string[];
83
74
  description?: string;
84
- get?: Function; /**
85
- * We are called github.
86
- * @return {string} github
87
- */
75
+ get?: Function;
88
76
  };
89
77
  "authentication.token": {
90
78
  env: string[];
@@ -100,10 +88,7 @@ export class GithubProvider extends MultiGroupProvider {
100
88
  description?: string;
101
89
  default?: any;
102
90
  set?: Function;
103
- get?: Function; /**
104
- * We are called github.
105
- * @return {string} github
106
- */
91
+ get?: Function;
107
92
  };
108
93
  priority: {
109
94
  default: number;
@@ -116,11 +101,8 @@ export class GithubProvider extends MultiGroupProvider {
116
101
  additionalAttributes: string[];
117
102
  description?: string;
118
103
  set?: Function;
119
- get?: Function; /**
120
- * We are called github.
121
- * @return {string} github
122
- */
123
- env?: string | string[];
104
+ get?: Function;
105
+ env?: string[] | string;
124
106
  };
125
107
  name: {
126
108
  env: string;
@@ -149,7 +131,7 @@ export class GithubProvider extends MultiGroupProvider {
149
131
  description?: string;
150
132
  set?: Function;
151
133
  get?: Function;
152
- env?: string | string[];
134
+ env?: string[] | string;
153
135
  };
154
136
  };
155
137
  fetch(url: any, options?: {}): Promise<Response>;
@@ -25,7 +25,7 @@ export class GithubPullRequest extends PullRequest {
25
25
  description?: string;
26
26
  set?: Function;
27
27
  get?: Function;
28
- env?: string | string[];
28
+ env?: string[] | string;
29
29
  };
30
30
  locked: import("pacc").AttributeDefinition;
31
31
  merged: import("pacc").AttributeDefinition;
@@ -31,7 +31,7 @@ export class GithubRepository extends Repository {
31
31
  description?: string;
32
32
  set?: Function;
33
33
  get?: Function;
34
- env?: string | string[];
34
+ env?: string[] | string;
35
35
  };
36
36
  cloneURL: import("pacc").AttributeDefinition;
37
37
  isArchived: import("pacc").AttributeDefinition;
@@ -39,7 +39,11 @@ export class GithubRepository extends Repository {
39
39
  isDisabled: import("pacc").AttributeDefinition;
40
40
  isTemplate: import("pacc").AttributeDefinition;
41
41
  isFork: import("pacc").AttributeDefinition;
42
- id: import("pacc").AttributeDefinition;
42
+ id: import(
43
+ /**
44
+ * @return {string} "main"
45
+ */
46
+ "pacc").AttributeDefinition;
43
47
  name: import("pacc").AttributeDefinition;
44
48
  description: import("pacc").AttributeDefinition;
45
49
  };