@gitbeaker/core 42.2.0 → 42.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 +9 -0
- package/dist/index.d.ts +9 -0
- package/dist/index.js +7 -0
- package/dist/index.mjs +7 -0
- package/dist/map.json +6 -0
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -1933,6 +1933,7 @@ import { Gitlab } from '@gitbeaker/core';
|
|
|
1933
1933
|
<td align="center" valign="top" width="0.33%"><a href="https://github.com/talyssonoc"><img src="https://images.weserv.nl/?url=https://avatars.githubusercontent.com/u/4325587?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="Talysson de Oliveira Cassiano"/></td>
|
|
1934
1934
|
<td align="center" valign="top" width="0.33%"><a href="https://github.com/Sephyr0s"><img src="https://images.weserv.nl/?url=https://avatars.githubusercontent.com/u/34128667?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="Marco"/></td>
|
|
1935
1935
|
<td align="center" valign="top" width="0.33%"><a href="https://github.com/enduity"><img src="https://images.weserv.nl/?url=https://avatars.githubusercontent.com/u/19674002?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="Endrik Einberg"/></td>
|
|
1936
|
+
<td align="center" valign="top" width="0.33%"><a href="https://note.itswhat.me/"><img src="https://images.weserv.nl/?url=https://avatars.githubusercontent.com/u/38807139?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="Bryan Lee"/></td>
|
|
1936
1937
|
</tr>
|
|
1937
1938
|
</p>
|
|
1938
1939
|
|
package/dist/index.d.mts
CHANGED
|
@@ -1158,6 +1158,11 @@ declare class Projects<C extends boolean = false> extends BaseResource<C> {
|
|
|
1158
1158
|
sharedMinAccessLevel?: Exclude<AccessLevel, AccessLevel.ADMIN>;
|
|
1159
1159
|
sharedVisibleOnly?: boolean;
|
|
1160
1160
|
} & Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<SimpleGroupSchema[], C, E, void>>;
|
|
1161
|
+
allInvitedGroups<E extends boolean = false>(projectId: string | number, options?: {
|
|
1162
|
+
search?: string;
|
|
1163
|
+
sharedMinAccessLevel?: Exclude<AccessLevel, AccessLevel.ADMIN>;
|
|
1164
|
+
relation?: 'direct' | 'inherited';
|
|
1165
|
+
} & Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<SimpleGroupSchema[], C, E, void>>;
|
|
1161
1166
|
allSharableGroups<E extends boolean = false>(projectId: string | number, options?: {
|
|
1162
1167
|
search?: string;
|
|
1163
1168
|
} & Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<SimpleGroupSchema[], C, E, void>>;
|
|
@@ -8599,6 +8604,10 @@ interface WebhookMergeRequestEventSchema extends BaseWebhookEventSchema {
|
|
|
8599
8604
|
previous: string | null;
|
|
8600
8605
|
current: string | null;
|
|
8601
8606
|
};
|
|
8607
|
+
assignees: {
|
|
8608
|
+
previous: WebhookUserSchema[] | null;
|
|
8609
|
+
current: WebhookUserSchema[] | null;
|
|
8610
|
+
};
|
|
8602
8611
|
reviewers: {
|
|
8603
8612
|
previous: WebhookUserSchema[] | null;
|
|
8604
8613
|
current: WebhookUserSchema[] | null;
|
package/dist/index.d.ts
CHANGED
|
@@ -1158,6 +1158,11 @@ declare class Projects<C extends boolean = false> extends BaseResource<C> {
|
|
|
1158
1158
|
sharedMinAccessLevel?: Exclude<AccessLevel, AccessLevel.ADMIN>;
|
|
1159
1159
|
sharedVisibleOnly?: boolean;
|
|
1160
1160
|
} & Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<SimpleGroupSchema[], C, E, void>>;
|
|
1161
|
+
allInvitedGroups<E extends boolean = false>(projectId: string | number, options?: {
|
|
1162
|
+
search?: string;
|
|
1163
|
+
sharedMinAccessLevel?: Exclude<AccessLevel, AccessLevel.ADMIN>;
|
|
1164
|
+
relation?: 'direct' | 'inherited';
|
|
1165
|
+
} & Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<SimpleGroupSchema[], C, E, void>>;
|
|
1161
1166
|
allSharableGroups<E extends boolean = false>(projectId: string | number, options?: {
|
|
1162
1167
|
search?: string;
|
|
1163
1168
|
} & Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<SimpleGroupSchema[], C, E, void>>;
|
|
@@ -8599,6 +8604,10 @@ interface WebhookMergeRequestEventSchema extends BaseWebhookEventSchema {
|
|
|
8599
8604
|
previous: string | null;
|
|
8600
8605
|
current: string | null;
|
|
8601
8606
|
};
|
|
8607
|
+
assignees: {
|
|
8608
|
+
previous: WebhookUserSchema[] | null;
|
|
8609
|
+
current: WebhookUserSchema[] | null;
|
|
8610
|
+
};
|
|
8602
8611
|
reviewers: {
|
|
8603
8612
|
previous: WebhookUserSchema[] | null;
|
|
8604
8613
|
current: WebhookUserSchema[] | null;
|
package/dist/index.js
CHANGED
|
@@ -5083,6 +5083,13 @@ var Projects = class extends requesterUtils.BaseResource {
|
|
|
5083
5083
|
options
|
|
5084
5084
|
);
|
|
5085
5085
|
}
|
|
5086
|
+
allInvitedGroups(projectId, options) {
|
|
5087
|
+
return RequestHelper.get()(
|
|
5088
|
+
this,
|
|
5089
|
+
endpoint`projects/${projectId}/invited_groups`,
|
|
5090
|
+
options
|
|
5091
|
+
);
|
|
5092
|
+
}
|
|
5086
5093
|
allSharableGroups(projectId, options) {
|
|
5087
5094
|
return RequestHelper.get()(
|
|
5088
5095
|
this,
|
package/dist/index.mjs
CHANGED
|
@@ -5077,6 +5077,13 @@ var Projects = class extends BaseResource {
|
|
|
5077
5077
|
options
|
|
5078
5078
|
);
|
|
5079
5079
|
}
|
|
5080
|
+
allInvitedGroups(projectId, options) {
|
|
5081
|
+
return RequestHelper.get()(
|
|
5082
|
+
this,
|
|
5083
|
+
endpoint`projects/${projectId}/invited_groups`,
|
|
5084
|
+
options
|
|
5085
|
+
);
|
|
5086
|
+
}
|
|
5080
5087
|
allSharableGroups(projectId, options) {
|
|
5081
5088
|
return RequestHelper.get()(
|
|
5082
5089
|
this,
|
package/dist/map.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gitbeaker/core",
|
|
3
|
-
"version": "42.
|
|
3
|
+
"version": "42.3.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": "^42.
|
|
55
|
+
"@gitbeaker/requester-utils": "^42.3.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": "
|
|
66
|
+
"gitHead": "96753b28be73cef0a9abe230e3650f4ceb1f9168"
|
|
67
67
|
}
|