@gitbeaker/core 40.1.1 → 40.1.3
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 +9 -2
- package/dist/index.d.ts +9 -2
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -1908,6 +1908,7 @@ import { Gitlab } from '@gitbeaker/core';
|
|
|
1908
1908
|
<td align="center" valign="top" width="0.33%"><a href="https://github.com/vitamindck"><img src="https://images.weserv.nl/?url=https://avatars.githubusercontent.com/u/10766587?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="DK"/></td>
|
|
1909
1909
|
<td align="center" valign="top" width="0.33%"><a href="http://www.koenbrouwer.com/"><img src="https://images.weserv.nl/?url=https://avatars.githubusercontent.com/u/3260168?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="Koen Brouwer"/></td>
|
|
1910
1910
|
<td align="center" valign="top" width="0.33%"><a href="https://scrumplex.net/"><img src="https://images.weserv.nl/?url=https://avatars.githubusercontent.com/u/11587657?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="Sefa Eyeoglu"/></td>
|
|
1911
|
+
<td align="center" valign="top" width="0.33%"><a href="https://github.com/crazfb"><img src="https://images.weserv.nl/?url=https://avatars.githubusercontent.com/u/157008803?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="Carmi Raz"/></td>
|
|
1911
1912
|
</tr>
|
|
1912
1913
|
</p>
|
|
1913
1914
|
|
package/dist/index.d.mts
CHANGED
|
@@ -599,6 +599,7 @@ type AllGroupsOptions = {
|
|
|
599
599
|
owned?: boolean;
|
|
600
600
|
minAccessLevel?: Exclude<AccessLevel, AccessLevel.ADMIN>;
|
|
601
601
|
topLevelOnly?: boolean;
|
|
602
|
+
markedForDeletionOn?: string;
|
|
602
603
|
};
|
|
603
604
|
type AllGroupProjectsOptions = {
|
|
604
605
|
visibility?: 'public' | 'internal' | 'private';
|
|
@@ -937,6 +938,7 @@ type AllProjectsOptions = {
|
|
|
937
938
|
withProgrammingLanguage?: string;
|
|
938
939
|
updatedBefore?: string;
|
|
939
940
|
updatedAfter?: string;
|
|
941
|
+
markedForDeletionOn?: string;
|
|
940
942
|
};
|
|
941
943
|
type CreateProjectOptions = {
|
|
942
944
|
userId?: number;
|
|
@@ -8244,6 +8246,7 @@ interface WebhookLabelSchema {
|
|
|
8244
8246
|
group_id: number;
|
|
8245
8247
|
}
|
|
8246
8248
|
interface WebhookProjectSchema {
|
|
8249
|
+
id: number;
|
|
8247
8250
|
name: string;
|
|
8248
8251
|
description: string;
|
|
8249
8252
|
web_url: string;
|
|
@@ -8555,6 +8558,10 @@ interface WebhookMergeRequestEventSchema extends BaseWebhookEventSchema {
|
|
|
8555
8558
|
};
|
|
8556
8559
|
labels: WebhookLabelSchema[] | null;
|
|
8557
8560
|
changes: {
|
|
8561
|
+
target_branch: {
|
|
8562
|
+
previous: string | null;
|
|
8563
|
+
current: string | null;
|
|
8564
|
+
};
|
|
8558
8565
|
updated_by_id: {
|
|
8559
8566
|
previous: number | null;
|
|
8560
8567
|
current: number | null;
|
|
@@ -8580,8 +8587,8 @@ interface WebhookMergeRequestEventSchema extends BaseWebhookEventSchema {
|
|
|
8580
8587
|
current: number | null;
|
|
8581
8588
|
};
|
|
8582
8589
|
};
|
|
8583
|
-
assignees: Pick<SimpleUserSchema, 'name' | 'username' | 'avatar_url'>[] | null;
|
|
8584
|
-
reviewers:
|
|
8590
|
+
assignees: Pick<SimpleUserSchema, 'id' | 'name' | 'username' | 'avatar_url'>[] | null;
|
|
8591
|
+
reviewers: Pick<SimpleUserSchema, 'id' | 'name' | 'username' | 'avatar_url'>[] | null;
|
|
8585
8592
|
}
|
|
8586
8593
|
interface WebhookWikiEventSchema extends MappedOmit<BaseWebhookEventSchema, 'event_name'> {
|
|
8587
8594
|
object_kind: 'wiki_page';
|
package/dist/index.d.ts
CHANGED
|
@@ -599,6 +599,7 @@ type AllGroupsOptions = {
|
|
|
599
599
|
owned?: boolean;
|
|
600
600
|
minAccessLevel?: Exclude<AccessLevel, AccessLevel.ADMIN>;
|
|
601
601
|
topLevelOnly?: boolean;
|
|
602
|
+
markedForDeletionOn?: string;
|
|
602
603
|
};
|
|
603
604
|
type AllGroupProjectsOptions = {
|
|
604
605
|
visibility?: 'public' | 'internal' | 'private';
|
|
@@ -937,6 +938,7 @@ type AllProjectsOptions = {
|
|
|
937
938
|
withProgrammingLanguage?: string;
|
|
938
939
|
updatedBefore?: string;
|
|
939
940
|
updatedAfter?: string;
|
|
941
|
+
markedForDeletionOn?: string;
|
|
940
942
|
};
|
|
941
943
|
type CreateProjectOptions = {
|
|
942
944
|
userId?: number;
|
|
@@ -8244,6 +8246,7 @@ interface WebhookLabelSchema {
|
|
|
8244
8246
|
group_id: number;
|
|
8245
8247
|
}
|
|
8246
8248
|
interface WebhookProjectSchema {
|
|
8249
|
+
id: number;
|
|
8247
8250
|
name: string;
|
|
8248
8251
|
description: string;
|
|
8249
8252
|
web_url: string;
|
|
@@ -8555,6 +8558,10 @@ interface WebhookMergeRequestEventSchema extends BaseWebhookEventSchema {
|
|
|
8555
8558
|
};
|
|
8556
8559
|
labels: WebhookLabelSchema[] | null;
|
|
8557
8560
|
changes: {
|
|
8561
|
+
target_branch: {
|
|
8562
|
+
previous: string | null;
|
|
8563
|
+
current: string | null;
|
|
8564
|
+
};
|
|
8558
8565
|
updated_by_id: {
|
|
8559
8566
|
previous: number | null;
|
|
8560
8567
|
current: number | null;
|
|
@@ -8580,8 +8587,8 @@ interface WebhookMergeRequestEventSchema extends BaseWebhookEventSchema {
|
|
|
8580
8587
|
current: number | null;
|
|
8581
8588
|
};
|
|
8582
8589
|
};
|
|
8583
|
-
assignees: Pick<SimpleUserSchema, 'name' | 'username' | 'avatar_url'>[] | null;
|
|
8584
|
-
reviewers:
|
|
8590
|
+
assignees: Pick<SimpleUserSchema, 'id' | 'name' | 'username' | 'avatar_url'>[] | null;
|
|
8591
|
+
reviewers: Pick<SimpleUserSchema, 'id' | 'name' | 'username' | 'avatar_url'>[] | null;
|
|
8585
8592
|
}
|
|
8586
8593
|
interface WebhookWikiEventSchema extends MappedOmit<BaseWebhookEventSchema, 'event_name'> {
|
|
8587
8594
|
object_kind: 'wiki_page';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gitbeaker/core",
|
|
3
|
-
"version": "40.1.
|
|
3
|
+
"version": "40.1.3",
|
|
4
4
|
"description": "Core API implementation of the GitLab API",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"engines": {
|
|
@@ -51,7 +51,7 @@
|
|
|
51
51
|
"lint:fix": "yarn lint --fix"
|
|
52
52
|
},
|
|
53
53
|
"dependencies": {
|
|
54
|
-
"@gitbeaker/requester-utils": "^40.1.
|
|
54
|
+
"@gitbeaker/requester-utils": "^40.1.3",
|
|
55
55
|
"qs": "^6.12.2",
|
|
56
56
|
"xcase": "^2.0.1"
|
|
57
57
|
},
|
|
@@ -62,5 +62,5 @@
|
|
|
62
62
|
"tsx": "^4.16.2",
|
|
63
63
|
"typescript": "^5.5.3"
|
|
64
64
|
},
|
|
65
|
-
"gitHead": "
|
|
65
|
+
"gitHead": "a7ffd3a6b2a10dc0cb947b4824a51227ce1fae83"
|
|
66
66
|
}
|