repository-provider 35.5.6 → 35.5.7
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 +1 -1
- package/src/base-provider.mjs +2 -1
- package/src/named-object.mjs +3 -4
- package/types/base-provider.d.mts +2 -1
- package/types/hook.d.mts +1 -1
- package/types/milestone.d.mts +1 -1
- package/types/named-object.d.mts +1 -1
- package/types/pull-request.d.mts +1 -1
- package/types/repository.d.mts +1 -1
package/package.json
CHANGED
package/src/base-provider.mjs
CHANGED
|
@@ -119,6 +119,8 @@ export class BaseProvider extends BaseObject {
|
|
|
119
119
|
}
|
|
120
120
|
|
|
121
121
|
static attributes = {
|
|
122
|
+
...BaseObject.attributes,
|
|
123
|
+
|
|
122
124
|
/**
|
|
123
125
|
* Name of the provider.
|
|
124
126
|
*/
|
|
@@ -128,7 +130,6 @@ export class BaseProvider extends BaseObject {
|
|
|
128
130
|
},
|
|
129
131
|
|
|
130
132
|
url: url_attribute,
|
|
131
|
-
description: description_attribute,
|
|
132
133
|
priority: priority_attribute,
|
|
133
134
|
|
|
134
135
|
/**
|
package/src/named-object.mjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { name_attribute
|
|
1
|
+
import { name_attribute } from "pacc";
|
|
2
2
|
import { optionJSON } from "./attribute-extras.mjs";
|
|
3
3
|
import { BaseObject } from "./base-object.mjs";
|
|
4
4
|
|
|
@@ -15,9 +15,8 @@ import { BaseObject } from "./base-object.mjs";
|
|
|
15
15
|
*/
|
|
16
16
|
export class NamedObject extends BaseObject {
|
|
17
17
|
static attributes = {
|
|
18
|
-
|
|
19
|
-
name: name_attribute
|
|
20
|
-
description: description_attribute
|
|
18
|
+
...BaseObject.attributes,
|
|
19
|
+
name: name_attribute
|
|
21
20
|
};
|
|
22
21
|
|
|
23
22
|
constructor(name, options, additionalProperties) {
|
|
@@ -67,7 +67,6 @@ export class BaseProvider extends BaseObject {
|
|
|
67
67
|
get?: Function;
|
|
68
68
|
};
|
|
69
69
|
url: import("pacc").AttributeDefinition;
|
|
70
|
-
description: import("pacc").AttributeDefinition;
|
|
71
70
|
priority: import("pacc").AttributeDefinition;
|
|
72
71
|
/**
|
|
73
72
|
* To forward info/warn and error messages to
|
|
@@ -86,6 +85,8 @@ export class BaseProvider extends BaseObject {
|
|
|
86
85
|
get?: Function;
|
|
87
86
|
env?: string[] | string;
|
|
88
87
|
};
|
|
88
|
+
id: import("pacc").AttributeDefinition;
|
|
89
|
+
description: import("pacc").AttributeDefinition;
|
|
89
90
|
};
|
|
90
91
|
/**
|
|
91
92
|
* @typedef {Object} parsedName
|
package/types/hook.d.mts
CHANGED
|
@@ -39,8 +39,8 @@ export class Hook extends OwnedObject {
|
|
|
39
39
|
type: string;
|
|
40
40
|
default: Set<string>;
|
|
41
41
|
};
|
|
42
|
-
id: import("pacc").AttributeDefinition;
|
|
43
42
|
name: import("pacc").AttributeDefinition;
|
|
43
|
+
id: import("pacc").AttributeDefinition;
|
|
44
44
|
description: import("pacc").AttributeDefinition;
|
|
45
45
|
};
|
|
46
46
|
static get delteteMethodName(): string;
|
package/types/milestone.d.mts
CHANGED
|
@@ -3,8 +3,8 @@
|
|
|
3
3
|
export class Milestone extends OwnedObject {
|
|
4
4
|
static attributes: {
|
|
5
5
|
state: import("pacc").AttributeDefinition;
|
|
6
|
-
id: import("pacc").AttributeDefinition;
|
|
7
6
|
name: import("pacc").AttributeDefinition;
|
|
7
|
+
id: import("pacc").AttributeDefinition;
|
|
8
8
|
description: import("pacc").AttributeDefinition;
|
|
9
9
|
};
|
|
10
10
|
issues(): AsyncGenerator<never, void, unknown>;
|
package/types/named-object.d.mts
CHANGED
|
@@ -11,8 +11,8 @@
|
|
|
11
11
|
*/
|
|
12
12
|
export class NamedObject extends BaseObject {
|
|
13
13
|
static attributes: {
|
|
14
|
-
id: import("pacc").AttributeDefinition;
|
|
15
14
|
name: import("pacc").AttributeDefinition;
|
|
15
|
+
id: import("pacc").AttributeDefinition;
|
|
16
16
|
description: import("pacc").AttributeDefinition;
|
|
17
17
|
};
|
|
18
18
|
constructor(name: any, options: any, additionalProperties: any);
|
package/types/pull-request.d.mts
CHANGED
|
@@ -102,8 +102,8 @@ export class PullRequest extends OwnedObject {
|
|
|
102
102
|
draft: import("pacc").AttributeDefinition;
|
|
103
103
|
dry: import("pacc").AttributeDefinition;
|
|
104
104
|
empty: import("pacc").AttributeDefinition;
|
|
105
|
-
id: import("pacc").AttributeDefinition;
|
|
106
105
|
name: import("pacc").AttributeDefinition;
|
|
106
|
+
id: import("pacc").AttributeDefinition;
|
|
107
107
|
description: import("pacc").AttributeDefinition;
|
|
108
108
|
};
|
|
109
109
|
/** @type {Branch} */ source: Branch;
|
package/types/repository.d.mts
CHANGED
|
@@ -41,8 +41,8 @@ export class Repository extends OwnedObject {
|
|
|
41
41
|
isDisabled: import("pacc").AttributeDefinition;
|
|
42
42
|
isTemplate: import("pacc").AttributeDefinition;
|
|
43
43
|
isFork: import("pacc").AttributeDefinition;
|
|
44
|
-
id: import("pacc").AttributeDefinition;
|
|
45
44
|
name: import("pacc").AttributeDefinition;
|
|
45
|
+
id: import("pacc").AttributeDefinition;
|
|
46
46
|
description: import("pacc").AttributeDefinition;
|
|
47
47
|
};
|
|
48
48
|
/**
|