@gitbeaker/core 42.0.1 → 42.0.2

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.mts CHANGED
@@ -2828,7 +2828,6 @@ type EditMergeRequestOptions = {
2828
2828
  title?: string;
2829
2829
  assigneeId?: number;
2830
2830
  assigneeIds?: number[];
2831
- reviewerId?: number;
2832
2831
  reviewerIds?: number[];
2833
2832
  milestoneId?: number;
2834
2833
  addLabels?: string;
@@ -2845,7 +2844,7 @@ type EditMergeRequestOptions = {
2845
2844
  };
2846
2845
  type CreateMergeRequestOptions = {
2847
2846
  targetProjectId?: number;
2848
- } & Pick<EditMergeRequestOptions, 'assigneeId' | 'assigneeIds' | 'description' | 'labels' | 'title' | 'milestoneId' | 'reviewerId' | 'reviewerIds' | 'removeSourceBranch' | 'allowCollaboration' | 'allowMaintainerToPush' | 'squash'>;
2847
+ } & Pick<EditMergeRequestOptions, 'assigneeId' | 'assigneeIds' | 'description' | 'labels' | 'title' | 'milestoneId' | 'reviewerIds' | 'removeSourceBranch' | 'allowCollaboration' | 'allowMaintainerToPush' | 'squash'>;
2849
2848
  declare class MergeRequests<C extends boolean = false> extends BaseResource<C> {
2850
2849
  accept<E extends boolean = false>(projectId: string | number, mergerequestIId: number, options?: AcceptMergeRequestOptions & Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<ExpandedMergeRequestSchema, C, E, void>>;
2851
2850
  addSpentTime<E extends boolean = false>(projectId: string | number, mergerequestIId: number, duration: string, options?: Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<TimeStatsSchema, C, E, void>>;
package/dist/index.d.ts CHANGED
@@ -2828,7 +2828,6 @@ type EditMergeRequestOptions = {
2828
2828
  title?: string;
2829
2829
  assigneeId?: number;
2830
2830
  assigneeIds?: number[];
2831
- reviewerId?: number;
2832
2831
  reviewerIds?: number[];
2833
2832
  milestoneId?: number;
2834
2833
  addLabels?: string;
@@ -2845,7 +2844,7 @@ type EditMergeRequestOptions = {
2845
2844
  };
2846
2845
  type CreateMergeRequestOptions = {
2847
2846
  targetProjectId?: number;
2848
- } & Pick<EditMergeRequestOptions, 'assigneeId' | 'assigneeIds' | 'description' | 'labels' | 'title' | 'milestoneId' | 'reviewerId' | 'reviewerIds' | 'removeSourceBranch' | 'allowCollaboration' | 'allowMaintainerToPush' | 'squash'>;
2847
+ } & Pick<EditMergeRequestOptions, 'assigneeId' | 'assigneeIds' | 'description' | 'labels' | 'title' | 'milestoneId' | 'reviewerIds' | 'removeSourceBranch' | 'allowCollaboration' | 'allowMaintainerToPush' | 'squash'>;
2849
2848
  declare class MergeRequests<C extends boolean = false> extends BaseResource<C> {
2850
2849
  accept<E extends boolean = false>(projectId: string | number, mergerequestIId: number, options?: AcceptMergeRequestOptions & Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<ExpandedMergeRequestSchema, C, E, void>>;
2851
2850
  addSpentTime<E extends boolean = false>(projectId: string | number, mergerequestIId: number, duration: string, options?: Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<TimeStatsSchema, C, E, void>>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gitbeaker/core",
3
- "version": "42.0.1",
3
+ "version": "42.0.2",
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.0.1",
55
+ "@gitbeaker/requester-utils": "^42.0.2",
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": "f7893ae865f4b9c5ed84fefb504d5fb72366efcb"
66
+ "gitHead": "16f383dacd8d51e17f1525e814efc4e9446fc6d4"
67
67
  }