@structured-world/gitlab-mcp 4.0.0 → 4.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/README.md +90 -4
- package/dist/entities/core/registry.js +162 -70
- package/dist/entities/core/registry.js.map +1 -1
- package/dist/entities/core/schema-readonly.d.ts +421 -199
- package/dist/entities/core/schema-readonly.js +222 -131
- package/dist/entities/core/schema-readonly.js.map +1 -1
- package/dist/entities/core/schema.d.ts +152 -61
- package/dist/entities/core/schema.js +111 -55
- package/dist/entities/core/schema.js.map +1 -1
- package/dist/entities/files/registry.js +5 -5
- package/dist/entities/files/registry.js.map +1 -1
- package/dist/entities/files/schema-readonly.d.ts +124 -24
- package/dist/entities/files/schema.d.ts +82 -17
- package/dist/entities/labels/registry.js +23 -34
- package/dist/entities/labels/registry.js.map +1 -1
- package/dist/entities/labels/schema-readonly.d.ts +26 -10
- package/dist/entities/labels/schema-readonly.js +5 -15
- package/dist/entities/labels/schema-readonly.js.map +1 -1
- package/dist/entities/labels/schema.d.ts +40 -11
- package/dist/entities/labels/schema.js +8 -23
- package/dist/entities/labels/schema.js.map +1 -1
- package/dist/entities/milestones/registry.js +44 -61
- package/dist/entities/milestones/registry.js.map +1 -1
- package/dist/entities/milestones/schema-readonly.d.ts +105 -30
- package/dist/entities/milestones/schema-readonly.js +7 -15
- package/dist/entities/milestones/schema-readonly.js.map +1 -1
- package/dist/entities/milestones/schema.d.ts +52 -19
- package/dist/entities/milestones/schema.js +8 -28
- package/dist/entities/milestones/schema.js.map +1 -1
- package/dist/entities/mrs/registry.js +20 -20
- package/dist/entities/mrs/registry.js.map +1 -1
- package/dist/entities/mrs/schema-readonly.d.ts +243 -68
- package/dist/entities/mrs/schema-readonly.js +83 -54
- package/dist/entities/mrs/schema-readonly.js.map +1 -1
- package/dist/entities/mrs/schema.d.ts +885 -142
- package/dist/entities/mrs/schema.js +113 -37
- package/dist/entities/mrs/schema.js.map +1 -1
- package/dist/entities/pipelines/registry.js +12 -12
- package/dist/entities/pipelines/registry.js.map +1 -1
- package/dist/entities/pipelines/schema-readonly.d.ts +525 -115
- package/dist/entities/pipelines/schema.d.ts +104 -30
- package/dist/entities/shared.d.ts +787 -110
- package/dist/entities/utils.d.ts +2 -2
- package/dist/entities/variables/registry.js +23 -33
- package/dist/entities/variables/registry.js.map +1 -1
- package/dist/entities/variables/schema-readonly.d.ts +30 -7
- package/dist/entities/variables/schema-readonly.js +4 -13
- package/dist/entities/variables/schema-readonly.js.map +1 -1
- package/dist/entities/variables/schema.d.ts +83 -26
- package/dist/entities/variables/schema.js +6 -21
- package/dist/entities/variables/schema.js.map +1 -1
- package/dist/entities/wiki/registry.js +25 -42
- package/dist/entities/wiki/registry.js.map +1 -1
- package/dist/entities/wiki/schema-readonly.d.ts +37 -8
- package/dist/entities/wiki/schema-readonly.js +4 -13
- package/dist/entities/wiki/schema-readonly.js.map +1 -1
- package/dist/entities/wiki/schema.d.ts +34 -9
- package/dist/entities/wiki/schema.js +6 -21
- package/dist/entities/wiki/schema.js.map +1 -1
- package/dist/entities/workitems/registry.js +94 -13
- package/dist/entities/workitems/registry.js.map +1 -1
- package/dist/entities/workitems/schema-readonly.d.ts +29 -32
- package/dist/entities/workitems/schema-readonly.js +7 -2
- package/dist/entities/workitems/schema-readonly.js.map +1 -1
- package/dist/entities/workitems/schema.d.ts +45 -21
- package/dist/graphql/workItems.d.ts +34 -1
- package/dist/graphql/workItems.js +349 -2
- package/dist/graphql/workItems.js.map +1 -1
- package/dist/handlers.js +44 -0
- package/dist/handlers.js.map +1 -1
- package/dist/registry-manager.d.ts +1 -0
- package/dist/registry-manager.js +54 -0
- package/dist/registry-manager.js.map +1 -1
- package/dist/services/ConnectionManager.js +3 -3
- package/dist/services/ConnectionManager.js.map +1 -1
- package/dist/services/SchemaIntrospector.js +3 -3
- package/dist/services/SchemaIntrospector.js.map +1 -1
- package/dist/services/ToolAvailability.js +30 -1
- package/dist/services/ToolAvailability.js.map +1 -1
- package/dist/structured-world-gitlab-mcp-4.1.1.tgz +0 -0
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/dist/utils/namespace.d.ts +6 -0
- package/dist/utils/namespace.js +52 -0
- package/dist/utils/namespace.js.map +1 -0
- package/package.json +5 -3
- package/dist/structured-world-gitlab-mcp-4.0.0.tgz +0 -0
|
@@ -1,14 +1,30 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
2
|
export declare const GitLabSearchResponseSchema: z.ZodObject<{
|
|
3
|
-
data: z.ZodArray<z.ZodUnknown>;
|
|
3
|
+
data: z.ZodArray<z.ZodUnknown, "many">;
|
|
4
4
|
total_count: z.ZodNumber;
|
|
5
|
-
}, z.
|
|
5
|
+
}, "strip", z.ZodTypeAny, {
|
|
6
|
+
data: unknown[];
|
|
7
|
+
total_count: number;
|
|
8
|
+
}, {
|
|
9
|
+
data: unknown[];
|
|
10
|
+
total_count: number;
|
|
11
|
+
}>;
|
|
6
12
|
export declare const GitLabReferenceSchema: z.ZodObject<{
|
|
7
13
|
type: z.ZodString;
|
|
8
14
|
name: z.ZodString;
|
|
9
15
|
path: z.ZodString;
|
|
10
16
|
location: z.ZodString;
|
|
11
|
-
}, z.
|
|
17
|
+
}, "strip", z.ZodTypeAny, {
|
|
18
|
+
name: string;
|
|
19
|
+
path: string;
|
|
20
|
+
type: string;
|
|
21
|
+
location: string;
|
|
22
|
+
}, {
|
|
23
|
+
name: string;
|
|
24
|
+
path: string;
|
|
25
|
+
type: string;
|
|
26
|
+
location: string;
|
|
27
|
+
}>;
|
|
12
28
|
export declare const GitLabCompareResultSchema: z.ZodObject<{
|
|
13
29
|
commit: z.ZodObject<{
|
|
14
30
|
id: z.ZodString;
|
|
@@ -21,266 +37,473 @@ export declare const GitLabCompareResultSchema: z.ZodObject<{
|
|
|
21
37
|
committer_email: z.ZodString;
|
|
22
38
|
committed_date: z.ZodString;
|
|
23
39
|
message: z.ZodString;
|
|
24
|
-
}, z.
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
40
|
+
}, "strip", z.ZodTypeAny, {
|
|
41
|
+
message: string;
|
|
42
|
+
id: string;
|
|
43
|
+
title: string;
|
|
44
|
+
short_id: string;
|
|
45
|
+
author_name: string;
|
|
46
|
+
author_email: string;
|
|
47
|
+
authored_date: string;
|
|
48
|
+
committer_name: string;
|
|
49
|
+
committer_email: string;
|
|
50
|
+
committed_date: string;
|
|
51
|
+
}, {
|
|
52
|
+
message: string;
|
|
53
|
+
id: string;
|
|
54
|
+
title: string;
|
|
55
|
+
short_id: string;
|
|
56
|
+
author_name: string;
|
|
57
|
+
author_email: string;
|
|
58
|
+
authored_date: string;
|
|
59
|
+
committer_name: string;
|
|
60
|
+
committer_email: string;
|
|
61
|
+
committed_date: string;
|
|
62
|
+
}>;
|
|
63
|
+
commits: z.ZodArray<z.ZodUnknown, "many">;
|
|
64
|
+
diffs: z.ZodArray<z.ZodUnknown, "many">;
|
|
65
|
+
}, "strip", z.ZodTypeAny, {
|
|
66
|
+
commit: {
|
|
67
|
+
message: string;
|
|
68
|
+
id: string;
|
|
69
|
+
title: string;
|
|
70
|
+
short_id: string;
|
|
71
|
+
author_name: string;
|
|
72
|
+
author_email: string;
|
|
73
|
+
authored_date: string;
|
|
74
|
+
committer_name: string;
|
|
75
|
+
committer_email: string;
|
|
76
|
+
committed_date: string;
|
|
77
|
+
};
|
|
78
|
+
commits: unknown[];
|
|
79
|
+
diffs: unknown[];
|
|
80
|
+
}, {
|
|
81
|
+
commit: {
|
|
82
|
+
message: string;
|
|
83
|
+
id: string;
|
|
84
|
+
title: string;
|
|
85
|
+
short_id: string;
|
|
86
|
+
author_name: string;
|
|
87
|
+
author_email: string;
|
|
88
|
+
authored_date: string;
|
|
89
|
+
committer_name: string;
|
|
90
|
+
committer_email: string;
|
|
91
|
+
committed_date: string;
|
|
92
|
+
};
|
|
93
|
+
commits: unknown[];
|
|
94
|
+
diffs: unknown[];
|
|
95
|
+
}>;
|
|
28
96
|
export declare const GetUsersSchema: z.ZodObject<{
|
|
29
97
|
username: z.ZodOptional<z.ZodString>;
|
|
30
98
|
public_email: z.ZodOptional<z.ZodString>;
|
|
31
99
|
search: z.ZodOptional<z.ZodString>;
|
|
32
|
-
active: z.ZodOptional<z.
|
|
33
|
-
external: z.ZodOptional<z.
|
|
34
|
-
blocked: z.ZodOptional<z.
|
|
35
|
-
humans: z.ZodOptional<z.
|
|
100
|
+
active: z.ZodOptional<z.ZodEffects<z.ZodBoolean, boolean, unknown>>;
|
|
101
|
+
external: z.ZodOptional<z.ZodEffects<z.ZodBoolean, boolean, unknown>>;
|
|
102
|
+
blocked: z.ZodOptional<z.ZodEffects<z.ZodBoolean, boolean, unknown>>;
|
|
103
|
+
humans: z.ZodOptional<z.ZodEffects<z.ZodBoolean, boolean, unknown>>;
|
|
36
104
|
created_after: z.ZodOptional<z.ZodString>;
|
|
37
105
|
created_before: z.ZodOptional<z.ZodString>;
|
|
38
|
-
exclude_active: z.ZodOptional<z.
|
|
39
|
-
exclude_external: z.ZodOptional<z.
|
|
40
|
-
exclude_humans: z.ZodOptional<z.
|
|
41
|
-
exclude_internal: z.ZodOptional<z.
|
|
42
|
-
without_project_bots: z.ZodOptional<z.
|
|
106
|
+
exclude_active: z.ZodOptional<z.ZodEffects<z.ZodBoolean, boolean, unknown>>;
|
|
107
|
+
exclude_external: z.ZodOptional<z.ZodEffects<z.ZodBoolean, boolean, unknown>>;
|
|
108
|
+
exclude_humans: z.ZodOptional<z.ZodEffects<z.ZodBoolean, boolean, unknown>>;
|
|
109
|
+
exclude_internal: z.ZodOptional<z.ZodEffects<z.ZodBoolean, boolean, unknown>>;
|
|
110
|
+
without_project_bots: z.ZodOptional<z.ZodEffects<z.ZodBoolean, boolean, unknown>>;
|
|
111
|
+
} & {
|
|
43
112
|
page: z.ZodOptional<z.ZodNumber>;
|
|
44
113
|
per_page: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
45
|
-
}, z.
|
|
114
|
+
}, "strip", z.ZodTypeAny, {
|
|
115
|
+
per_page: number;
|
|
116
|
+
search?: string | undefined;
|
|
117
|
+
page?: number | undefined;
|
|
118
|
+
username?: string | undefined;
|
|
119
|
+
public_email?: string | undefined;
|
|
120
|
+
active?: boolean | undefined;
|
|
121
|
+
external?: boolean | undefined;
|
|
122
|
+
blocked?: boolean | undefined;
|
|
123
|
+
humans?: boolean | undefined;
|
|
124
|
+
created_after?: string | undefined;
|
|
125
|
+
created_before?: string | undefined;
|
|
126
|
+
exclude_active?: boolean | undefined;
|
|
127
|
+
exclude_external?: boolean | undefined;
|
|
128
|
+
exclude_humans?: boolean | undefined;
|
|
129
|
+
exclude_internal?: boolean | undefined;
|
|
130
|
+
without_project_bots?: boolean | undefined;
|
|
131
|
+
}, {
|
|
132
|
+
search?: string | undefined;
|
|
133
|
+
page?: number | undefined;
|
|
134
|
+
per_page?: number | undefined;
|
|
135
|
+
username?: string | undefined;
|
|
136
|
+
public_email?: string | undefined;
|
|
137
|
+
active?: unknown;
|
|
138
|
+
external?: unknown;
|
|
139
|
+
blocked?: unknown;
|
|
140
|
+
humans?: unknown;
|
|
141
|
+
created_after?: string | undefined;
|
|
142
|
+
created_before?: string | undefined;
|
|
143
|
+
exclude_active?: unknown;
|
|
144
|
+
exclude_external?: unknown;
|
|
145
|
+
exclude_humans?: unknown;
|
|
146
|
+
exclude_internal?: unknown;
|
|
147
|
+
without_project_bots?: unknown;
|
|
148
|
+
}>;
|
|
46
149
|
export declare const SearchRepositoriesSchema: z.ZodObject<{
|
|
47
150
|
q: z.ZodString;
|
|
48
|
-
sort: z.ZodOptional<z.ZodEnum<
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
pushed: "pushed";
|
|
52
|
-
full_name: "full_name";
|
|
53
|
-
}>>;
|
|
54
|
-
order: z.ZodOptional<z.ZodEnum<{
|
|
55
|
-
asc: "asc";
|
|
56
|
-
desc: "desc";
|
|
57
|
-
}>>;
|
|
151
|
+
sort: z.ZodOptional<z.ZodEnum<["updated", "created", "pushed", "full_name"]>>;
|
|
152
|
+
order: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
153
|
+
} & {
|
|
58
154
|
page: z.ZodOptional<z.ZodNumber>;
|
|
59
155
|
per_page: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
60
|
-
}, z.
|
|
156
|
+
}, "strip", z.ZodTypeAny, {
|
|
157
|
+
per_page: number;
|
|
158
|
+
q: string;
|
|
159
|
+
sort?: "updated" | "created" | "pushed" | "full_name" | undefined;
|
|
160
|
+
page?: number | undefined;
|
|
161
|
+
order?: "asc" | "desc" | undefined;
|
|
162
|
+
}, {
|
|
163
|
+
q: string;
|
|
164
|
+
sort?: "updated" | "created" | "pushed" | "full_name" | undefined;
|
|
165
|
+
page?: number | undefined;
|
|
166
|
+
per_page?: number | undefined;
|
|
167
|
+
order?: "asc" | "desc" | undefined;
|
|
168
|
+
}>;
|
|
61
169
|
export declare const ListNamespacesSchema: z.ZodObject<{
|
|
62
170
|
search: z.ZodOptional<z.ZodString>;
|
|
63
|
-
owned_only: z.ZodOptional<z.
|
|
64
|
-
top_level_only: z.ZodOptional<z.
|
|
65
|
-
with_statistics: z.ZodOptional<z.
|
|
171
|
+
owned_only: z.ZodOptional<z.ZodEffects<z.ZodBoolean, boolean, unknown>>;
|
|
172
|
+
top_level_only: z.ZodOptional<z.ZodEffects<z.ZodBoolean, boolean, unknown>>;
|
|
173
|
+
with_statistics: z.ZodOptional<z.ZodEffects<z.ZodBoolean, boolean, unknown>>;
|
|
66
174
|
min_access_level: z.ZodOptional<z.ZodNumber>;
|
|
175
|
+
} & {
|
|
67
176
|
page: z.ZodOptional<z.ZodNumber>;
|
|
68
177
|
per_page: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
69
|
-
}, z.
|
|
178
|
+
}, "strip", z.ZodTypeAny, {
|
|
179
|
+
per_page: number;
|
|
180
|
+
search?: string | undefined;
|
|
181
|
+
page?: number | undefined;
|
|
182
|
+
owned_only?: boolean | undefined;
|
|
183
|
+
top_level_only?: boolean | undefined;
|
|
184
|
+
with_statistics?: boolean | undefined;
|
|
185
|
+
min_access_level?: number | undefined;
|
|
186
|
+
}, {
|
|
187
|
+
search?: string | undefined;
|
|
188
|
+
page?: number | undefined;
|
|
189
|
+
per_page?: number | undefined;
|
|
190
|
+
owned_only?: unknown;
|
|
191
|
+
top_level_only?: unknown;
|
|
192
|
+
with_statistics?: unknown;
|
|
193
|
+
min_access_level?: number | undefined;
|
|
194
|
+
}>;
|
|
70
195
|
export declare const GetNamespaceSchema: z.ZodObject<{
|
|
71
|
-
namespace_id: z.
|
|
72
|
-
}, z.
|
|
196
|
+
namespace_id: z.ZodEffects<z.ZodString, string, string>;
|
|
197
|
+
}, "strip", z.ZodTypeAny, {
|
|
198
|
+
namespace_id: string;
|
|
199
|
+
}, {
|
|
200
|
+
namespace_id: string;
|
|
201
|
+
}>;
|
|
73
202
|
export declare const VerifyNamespaceSchema: z.ZodObject<{
|
|
74
203
|
namespace: z.ZodString;
|
|
75
|
-
}, z.
|
|
204
|
+
}, "strip", z.ZodTypeAny, {
|
|
205
|
+
namespace: string;
|
|
206
|
+
}, {
|
|
207
|
+
namespace: string;
|
|
208
|
+
}>;
|
|
76
209
|
export declare const GetProjectSchema: z.ZodObject<{
|
|
77
|
-
project_id: z.
|
|
78
|
-
statistics: z.ZodOptional<z.
|
|
79
|
-
license: z.ZodOptional<z.
|
|
80
|
-
with_custom_attributes: z.ZodOptional<z.
|
|
81
|
-
}, z.
|
|
210
|
+
project_id: z.ZodString;
|
|
211
|
+
statistics: z.ZodOptional<z.ZodEffects<z.ZodBoolean, boolean, unknown>>;
|
|
212
|
+
license: z.ZodOptional<z.ZodEffects<z.ZodBoolean, boolean, unknown>>;
|
|
213
|
+
with_custom_attributes: z.ZodOptional<z.ZodEffects<z.ZodBoolean, boolean, unknown>>;
|
|
214
|
+
}, "strip", z.ZodTypeAny, {
|
|
215
|
+
project_id: string;
|
|
216
|
+
statistics?: boolean | undefined;
|
|
217
|
+
license?: boolean | undefined;
|
|
218
|
+
with_custom_attributes?: boolean | undefined;
|
|
219
|
+
}, {
|
|
220
|
+
project_id: string;
|
|
221
|
+
statistics?: unknown;
|
|
222
|
+
license?: unknown;
|
|
223
|
+
with_custom_attributes?: unknown;
|
|
224
|
+
}>;
|
|
82
225
|
export declare const ListProjectsSchema: z.ZodObject<{
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
internal: "internal";
|
|
89
|
-
public: "public";
|
|
90
|
-
}>>;
|
|
91
|
-
order_by: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
92
|
-
name: "name";
|
|
93
|
-
path: "path";
|
|
94
|
-
id: "id";
|
|
95
|
-
created_at: "created_at";
|
|
96
|
-
last_activity_at: "last_activity_at";
|
|
97
|
-
updated_at: "updated_at";
|
|
98
|
-
similarity: "similarity";
|
|
99
|
-
repository_size: "repository_size";
|
|
100
|
-
storage_size: "storage_size";
|
|
101
|
-
packages_size: "packages_size";
|
|
102
|
-
wiki_size: "wiki_size";
|
|
103
|
-
}>>>;
|
|
104
|
-
sort: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
105
|
-
asc: "asc";
|
|
106
|
-
desc: "desc";
|
|
107
|
-
}>>>;
|
|
226
|
+
group_id: z.ZodOptional<z.ZodString>;
|
|
227
|
+
archived: z.ZodOptional<z.ZodEffects<z.ZodBoolean, boolean, unknown>>;
|
|
228
|
+
visibility: z.ZodOptional<z.ZodEnum<["public", "internal", "private"]>>;
|
|
229
|
+
order_by: z.ZodDefault<z.ZodOptional<z.ZodEnum<["id", "name", "path", "created_at", "updated_at", "last_activity_at", "similarity", "repository_size", "storage_size", "packages_size", "wiki_size"]>>>;
|
|
230
|
+
sort: z.ZodDefault<z.ZodOptional<z.ZodEnum<["asc", "desc"]>>>;
|
|
108
231
|
search: z.ZodOptional<z.ZodString>;
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
membership: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
|
|
113
|
-
starred: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
|
|
114
|
-
statistics: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
|
|
115
|
-
with_custom_attributes: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
|
|
116
|
-
with_issues_enabled: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
|
|
117
|
-
with_merge_requests_enabled: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
|
|
118
|
-
with_programming_language: z.ZodOptional<z.ZodString>;
|
|
119
|
-
wiki_checksum_failed: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
|
|
120
|
-
repository_checksum_failed: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
|
|
232
|
+
simple: z.ZodDefault<z.ZodOptional<z.ZodEffects<z.ZodBoolean, boolean, unknown>>>;
|
|
233
|
+
owned: z.ZodOptional<z.ZodEffects<z.ZodBoolean, boolean, unknown>>;
|
|
234
|
+
starred: z.ZodOptional<z.ZodEffects<z.ZodBoolean, boolean, unknown>>;
|
|
121
235
|
min_access_level: z.ZodOptional<z.ZodNumber>;
|
|
236
|
+
with_custom_attributes: z.ZodOptional<z.ZodEffects<z.ZodBoolean, boolean, unknown>>;
|
|
237
|
+
active: z.ZodOptional<z.ZodEffects<z.ZodBoolean, boolean, unknown>>;
|
|
238
|
+
imported: z.ZodOptional<z.ZodEffects<z.ZodBoolean, boolean, unknown>>;
|
|
239
|
+
membership: z.ZodOptional<z.ZodEffects<z.ZodBoolean, boolean, unknown>>;
|
|
240
|
+
statistics: z.ZodOptional<z.ZodEffects<z.ZodBoolean, boolean, unknown>>;
|
|
241
|
+
with_programming_language: z.ZodOptional<z.ZodString>;
|
|
242
|
+
wiki_checksum_failed: z.ZodOptional<z.ZodEffects<z.ZodBoolean, boolean, unknown>>;
|
|
243
|
+
repository_checksum_failed: z.ZodOptional<z.ZodEffects<z.ZodBoolean, boolean, unknown>>;
|
|
122
244
|
id_after: z.ZodOptional<z.ZodNumber>;
|
|
123
245
|
id_before: z.ZodOptional<z.ZodNumber>;
|
|
124
246
|
last_activity_after: z.ZodOptional<z.ZodString>;
|
|
125
247
|
last_activity_before: z.ZodOptional<z.ZodString>;
|
|
126
248
|
marked_for_deletion_on: z.ZodOptional<z.ZodString>;
|
|
127
249
|
repository_storage: z.ZodOptional<z.ZodString>;
|
|
250
|
+
include_subgroups: z.ZodOptional<z.ZodEffects<z.ZodBoolean, boolean, unknown>>;
|
|
251
|
+
with_shared: z.ZodOptional<z.ZodEffects<z.ZodBoolean, boolean, unknown>>;
|
|
252
|
+
with_security_reports: z.ZodOptional<z.ZodEffects<z.ZodBoolean, boolean, unknown>>;
|
|
253
|
+
topic: z.ZodOptional<z.ZodString>;
|
|
254
|
+
with_issues_enabled: z.ZodOptional<z.ZodEffects<z.ZodBoolean, boolean, unknown>>;
|
|
255
|
+
with_merge_requests_enabled: z.ZodOptional<z.ZodEffects<z.ZodBoolean, boolean, unknown>>;
|
|
256
|
+
} & {
|
|
128
257
|
page: z.ZodOptional<z.ZodNumber>;
|
|
129
258
|
per_page: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
130
|
-
}, z.
|
|
259
|
+
}, "strip", z.ZodTypeAny, {
|
|
260
|
+
sort: "asc" | "desc";
|
|
261
|
+
per_page: number;
|
|
262
|
+
order_by: "name" | "path" | "id" | "created_at" | "last_activity_at" | "updated_at" | "similarity" | "repository_size" | "storage_size" | "packages_size" | "wiki_size";
|
|
263
|
+
simple: boolean;
|
|
264
|
+
search?: string | undefined;
|
|
265
|
+
page?: number | undefined;
|
|
266
|
+
visibility?: "private" | "internal" | "public" | undefined;
|
|
267
|
+
repository_storage?: string | undefined;
|
|
268
|
+
marked_for_deletion_on?: string | undefined;
|
|
269
|
+
archived?: boolean | undefined;
|
|
270
|
+
active?: boolean | undefined;
|
|
271
|
+
min_access_level?: number | undefined;
|
|
272
|
+
statistics?: boolean | undefined;
|
|
273
|
+
with_custom_attributes?: boolean | undefined;
|
|
274
|
+
group_id?: string | undefined;
|
|
275
|
+
owned?: boolean | undefined;
|
|
276
|
+
starred?: boolean | undefined;
|
|
277
|
+
imported?: boolean | undefined;
|
|
278
|
+
membership?: boolean | undefined;
|
|
279
|
+
with_programming_language?: string | undefined;
|
|
280
|
+
wiki_checksum_failed?: boolean | undefined;
|
|
281
|
+
repository_checksum_failed?: boolean | undefined;
|
|
282
|
+
id_after?: number | undefined;
|
|
283
|
+
id_before?: number | undefined;
|
|
284
|
+
last_activity_after?: string | undefined;
|
|
285
|
+
last_activity_before?: string | undefined;
|
|
286
|
+
include_subgroups?: boolean | undefined;
|
|
287
|
+
with_shared?: boolean | undefined;
|
|
288
|
+
with_security_reports?: boolean | undefined;
|
|
289
|
+
topic?: string | undefined;
|
|
290
|
+
with_issues_enabled?: boolean | undefined;
|
|
291
|
+
with_merge_requests_enabled?: boolean | undefined;
|
|
292
|
+
}, {
|
|
293
|
+
sort?: "asc" | "desc" | undefined;
|
|
294
|
+
search?: string | undefined;
|
|
295
|
+
page?: number | undefined;
|
|
296
|
+
per_page?: number | undefined;
|
|
297
|
+
visibility?: "private" | "internal" | "public" | undefined;
|
|
298
|
+
repository_storage?: string | undefined;
|
|
299
|
+
marked_for_deletion_on?: string | undefined;
|
|
300
|
+
archived?: unknown;
|
|
301
|
+
active?: unknown;
|
|
302
|
+
min_access_level?: number | undefined;
|
|
303
|
+
statistics?: unknown;
|
|
304
|
+
with_custom_attributes?: unknown;
|
|
305
|
+
group_id?: string | undefined;
|
|
306
|
+
order_by?: "name" | "path" | "id" | "created_at" | "last_activity_at" | "updated_at" | "similarity" | "repository_size" | "storage_size" | "packages_size" | "wiki_size" | undefined;
|
|
307
|
+
simple?: unknown;
|
|
308
|
+
owned?: unknown;
|
|
309
|
+
starred?: unknown;
|
|
310
|
+
imported?: unknown;
|
|
311
|
+
membership?: unknown;
|
|
312
|
+
with_programming_language?: string | undefined;
|
|
313
|
+
wiki_checksum_failed?: unknown;
|
|
314
|
+
repository_checksum_failed?: unknown;
|
|
315
|
+
id_after?: number | undefined;
|
|
316
|
+
id_before?: number | undefined;
|
|
317
|
+
last_activity_after?: string | undefined;
|
|
318
|
+
last_activity_before?: string | undefined;
|
|
319
|
+
include_subgroups?: unknown;
|
|
320
|
+
with_shared?: unknown;
|
|
321
|
+
with_security_reports?: unknown;
|
|
322
|
+
topic?: string | undefined;
|
|
323
|
+
with_issues_enabled?: unknown;
|
|
324
|
+
with_merge_requests_enabled?: unknown;
|
|
325
|
+
}>;
|
|
131
326
|
export declare const ListProjectMembersSchema: z.ZodObject<{
|
|
132
|
-
project_id: z.
|
|
327
|
+
project_id: z.ZodString;
|
|
133
328
|
query: z.ZodOptional<z.ZodString>;
|
|
134
|
-
user_ids: z.ZodOptional<z.ZodArray<z.ZodNumber>>;
|
|
135
|
-
|
|
136
|
-
per_page: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
137
|
-
}, z.core.$strip>;
|
|
138
|
-
export declare const ListGroupProjectsSchema: z.ZodObject<{
|
|
139
|
-
group_id: z.ZodCoercedString<unknown>;
|
|
140
|
-
archived: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
|
|
141
|
-
visibility: z.ZodOptional<z.ZodEnum<{
|
|
142
|
-
private: "private";
|
|
143
|
-
internal: "internal";
|
|
144
|
-
public: "public";
|
|
145
|
-
}>>;
|
|
146
|
-
order_by: z.ZodOptional<z.ZodEnum<{
|
|
147
|
-
name: "name";
|
|
148
|
-
path: "path";
|
|
149
|
-
id: "id";
|
|
150
|
-
created_at: "created_at";
|
|
151
|
-
last_activity_at: "last_activity_at";
|
|
152
|
-
updated_at: "updated_at";
|
|
153
|
-
}>>;
|
|
154
|
-
sort: z.ZodOptional<z.ZodEnum<{
|
|
155
|
-
asc: "asc";
|
|
156
|
-
desc: "desc";
|
|
157
|
-
}>>;
|
|
158
|
-
search: z.ZodOptional<z.ZodString>;
|
|
159
|
-
simple: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
|
|
160
|
-
owned: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
|
|
161
|
-
starred: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
|
|
162
|
-
with_issues_enabled: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
|
|
163
|
-
with_merge_requests_enabled: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
|
|
164
|
-
with_shared: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
|
|
165
|
-
include_subgroups: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
|
|
166
|
-
min_access_level: z.ZodOptional<z.ZodNumber>;
|
|
167
|
-
with_custom_attributes: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
|
|
168
|
-
with_security_reports: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
|
|
329
|
+
user_ids: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
|
|
330
|
+
} & {
|
|
169
331
|
page: z.ZodOptional<z.ZodNumber>;
|
|
170
332
|
per_page: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
171
|
-
}, z.
|
|
333
|
+
}, "strip", z.ZodTypeAny, {
|
|
334
|
+
per_page: number;
|
|
335
|
+
project_id: string;
|
|
336
|
+
page?: number | undefined;
|
|
337
|
+
query?: string | undefined;
|
|
338
|
+
user_ids?: number[] | undefined;
|
|
339
|
+
}, {
|
|
340
|
+
project_id: string;
|
|
341
|
+
page?: number | undefined;
|
|
342
|
+
per_page?: number | undefined;
|
|
343
|
+
query?: string | undefined;
|
|
344
|
+
user_ids?: number[] | undefined;
|
|
345
|
+
}>;
|
|
172
346
|
export declare const ListCommitsSchema: z.ZodObject<{
|
|
173
|
-
project_id: z.
|
|
347
|
+
project_id: z.ZodString;
|
|
174
348
|
ref_name: z.ZodOptional<z.ZodString>;
|
|
175
349
|
since: z.ZodOptional<z.ZodString>;
|
|
176
350
|
until: z.ZodOptional<z.ZodString>;
|
|
177
351
|
path: z.ZodOptional<z.ZodString>;
|
|
178
352
|
author: z.ZodOptional<z.ZodString>;
|
|
179
|
-
all: z.ZodOptional<z.
|
|
180
|
-
with_stats: z.ZodOptional<z.
|
|
181
|
-
first_parent: z.ZodOptional<z.
|
|
182
|
-
order: z.ZodOptional<z.ZodEnum<
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
}>>;
|
|
186
|
-
trailers: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
|
|
353
|
+
all: z.ZodOptional<z.ZodEffects<z.ZodBoolean, boolean, unknown>>;
|
|
354
|
+
with_stats: z.ZodOptional<z.ZodEffects<z.ZodBoolean, boolean, unknown>>;
|
|
355
|
+
first_parent: z.ZodOptional<z.ZodEffects<z.ZodBoolean, boolean, unknown>>;
|
|
356
|
+
order: z.ZodOptional<z.ZodEnum<["default", "topo"]>>;
|
|
357
|
+
trailers: z.ZodOptional<z.ZodEffects<z.ZodBoolean, boolean, unknown>>;
|
|
358
|
+
} & {
|
|
187
359
|
page: z.ZodOptional<z.ZodNumber>;
|
|
188
360
|
per_page: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
189
|
-
}, z.
|
|
361
|
+
}, "strip", z.ZodTypeAny, {
|
|
362
|
+
per_page: number;
|
|
363
|
+
project_id: string;
|
|
364
|
+
path?: string | undefined;
|
|
365
|
+
page?: number | undefined;
|
|
366
|
+
author?: string | undefined;
|
|
367
|
+
order?: "default" | "topo" | undefined;
|
|
368
|
+
ref_name?: string | undefined;
|
|
369
|
+
since?: string | undefined;
|
|
370
|
+
until?: string | undefined;
|
|
371
|
+
all?: boolean | undefined;
|
|
372
|
+
with_stats?: boolean | undefined;
|
|
373
|
+
first_parent?: boolean | undefined;
|
|
374
|
+
trailers?: boolean | undefined;
|
|
375
|
+
}, {
|
|
376
|
+
project_id: string;
|
|
377
|
+
path?: string | undefined;
|
|
378
|
+
page?: number | undefined;
|
|
379
|
+
per_page?: number | undefined;
|
|
380
|
+
author?: string | undefined;
|
|
381
|
+
order?: "default" | "topo" | undefined;
|
|
382
|
+
ref_name?: string | undefined;
|
|
383
|
+
since?: string | undefined;
|
|
384
|
+
until?: string | undefined;
|
|
385
|
+
all?: unknown;
|
|
386
|
+
with_stats?: unknown;
|
|
387
|
+
first_parent?: unknown;
|
|
388
|
+
trailers?: unknown;
|
|
389
|
+
}>;
|
|
190
390
|
export declare const GetCommitSchema: z.ZodObject<{
|
|
191
|
-
project_id: z.
|
|
391
|
+
project_id: z.ZodString;
|
|
192
392
|
commit_sha: z.ZodString;
|
|
193
|
-
stats: z.ZodOptional<z.
|
|
194
|
-
}, z.
|
|
393
|
+
stats: z.ZodOptional<z.ZodEffects<z.ZodBoolean, boolean, unknown>>;
|
|
394
|
+
}, "strip", z.ZodTypeAny, {
|
|
395
|
+
project_id: string;
|
|
396
|
+
commit_sha: string;
|
|
397
|
+
stats?: boolean | undefined;
|
|
398
|
+
}, {
|
|
399
|
+
project_id: string;
|
|
400
|
+
commit_sha: string;
|
|
401
|
+
stats?: unknown;
|
|
402
|
+
}>;
|
|
195
403
|
export declare const GetCommitDiffSchema: z.ZodObject<{
|
|
196
|
-
project_id: z.
|
|
404
|
+
project_id: z.ZodString;
|
|
197
405
|
commit_sha: z.ZodString;
|
|
198
|
-
unidiff: z.ZodOptional<z.
|
|
199
|
-
}, z.
|
|
406
|
+
unidiff: z.ZodOptional<z.ZodEffects<z.ZodBoolean, boolean, unknown>>;
|
|
407
|
+
}, "strip", z.ZodTypeAny, {
|
|
408
|
+
project_id: string;
|
|
409
|
+
commit_sha: string;
|
|
410
|
+
unidiff?: boolean | undefined;
|
|
411
|
+
}, {
|
|
412
|
+
project_id: string;
|
|
413
|
+
commit_sha: string;
|
|
414
|
+
unidiff?: unknown;
|
|
415
|
+
}>;
|
|
200
416
|
export declare const ListGroupIterationsSchema: z.ZodObject<{
|
|
201
|
-
group_id: z.
|
|
202
|
-
state: z.ZodOptional<z.ZodEnum<
|
|
203
|
-
all: "all";
|
|
204
|
-
opened: "opened";
|
|
205
|
-
upcoming: "upcoming";
|
|
206
|
-
current: "current";
|
|
207
|
-
closed: "closed";
|
|
208
|
-
}>>;
|
|
417
|
+
group_id: z.ZodString;
|
|
418
|
+
state: z.ZodOptional<z.ZodEnum<["opened", "upcoming", "current", "closed", "all"]>>;
|
|
209
419
|
search: z.ZodOptional<z.ZodString>;
|
|
210
|
-
include_ancestors: z.ZodOptional<z.
|
|
420
|
+
include_ancestors: z.ZodOptional<z.ZodEffects<z.ZodBoolean, boolean, unknown>>;
|
|
421
|
+
} & {
|
|
211
422
|
page: z.ZodOptional<z.ZodNumber>;
|
|
212
423
|
per_page: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
213
|
-
}, z.
|
|
424
|
+
}, "strip", z.ZodTypeAny, {
|
|
425
|
+
per_page: number;
|
|
426
|
+
group_id: string;
|
|
427
|
+
search?: string | undefined;
|
|
428
|
+
page?: number | undefined;
|
|
429
|
+
state?: "all" | "opened" | "upcoming" | "current" | "closed" | undefined;
|
|
430
|
+
include_ancestors?: boolean | undefined;
|
|
431
|
+
}, {
|
|
432
|
+
group_id: string;
|
|
433
|
+
search?: string | undefined;
|
|
434
|
+
page?: number | undefined;
|
|
435
|
+
per_page?: number | undefined;
|
|
436
|
+
state?: "all" | "opened" | "upcoming" | "current" | "closed" | undefined;
|
|
437
|
+
include_ancestors?: unknown;
|
|
438
|
+
}>;
|
|
214
439
|
export declare const DownloadAttachmentSchema: z.ZodObject<{
|
|
215
|
-
project_id: z.
|
|
440
|
+
project_id: z.ZodString;
|
|
216
441
|
secret: z.ZodString;
|
|
217
442
|
filename: z.ZodString;
|
|
218
|
-
}, z.
|
|
443
|
+
}, "strip", z.ZodTypeAny, {
|
|
444
|
+
project_id: string;
|
|
445
|
+
secret: string;
|
|
446
|
+
filename: string;
|
|
447
|
+
}, {
|
|
448
|
+
project_id: string;
|
|
449
|
+
secret: string;
|
|
450
|
+
filename: string;
|
|
451
|
+
}>;
|
|
219
452
|
export declare const ListEventsSchema: z.ZodObject<{
|
|
220
|
-
action: z.ZodOptional<z.ZodEnum<
|
|
221
|
-
|
|
222
|
-
created: "created";
|
|
223
|
-
pushed: "pushed";
|
|
224
|
-
closed: "closed";
|
|
225
|
-
reopened: "reopened";
|
|
226
|
-
commented: "commented";
|
|
227
|
-
merged: "merged";
|
|
228
|
-
joined: "joined";
|
|
229
|
-
left: "left";
|
|
230
|
-
destroyed: "destroyed";
|
|
231
|
-
expired: "expired";
|
|
232
|
-
}>>;
|
|
233
|
-
target_type: z.ZodOptional<z.ZodEnum<{
|
|
234
|
-
milestone: "milestone";
|
|
235
|
-
issue: "issue";
|
|
236
|
-
merge_request: "merge_request";
|
|
237
|
-
note: "note";
|
|
238
|
-
project: "project";
|
|
239
|
-
snippet: "snippet";
|
|
240
|
-
user: "user";
|
|
241
|
-
}>>;
|
|
453
|
+
action: z.ZodOptional<z.ZodEnum<["created", "updated", "closed", "reopened", "pushed", "commented", "merged", "joined", "left", "destroyed", "expired"]>>;
|
|
454
|
+
target_type: z.ZodOptional<z.ZodEnum<["issue", "milestone", "merge_request", "note", "project", "snippet", "user"]>>;
|
|
242
455
|
before: z.ZodOptional<z.ZodString>;
|
|
243
456
|
after: z.ZodOptional<z.ZodString>;
|
|
244
|
-
sort: z.ZodOptional<z.ZodEnum<
|
|
245
|
-
|
|
246
|
-
desc: "desc";
|
|
247
|
-
}>>;
|
|
457
|
+
sort: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
458
|
+
} & {
|
|
248
459
|
page: z.ZodOptional<z.ZodNumber>;
|
|
249
460
|
per_page: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
250
|
-
}, z.
|
|
461
|
+
}, "strip", z.ZodTypeAny, {
|
|
462
|
+
per_page: number;
|
|
463
|
+
sort?: "asc" | "desc" | undefined;
|
|
464
|
+
page?: number | undefined;
|
|
465
|
+
action?: "updated" | "created" | "pushed" | "closed" | "reopened" | "commented" | "merged" | "joined" | "left" | "destroyed" | "expired" | undefined;
|
|
466
|
+
target_type?: "milestone" | "issue" | "merge_request" | "note" | "project" | "snippet" | "user" | undefined;
|
|
467
|
+
before?: string | undefined;
|
|
468
|
+
after?: string | undefined;
|
|
469
|
+
}, {
|
|
470
|
+
sort?: "asc" | "desc" | undefined;
|
|
471
|
+
page?: number | undefined;
|
|
472
|
+
per_page?: number | undefined;
|
|
473
|
+
action?: "updated" | "created" | "pushed" | "closed" | "reopened" | "commented" | "merged" | "joined" | "left" | "destroyed" | "expired" | undefined;
|
|
474
|
+
target_type?: "milestone" | "issue" | "merge_request" | "note" | "project" | "snippet" | "user" | undefined;
|
|
475
|
+
before?: string | undefined;
|
|
476
|
+
after?: string | undefined;
|
|
477
|
+
}>;
|
|
251
478
|
export declare const GetProjectEventsSchema: z.ZodObject<{
|
|
252
|
-
project_id: z.
|
|
253
|
-
action: z.ZodOptional<z.ZodEnum<
|
|
254
|
-
|
|
255
|
-
created: "created";
|
|
256
|
-
pushed: "pushed";
|
|
257
|
-
closed: "closed";
|
|
258
|
-
reopened: "reopened";
|
|
259
|
-
commented: "commented";
|
|
260
|
-
merged: "merged";
|
|
261
|
-
joined: "joined";
|
|
262
|
-
left: "left";
|
|
263
|
-
destroyed: "destroyed";
|
|
264
|
-
expired: "expired";
|
|
265
|
-
}>>;
|
|
266
|
-
target_type: z.ZodOptional<z.ZodEnum<{
|
|
267
|
-
milestone: "milestone";
|
|
268
|
-
issue: "issue";
|
|
269
|
-
merge_request: "merge_request";
|
|
270
|
-
note: "note";
|
|
271
|
-
project: "project";
|
|
272
|
-
snippet: "snippet";
|
|
273
|
-
user: "user";
|
|
274
|
-
}>>;
|
|
479
|
+
project_id: z.ZodString;
|
|
480
|
+
action: z.ZodOptional<z.ZodEnum<["created", "updated", "closed", "reopened", "pushed", "commented", "merged", "joined", "left", "destroyed", "expired"]>>;
|
|
481
|
+
target_type: z.ZodOptional<z.ZodEnum<["issue", "milestone", "merge_request", "note", "project", "snippet", "user"]>>;
|
|
275
482
|
before: z.ZodOptional<z.ZodString>;
|
|
276
483
|
after: z.ZodOptional<z.ZodString>;
|
|
277
|
-
sort: z.ZodOptional<z.ZodEnum<
|
|
278
|
-
|
|
279
|
-
desc: "desc";
|
|
280
|
-
}>>;
|
|
484
|
+
sort: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
485
|
+
} & {
|
|
281
486
|
page: z.ZodOptional<z.ZodNumber>;
|
|
282
487
|
per_page: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
283
|
-
}, z.
|
|
488
|
+
}, "strip", z.ZodTypeAny, {
|
|
489
|
+
per_page: number;
|
|
490
|
+
project_id: string;
|
|
491
|
+
sort?: "asc" | "desc" | undefined;
|
|
492
|
+
page?: number | undefined;
|
|
493
|
+
action?: "updated" | "created" | "pushed" | "closed" | "reopened" | "commented" | "merged" | "joined" | "left" | "destroyed" | "expired" | undefined;
|
|
494
|
+
target_type?: "milestone" | "issue" | "merge_request" | "note" | "project" | "snippet" | "user" | undefined;
|
|
495
|
+
before?: string | undefined;
|
|
496
|
+
after?: string | undefined;
|
|
497
|
+
}, {
|
|
498
|
+
project_id: string;
|
|
499
|
+
sort?: "asc" | "desc" | undefined;
|
|
500
|
+
page?: number | undefined;
|
|
501
|
+
per_page?: number | undefined;
|
|
502
|
+
action?: "updated" | "created" | "pushed" | "closed" | "reopened" | "commented" | "merged" | "joined" | "left" | "destroyed" | "expired" | undefined;
|
|
503
|
+
target_type?: "milestone" | "issue" | "merge_request" | "note" | "project" | "snippet" | "user" | undefined;
|
|
504
|
+
before?: string | undefined;
|
|
505
|
+
after?: string | undefined;
|
|
506
|
+
}>;
|
|
284
507
|
export type GitLabSearchResponse = z.infer<typeof GitLabSearchResponseSchema>;
|
|
285
508
|
export type GitLabReference = z.infer<typeof GitLabReferenceSchema>;
|
|
286
509
|
export type GitLabCompareResult = z.infer<typeof GitLabCompareResultSchema>;
|
|
@@ -292,7 +515,6 @@ export type VerifyNamespaceOptions = z.infer<typeof VerifyNamespaceSchema>;
|
|
|
292
515
|
export type GetProjectOptions = z.infer<typeof GetProjectSchema>;
|
|
293
516
|
export type ListProjectsOptions = z.infer<typeof ListProjectsSchema>;
|
|
294
517
|
export type ListProjectMembersOptions = z.infer<typeof ListProjectMembersSchema>;
|
|
295
|
-
export type ListGroupProjectsOptions = z.infer<typeof ListGroupProjectsSchema>;
|
|
296
518
|
export type ListCommitsOptions = z.infer<typeof ListCommitsSchema>;
|
|
297
519
|
export type GetCommitOptions = z.infer<typeof GetCommitSchema>;
|
|
298
520
|
export type GetCommitDiffOptions = z.infer<typeof GetCommitDiffSchema>;
|