@gitbeaker/core 40.4.0 → 40.5.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
@@ -1917,6 +1917,7 @@ import { Gitlab } from '@gitbeaker/core';
1917
1917
  <td align="center" valign="top" width="0.33%"><a href="https://github.com/unilynx"><img src="https://images.weserv.nl/?url=https://avatars.githubusercontent.com/u/2772353?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="Arnold Hendriks"/></td>
1918
1918
  <td align="center" valign="top" width="0.33%"><a href="https://baylee.dev/"><img src="https://images.weserv.nl/?url=https://avatars.githubusercontent.com/u/119542904?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="Baylee Schmeisser"/></td>
1919
1919
  <td align="center" valign="top" width="0.33%"><a href="https://github.com/andys8"><img src="https://images.weserv.nl/?url=https://avatars.githubusercontent.com/u/13085980?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="Andy"/></td>
1920
+ <td align="center" valign="top" width="0.33%"><a href="https://github.com/roberta-pavel"><img src="https://images.weserv.nl/?url=https://avatars.githubusercontent.com/u/26488965?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="roberta-pavel"/></td>
1920
1921
  </tr>
1921
1922
  </p>
1922
1923
 
package/dist/index.js CHANGED
@@ -1656,7 +1656,7 @@ var ResourceInvitations = class extends requesterUtils.BaseResource {
1656
1656
  );
1657
1657
  }
1658
1658
  remove(resourceId, email, options) {
1659
- return RequestHelper.put()(
1659
+ return RequestHelper.del()(
1660
1660
  this,
1661
1661
  endpoint`${resourceId}/invitations/${email}`,
1662
1662
  options
package/dist/index.mjs CHANGED
@@ -1650,7 +1650,7 @@ var ResourceInvitations = class extends BaseResource {
1650
1650
  );
1651
1651
  }
1652
1652
  remove(resourceId, email, options) {
1653
- return RequestHelper.put()(
1653
+ return RequestHelper.del()(
1654
1654
  this,
1655
1655
  endpoint`${resourceId}/invitations/${email}`,
1656
1656
  options
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gitbeaker/core",
3
- "version": "40.4.0",
3
+ "version": "40.5.0",
4
4
  "description": "Core API implementation of the GitLab API",
5
5
  "license": "MIT",
6
6
  "engines": {
@@ -52,7 +52,7 @@
52
52
  "lint:fix": "yarn lint --fix"
53
53
  },
54
54
  "dependencies": {
55
- "@gitbeaker/requester-utils": "^40.4.0",
55
+ "@gitbeaker/requester-utils": "^40.5.0",
56
56
  "qs": "^6.12.2",
57
57
  "xcase": "^2.0.1"
58
58
  },
@@ -63,5 +63,5 @@
63
63
  "tsx": "^4.16.2",
64
64
  "typescript": "^5.5.3"
65
65
  },
66
- "gitHead": "6a41c007ead62f2cb283e07fbc0910b835dfce0c"
66
+ "gitHead": "73f38ddc911b3108f6c8327d896cc869b1999d3f"
67
67
  }