@gitbeaker/requester-utils 43.4.0 → 43.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
@@ -229,6 +229,7 @@ import { RequesterUtils, BaseResource } from '@gitbeaker/requester-utils';
229
229
  <td align="center" valign="top" width="0.33%"><a href="https://github.com/zk-kb4"><img src="https://images.weserv.nl/?url=https://avatars.githubusercontent.com/u/42388953?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="Zack"/></td>
230
230
  <td align="center" valign="top" width="0.33%"><a href="https://github.com/kayw-geek"><img src="https://images.weserv.nl/?url=https://avatars.githubusercontent.com/u/29700073?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="Kay W."/></td>
231
231
  <td align="center" valign="top" width="0.33%"><a href="https://ffflorian.dev/"><img src="https://images.weserv.nl/?url=https://avatars.githubusercontent.com/u/5497598?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="Florian Imdahl"/></td>
232
+ <td align="center" valign="top" width="0.33%"><a href="https://github.com/lanthier"><img src="https://images.weserv.nl/?url=https://avatars.githubusercontent.com/u/9666344?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="lanthier"/></td>
232
233
  </tr>
233
234
  </p>
234
235
 
package/dist/index.d.mts CHANGED
@@ -87,8 +87,7 @@ interface BaseRequestOptionsWithAccessToken<C> extends RootResourceOptions<C> {
87
87
  interface BaseRequestOptionsWithJobToken<C> extends RootResourceOptions<C> {
88
88
  jobToken: GitlabToken;
89
89
  }
90
- interface BaseRequestOptionsWithoutToken<C> extends RootResourceOptions<C> {
91
- }
90
+ type BaseRequestOptionsWithoutToken<C> = RootResourceOptions<C>;
92
91
  type BaseResourceOptions<C> = BaseRequestOptionsWithoutToken<C> | BaseRequestOptionsWithOAuthToken<C> | BaseRequestOptionsWithAccessToken<C> | BaseRequestOptionsWithJobToken<C>;
93
92
  declare class BaseResource<C extends boolean = false> {
94
93
  readonly url: string;
package/dist/index.d.ts CHANGED
@@ -87,8 +87,7 @@ interface BaseRequestOptionsWithAccessToken<C> extends RootResourceOptions<C> {
87
87
  interface BaseRequestOptionsWithJobToken<C> extends RootResourceOptions<C> {
88
88
  jobToken: GitlabToken;
89
89
  }
90
- interface BaseRequestOptionsWithoutToken<C> extends RootResourceOptions<C> {
91
- }
90
+ type BaseRequestOptionsWithoutToken<C> = RootResourceOptions<C>;
92
91
  type BaseResourceOptions<C> = BaseRequestOptionsWithoutToken<C> | BaseRequestOptionsWithOAuthToken<C> | BaseRequestOptionsWithAccessToken<C> | BaseRequestOptionsWithJobToken<C>;
93
92
  declare class BaseResource<C extends boolean = false> {
94
93
  readonly url: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gitbeaker/requester-utils",
3
- "version": "43.4.0",
3
+ "version": "43.5.0",
4
4
  "description": "Utility functions for requester implementatons used in @gitbeaker",
5
5
  "license": "MIT",
6
6
  "engines": {
@@ -49,13 +49,13 @@
49
49
  "dependencies": {
50
50
  "picomatch-browser": "^2.2.6",
51
51
  "qs": "^6.14.0",
52
- "rate-limiter-flexible": "^4.0.1",
52
+ "rate-limiter-flexible": "^7.2.0",
53
53
  "xcase": "^2.0.1"
54
54
  },
55
55
  "devDependencies": {
56
- "@types/node": "^24.2.0",
56
+ "@types/node": "^24.3.0",
57
57
  "tsup": "^8.5.0",
58
58
  "typescript": "^5.9.2"
59
59
  },
60
- "gitHead": "dd8aa38674dba292815eb8cba325b08b2680936f"
60
+ "gitHead": "faad2c9e72b04588356ad081f9b79417039c03bc"
61
61
  }