@gitbeaker/core 39.14.0 → 39.16.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 CHANGED
@@ -228,6 +228,7 @@ import { Gitlab } from '@gitbeaker/core';
228
228
  <td align="center" valign="top" width="3.84%"><a href="https://github.com/ArnaudTA"><img src="https://images.weserv.nl/?url=https://avatars.githubusercontent.com/u/33383276?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="ArnaudTA"/></td>
229
229
  <td align="center" valign="top" width="3.84%"><a href="https://github.com/kouak"><img src="https://images.weserv.nl/?url=https://avatars.githubusercontent.com/u/48335?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="Benjamin Beret"/></td>
230
230
  <td align="center" valign="top" width="3.84%"><a href="https://github.com/demedos"><img src="https://images.weserv.nl/?url=https://avatars.githubusercontent.com/u/16702156?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="Alessandro Diez"/></td>
231
+ <td align="center" valign="top" width="3.84%"><a href="https://github.com/artlist-scottambrose"><img src="https://images.weserv.nl/?url=https://avatars.githubusercontent.com/u/124692101?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="artlist-scottambrose"/></td>
231
232
  </tr>
232
233
  </p>
233
234
 
package/dist/index.d.mts CHANGED
@@ -584,7 +584,7 @@ type AllGroupProjectsOptions = {
584
584
  visibility?: string;
585
585
  orderBy?: 'id' | 'name' | 'path' | 'created_at' | 'updated_at' | 'similarity' | 'last_activity_at';
586
586
  sort?: 'asc' | 'desc';
587
- archive?: boolean;
587
+ archived?: boolean;
588
588
  search?: string;
589
589
  simple?: boolean;
590
590
  owned?: boolean;
package/dist/index.d.ts CHANGED
@@ -584,7 +584,7 @@ type AllGroupProjectsOptions = {
584
584
  visibility?: string;
585
585
  orderBy?: 'id' | 'name' | 'path' | 'created_at' | 'updated_at' | 'similarity' | 'last_activity_at';
586
586
  sort?: 'asc' | 'desc';
587
- archive?: boolean;
587
+ archived?: boolean;
588
588
  search?: string;
589
589
  simple?: boolean;
590
590
  owned?: boolean;
package/dist/index.js CHANGED
@@ -4113,7 +4113,7 @@ var MergeTrains = class extends requesterUtils.BaseResource {
4113
4113
  );
4114
4114
  }
4115
4115
  addMergeRequest(projectId, mergeRequestIId, options) {
4116
- return RequestHelper.get()(
4116
+ return RequestHelper.post()(
4117
4117
  this,
4118
4118
  endpoint`projects/${projectId}/merge_trains/merge_requests/${mergeRequestIId}`,
4119
4119
  options
package/dist/index.mjs CHANGED
@@ -4107,7 +4107,7 @@ var MergeTrains = class extends BaseResource {
4107
4107
  );
4108
4108
  }
4109
4109
  addMergeRequest(projectId, mergeRequestIId, options) {
4110
- return RequestHelper.get()(
4110
+ return RequestHelper.post()(
4111
4111
  this,
4112
4112
  endpoint`projects/${projectId}/merge_trains/merge_requests/${mergeRequestIId}`,
4113
4113
  options
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gitbeaker/core",
3
- "version": "39.14.0",
3
+ "version": "39.16.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": "^39.14.0",
58
+ "@gitbeaker/requester-utils": "^39.16.0",
59
59
  "qs": "^6.11.2",
60
60
  "xcase": "^2.0.1"
61
61
  },
@@ -66,5 +66,5 @@
66
66
  "tsx": "^3.12.7",
67
67
  "typescript": "^5.1.6"
68
68
  },
69
- "gitHead": "4f9ec2fcdaddda7e1a091f740ae99b1841c69274"
69
+ "gitHead": "8cb5479540aac6068628559cc19554161f39cded"
70
70
  }