@gitbeaker/core 35.1.0 → 35.2.0
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.
|
@@ -96,8 +96,8 @@ export declare class Issues<C extends boolean = false> extends BaseResource<C> {
|
|
|
96
96
|
edit(projectId: string | number, issueIid: number, options?: BaseRequestOptions): Promise<import("../infrastructure").CamelizedRecord<C, IssueSchema>>;
|
|
97
97
|
link(projectId: string | number, issueIId: number, targetProjectId: string | number, targetIssueIId: number, options?: BaseRequestOptions): Promise<import("../infrastructure").CamelizedRecord<C, IssueLinkSchema>>;
|
|
98
98
|
links(projectId: string | number, issueIid: number): Promise<import("../infrastructure").CamelizedRecord<C, IssueLinkSchema>[]>;
|
|
99
|
-
participants(projectId: string | number, issueIid: number, options?: Sudo): Promise<import("../infrastructure").CamelizedRecord<C, Omit<UserSchema, "created_at"
|
|
100
|
-
relatedMergeRequests(projectId: string | number, issueIid: number, options?: BaseRequestOptions): Promise<import("../infrastructure").CamelizedRecord<C, MergeRequestSchema
|
|
99
|
+
participants(projectId: string | number, issueIid: number, options?: Sudo): Promise<import("../infrastructure").CamelizedRecord<C, Omit<UserSchema, "created_at">>[]>;
|
|
100
|
+
relatedMergeRequests(projectId: string | number, issueIid: number, options?: BaseRequestOptions): Promise<import("../infrastructure").CamelizedRecord<C, MergeRequestSchema>[]>;
|
|
101
101
|
removeLink(projectId: string | number, issueIid: number, issueLinkId: string | number, options?: BaseRequestOptions): Promise<void>;
|
|
102
102
|
remove(projectId: string | number, issueIid: number, options?: Sudo): Promise<void>;
|
|
103
103
|
resetSpentTime(projectId: string | number, issueIid: number, options?: BaseRequestOptions): Promise<import("../infrastructure").CamelizedRecord<C, TimeStatsSchema>>;
|
|
@@ -80,5 +80,5 @@ export declare class Jobs<C extends boolean = false> extends BaseResource<C> {
|
|
|
80
80
|
} & Sudo): Promise<import("../infrastructure").CamelizedRecord<C, JobSchema>[]>;
|
|
81
81
|
showPipelineBridges(projectId: string | number, pipelineId: number, options?: {
|
|
82
82
|
scope?: JobScope;
|
|
83
|
-
} & Sudo): Promise<import("../infrastructure").CamelizedRecord<C, BridgeSchema
|
|
83
|
+
} & Sudo): Promise<import("../infrastructure").CamelizedRecord<C, BridgeSchema>[]>;
|
|
84
84
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gitbeaker/core",
|
|
3
3
|
"description": "Core API implementation of the GitLab API. Supports Promises, Async/Await.",
|
|
4
|
-
"version": "35.
|
|
4
|
+
"version": "35.2.0",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Justin Dalrymple"
|
|
7
7
|
},
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
"url": "https://github.com/jdalrymple/gitbeaker/issues"
|
|
10
10
|
},
|
|
11
11
|
"dependencies": {
|
|
12
|
-
"@gitbeaker/requester-utils": "^35.
|
|
12
|
+
"@gitbeaker/requester-utils": "^35.2.0",
|
|
13
13
|
"form-data": "^4.0.0",
|
|
14
14
|
"li": "^1.3.0",
|
|
15
15
|
"mime": "^3.0.0",
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
"@rollup/plugin-json": "^4.1.0",
|
|
21
21
|
"@rollup/plugin-replace": "^3.0.0",
|
|
22
22
|
"@types/mime": "^2.0.3",
|
|
23
|
-
"@types/node": "^
|
|
23
|
+
"@types/node": "^17.0.0",
|
|
24
24
|
"esm": "^3.2.25",
|
|
25
25
|
"fs-extra": "^10.0.0",
|
|
26
26
|
"get-param-names": "github:jdalrymple/get-param-names#1-improve-functionality",
|
|
@@ -59,5 +59,5 @@
|
|
|
59
59
|
"test:integration": "node --expose-gc ../../node_modules/.bin/jest --runInBand --logHeapUsage test/integration",
|
|
60
60
|
"test:unit": "node --expose-gc ../../node_modules/.bin/jest --runInBand --logHeapUsage test/unit"
|
|
61
61
|
},
|
|
62
|
-
"gitHead": "
|
|
62
|
+
"gitHead": "5ea91956b1f580bbbff26b42a5e82b3ac0775551"
|
|
63
63
|
}
|