@gitbeaker/core 39.0.0 → 39.1.1
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/dist/index.d.ts +4 -4
- package/package.json +3 -3
package/dist/index.d.ts
CHANGED
|
@@ -2805,7 +2805,7 @@ declare class ResourceMilestones<C extends boolean = false> extends BaseResource
|
|
|
2805
2805
|
description?: string;
|
|
2806
2806
|
dueDate?: string;
|
|
2807
2807
|
startDate?: string;
|
|
2808
|
-
|
|
2808
|
+
stateEvent?: 'close' | 'activate';
|
|
2809
2809
|
} & Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<MilestoneSchema, C, E, void>>;
|
|
2810
2810
|
remove<E extends boolean = false>(resourceId: string | number, milestoneId: number, options?: Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<void, C, E, void>>;
|
|
2811
2811
|
show<E extends boolean = false>(resourceId: string | number, milestoneId: number, options?: Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<MilestoneSchema, C, E, void>>;
|
|
@@ -5889,7 +5889,7 @@ interface ProjectMilestones<C extends boolean = false> extends ResourceMilestone
|
|
|
5889
5889
|
description?: string;
|
|
5890
5890
|
dueDate?: string;
|
|
5891
5891
|
startDate?: string;
|
|
5892
|
-
|
|
5892
|
+
stateEvent?: 'close' | 'activate';
|
|
5893
5893
|
} & Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<MilestoneSchema, C, E, void>>;
|
|
5894
5894
|
remove<E extends boolean = false>(projectId: string | number, milestoneId: number, options?: Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<void, C, E, void>>;
|
|
5895
5895
|
show<E extends boolean = false>(projectId: string | number, milestoneId: number, options?: Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<MilestoneSchema, C, E, void>>;
|
|
@@ -6944,7 +6944,7 @@ declare class GroupLDAPLinks<C extends boolean = false> extends BaseResource<C>
|
|
|
6944
6944
|
cn?: string;
|
|
6945
6945
|
filter?: string;
|
|
6946
6946
|
} & Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<void, C, E, void>>;
|
|
6947
|
-
sync(groupId: string | number, options?: Sudo & ShowExpanded): Promise<string | number | void | ReadableStream<any> | Blob | string[] | CamelizedResponse<Record<string, unknown>, C> | CamelizedResponse<Record<string, unknown>, C>[]>;
|
|
6947
|
+
sync(groupId: string | number, options?: Sudo & ShowExpanded): Promise<string | number | void | ReadableStream<any> | Blob | string[] | CamelizedResponse<Record<string, unknown>, C> | CamelizedResponse<Record<string, unknown>, C>[] | null>;
|
|
6948
6948
|
}
|
|
6949
6949
|
|
|
6950
6950
|
interface BillableGroupMemberSchema extends CondensedMemberSchema {
|
|
@@ -7022,7 +7022,7 @@ interface GroupMilestones<C extends boolean = false> extends ResourceMilestones<
|
|
|
7022
7022
|
description?: string;
|
|
7023
7023
|
dueDate?: string;
|
|
7024
7024
|
startDate?: string;
|
|
7025
|
-
|
|
7025
|
+
stateEvent?: 'close' | 'activate';
|
|
7026
7026
|
} & Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<MilestoneSchema, C, E, void>>;
|
|
7027
7027
|
remove<E extends boolean = false>(groupId: string | number, milestoneId: number, options?: Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<void, C, E, void>>;
|
|
7028
7028
|
show<E extends boolean = false>(groupId: string | number, milestoneId: number, options?: Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<MilestoneSchema, C, E, void>>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gitbeaker/core",
|
|
3
|
-
"version": "39.
|
|
3
|
+
"version": "39.1.1",
|
|
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.1.1",
|
|
59
59
|
"qs": "^6.11.1",
|
|
60
60
|
"xcase": "^2.0.1"
|
|
61
61
|
},
|
|
@@ -66,5 +66,5 @@
|
|
|
66
66
|
"tsx": "^3.12.6",
|
|
67
67
|
"typescript": "^5.0.4"
|
|
68
68
|
},
|
|
69
|
-
"gitHead": "
|
|
69
|
+
"gitHead": "cad136a360a24c553c59662aacc321f44fd53d64"
|
|
70
70
|
}
|