@gitbeaker/core 40.2.1 → 40.2.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 +1 -1
- package/dist/index.d.ts +1 -1
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -1915,6 +1915,7 @@ import { Gitlab } from '@gitbeaker/core';
|
|
|
1915
1915
|
<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>
|
|
1916
1916
|
<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>
|
|
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
|
+
<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>
|
|
1918
1919
|
</tr>
|
|
1919
1920
|
</p>
|
|
1920
1921
|
|
package/dist/index.d.mts
CHANGED
|
@@ -5246,7 +5246,7 @@ type AllDeploymentsOptions = {
|
|
|
5246
5246
|
declare class Deployments<C extends boolean = false> extends BaseResource<C> {
|
|
5247
5247
|
all<E extends boolean = false, P extends PaginationTypes = 'offset'>(projectId: string | number, options?: AllDeploymentsOptions & PaginationRequestOptions<P> & Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<DeploymentSchema[], C, E, P>>;
|
|
5248
5248
|
allMergeRequests<E extends boolean = false, P extends PaginationTypes = 'offset'>(projectId: string | number, deploymentId: number, options?: AllMergeRequestsOptions & PaginationRequestOptions<P> & Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<MergeRequestSchema[], C, E, P>>;
|
|
5249
|
-
create<E extends boolean = false>(projectId: string | number, environment: string, sha: string, ref: string, tag:
|
|
5249
|
+
create<E extends boolean = false>(projectId: string | number, environment: string, sha: string, ref: string, tag: boolean, options?: {
|
|
5250
5250
|
status?: 'running' | 'success' | 'failed' | 'canceled';
|
|
5251
5251
|
} & Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<DeploymentSchema, C, E, void>>;
|
|
5252
5252
|
edit<E extends boolean = false>(projectId: string | number, deploymentId: number, status: 'running' | 'success' | 'failed' | 'canceled', options?: Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<DeploymentSchema, C, E, void>>;
|
package/dist/index.d.ts
CHANGED
|
@@ -5246,7 +5246,7 @@ type AllDeploymentsOptions = {
|
|
|
5246
5246
|
declare class Deployments<C extends boolean = false> extends BaseResource<C> {
|
|
5247
5247
|
all<E extends boolean = false, P extends PaginationTypes = 'offset'>(projectId: string | number, options?: AllDeploymentsOptions & PaginationRequestOptions<P> & Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<DeploymentSchema[], C, E, P>>;
|
|
5248
5248
|
allMergeRequests<E extends boolean = false, P extends PaginationTypes = 'offset'>(projectId: string | number, deploymentId: number, options?: AllMergeRequestsOptions & PaginationRequestOptions<P> & Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<MergeRequestSchema[], C, E, P>>;
|
|
5249
|
-
create<E extends boolean = false>(projectId: string | number, environment: string, sha: string, ref: string, tag:
|
|
5249
|
+
create<E extends boolean = false>(projectId: string | number, environment: string, sha: string, ref: string, tag: boolean, options?: {
|
|
5250
5250
|
status?: 'running' | 'success' | 'failed' | 'canceled';
|
|
5251
5251
|
} & Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<DeploymentSchema, C, E, void>>;
|
|
5252
5252
|
edit<E extends boolean = false>(projectId: string | number, deploymentId: number, status: 'running' | 'success' | 'failed' | 'canceled', options?: Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<DeploymentSchema, C, E, void>>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gitbeaker/core",
|
|
3
|
-
"version": "40.2.
|
|
3
|
+
"version": "40.2.3",
|
|
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.2.
|
|
55
|
+
"@gitbeaker/requester-utils": "^40.2.3",
|
|
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": "141e50f218ded7d42f147c4974578547a7bb33f5"
|
|
67
67
|
}
|