@gitbeaker/core 38.4.0 → 38.6.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.
- package/README.md +1 -0
- package/dist/index.d.ts +3 -0
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -221,6 +221,7 @@ import { Gitlab } from '@gitbeaker/core';
|
|
|
221
221
|
<td align="center" valign="top" width="3.84%"><a href="https://github.com/seb0uil"><img src="https://images.weserv.nl/?url=https://avatars.githubusercontent.com/u/5122626?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="Seb0uil"/></td>
|
|
222
222
|
<td align="center" valign="top" width="3.84%"><a href="http://merorafael.info/"><img src="https://images.weserv.nl/?url=https://avatars.githubusercontent.com/u/3404989?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="Rafael Mello"/></td>
|
|
223
223
|
<td align="center" valign="top" width="3.84%"><a href="https://github.com/tbazin"><img src="https://images.weserv.nl/?url=https://avatars.githubusercontent.com/u/9104039?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="Théis Bazin"/></td>
|
|
224
|
+
<td align="center" valign="top" width="3.84%"><a href="http://spencersalisbury.com/"><img src="https://images.weserv.nl/?url=https://avatars.githubusercontent.com/u/8053224?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="Spencer Salisbury"/></td>
|
|
224
225
|
</tr>
|
|
225
226
|
</p>
|
|
226
227
|
|
package/dist/index.d.ts
CHANGED
|
@@ -2465,13 +2465,16 @@ type EditMergeRequestOptions = {
|
|
|
2465
2465
|
targetBranch?: number;
|
|
2466
2466
|
title?: string;
|
|
2467
2467
|
assigneeId?: number;
|
|
2468
|
+
assigneeIds?: number[];
|
|
2468
2469
|
reviewerId?: number;
|
|
2470
|
+
reviewerIds?: number[];
|
|
2469
2471
|
milestoneId?: number;
|
|
2470
2472
|
labels?: string | Array<string>;
|
|
2471
2473
|
description?: string;
|
|
2472
2474
|
stateEvent?: string;
|
|
2473
2475
|
removeSourceBranch?: boolean;
|
|
2474
2476
|
squash?: boolean;
|
|
2477
|
+
squashOnMerge?: boolean;
|
|
2475
2478
|
discussionLocked?: boolean;
|
|
2476
2479
|
allowCollaboration?: boolean;
|
|
2477
2480
|
allowMaintainerToPush?: boolean;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gitbeaker/core",
|
|
3
|
-
"version": "38.
|
|
3
|
+
"version": "38.6.0",
|
|
4
4
|
"description": "Core API implementation of the GitLab API",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"engines": {
|
|
@@ -55,7 +55,7 @@
|
|
|
55
55
|
"release": "auto shipit"
|
|
56
56
|
},
|
|
57
57
|
"dependencies": {
|
|
58
|
-
"@gitbeaker/requester-utils": "^38.
|
|
58
|
+
"@gitbeaker/requester-utils": "^38.6.0",
|
|
59
59
|
"qs": "^6.11.1",
|
|
60
60
|
"xcase": "^2.0.1"
|
|
61
61
|
},
|
|
@@ -66,5 +66,5 @@
|
|
|
66
66
|
"tsx": "^3.12.6",
|
|
67
67
|
"typescript": "^5.0.4"
|
|
68
68
|
},
|
|
69
|
-
"gitHead": "
|
|
69
|
+
"gitHead": "a31690e51e5add769a2adbc145bd2620a317dcbb"
|
|
70
70
|
}
|