@gitbeaker/core 39.2.0 → 39.3.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.mts +10 -1
- package/dist/index.d.ts +10 -1
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -225,6 +225,7 @@ import { Gitlab } from '@gitbeaker/core';
|
|
|
225
225
|
<td align="center" valign="top" width="3.84%"><a href="https://simonecorsi.dev/"><img src="https://images.weserv.nl/?url=https://avatars.githubusercontent.com/u/5617452?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="Simone Corsi"/></td>
|
|
226
226
|
<td align="center" valign="top" width="3.84%"><a href="https://github.com/Bambii556"><img src="https://images.weserv.nl/?url=https://avatars.githubusercontent.com/u/34485027?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="Bambii"/></td>
|
|
227
227
|
<td align="center" valign="top" width="3.84%"><a href="https://github.com/ravewill"><img src="https://images.weserv.nl/?url=https://avatars.githubusercontent.com/u/128541928?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="Will"/></td>
|
|
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>
|
|
228
229
|
</tr>
|
|
229
230
|
</p>
|
|
230
231
|
|
package/dist/index.d.mts
CHANGED
|
@@ -302,11 +302,13 @@ interface UserRunnerSchema extends Record<string, unknown> {
|
|
|
302
302
|
}
|
|
303
303
|
type AllUsersOptions = {
|
|
304
304
|
orderBy?: 'name' | 'username' | 'created_at' | 'updated_at';
|
|
305
|
+
createdBy?: string;
|
|
305
306
|
sort?: 'asc' | 'desc';
|
|
306
307
|
twoFactor?: string;
|
|
307
308
|
withoutProjects?: boolean;
|
|
308
309
|
admins?: boolean;
|
|
309
310
|
samlProviderId?: number;
|
|
311
|
+
skipLdap?: boolean;
|
|
310
312
|
search?: string;
|
|
311
313
|
username?: string;
|
|
312
314
|
active?: boolean;
|
|
@@ -315,7 +317,14 @@ type AllUsersOptions = {
|
|
|
315
317
|
excludeInternal?: boolean;
|
|
316
318
|
excludeExternal?: boolean;
|
|
317
319
|
withoutProjectBots?: boolean;
|
|
318
|
-
|
|
320
|
+
createdBefore?: string;
|
|
321
|
+
createdAfter?: string;
|
|
322
|
+
withCustomAttributes?: boolean;
|
|
323
|
+
customAttributes?: Record<string, string>;
|
|
324
|
+
} & AllOrNone<{
|
|
325
|
+
provider: string;
|
|
326
|
+
externUid: string;
|
|
327
|
+
}>;
|
|
319
328
|
type CreateUserOptions = {
|
|
320
329
|
admin?: boolean;
|
|
321
330
|
auditor?: boolean;
|
package/dist/index.d.ts
CHANGED
|
@@ -302,11 +302,13 @@ interface UserRunnerSchema extends Record<string, unknown> {
|
|
|
302
302
|
}
|
|
303
303
|
type AllUsersOptions = {
|
|
304
304
|
orderBy?: 'name' | 'username' | 'created_at' | 'updated_at';
|
|
305
|
+
createdBy?: string;
|
|
305
306
|
sort?: 'asc' | 'desc';
|
|
306
307
|
twoFactor?: string;
|
|
307
308
|
withoutProjects?: boolean;
|
|
308
309
|
admins?: boolean;
|
|
309
310
|
samlProviderId?: number;
|
|
311
|
+
skipLdap?: boolean;
|
|
310
312
|
search?: string;
|
|
311
313
|
username?: string;
|
|
312
314
|
active?: boolean;
|
|
@@ -315,7 +317,14 @@ type AllUsersOptions = {
|
|
|
315
317
|
excludeInternal?: boolean;
|
|
316
318
|
excludeExternal?: boolean;
|
|
317
319
|
withoutProjectBots?: boolean;
|
|
318
|
-
|
|
320
|
+
createdBefore?: string;
|
|
321
|
+
createdAfter?: string;
|
|
322
|
+
withCustomAttributes?: boolean;
|
|
323
|
+
customAttributes?: Record<string, string>;
|
|
324
|
+
} & AllOrNone<{
|
|
325
|
+
provider: string;
|
|
326
|
+
externUid: string;
|
|
327
|
+
}>;
|
|
319
328
|
type CreateUserOptions = {
|
|
320
329
|
admin?: boolean;
|
|
321
330
|
auditor?: boolean;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gitbeaker/core",
|
|
3
|
-
"version": "39.
|
|
3
|
+
"version": "39.3.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.
|
|
58
|
+
"@gitbeaker/requester-utils": "^39.3.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.3"
|
|
68
68
|
},
|
|
69
|
-
"gitHead": "
|
|
69
|
+
"gitHead": "39f6206dc562a762569da6570cc2a1586ab11f62"
|
|
70
70
|
}
|