@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
|
@@ -2,41 +2,101 @@ import { z } from 'zod';
|
|
|
2
2
|
export declare const PaginationOptionsSchema: z.ZodObject<{
|
|
3
3
|
page: z.ZodOptional<z.ZodNumber>;
|
|
4
4
|
per_page: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
5
|
-
}, z.
|
|
5
|
+
}, "strip", z.ZodTypeAny, {
|
|
6
|
+
per_page: number;
|
|
7
|
+
page?: number | undefined;
|
|
8
|
+
}, {
|
|
9
|
+
page?: number | undefined;
|
|
10
|
+
per_page?: number | undefined;
|
|
11
|
+
}>;
|
|
6
12
|
export declare const GitLabMilestoneSchema: z.ZodObject<{
|
|
7
|
-
id: z.
|
|
8
|
-
iid: z.
|
|
13
|
+
id: z.ZodString;
|
|
14
|
+
iid: z.ZodString;
|
|
9
15
|
title: z.ZodString;
|
|
10
16
|
description: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
11
17
|
state: z.ZodString;
|
|
12
18
|
web_url: z.ZodString;
|
|
13
|
-
}, z.
|
|
19
|
+
}, "strip", z.ZodTypeAny, {
|
|
20
|
+
id: string;
|
|
21
|
+
iid: string;
|
|
22
|
+
title: string;
|
|
23
|
+
description: string | null;
|
|
24
|
+
state: string;
|
|
25
|
+
web_url: string;
|
|
26
|
+
}, {
|
|
27
|
+
id: string;
|
|
28
|
+
iid: string;
|
|
29
|
+
title: string;
|
|
30
|
+
state: string;
|
|
31
|
+
web_url: string;
|
|
32
|
+
description?: string | null | undefined;
|
|
33
|
+
}>;
|
|
14
34
|
export declare const GitLabAuthorSchema: z.ZodObject<{
|
|
15
35
|
name: z.ZodString;
|
|
16
36
|
email: z.ZodString;
|
|
17
37
|
date: z.ZodString;
|
|
18
|
-
}, z.
|
|
38
|
+
}, "strip", z.ZodTypeAny, {
|
|
39
|
+
name: string;
|
|
40
|
+
email: string;
|
|
41
|
+
date: string;
|
|
42
|
+
}, {
|
|
43
|
+
name: string;
|
|
44
|
+
email: string;
|
|
45
|
+
date: string;
|
|
46
|
+
}>;
|
|
19
47
|
export declare const GitLabUserSchema: z.ZodObject<{
|
|
20
|
-
id: z.
|
|
48
|
+
id: z.ZodString;
|
|
21
49
|
username: z.ZodString;
|
|
22
50
|
name: z.ZodString;
|
|
23
51
|
avatar_url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24
|
-
}, z.
|
|
52
|
+
}, "strip", z.ZodTypeAny, {
|
|
53
|
+
name: string;
|
|
54
|
+
id: string;
|
|
55
|
+
username: string;
|
|
56
|
+
avatar_url?: string | null | undefined;
|
|
57
|
+
}, {
|
|
58
|
+
name: string;
|
|
59
|
+
id: string;
|
|
60
|
+
username: string;
|
|
61
|
+
avatar_url?: string | null | undefined;
|
|
62
|
+
}>;
|
|
25
63
|
export declare const GitLabNamespaceSchema: z.ZodObject<{
|
|
26
|
-
id: z.
|
|
64
|
+
id: z.ZodString;
|
|
27
65
|
name: z.ZodString;
|
|
28
66
|
path: z.ZodString;
|
|
29
67
|
kind: z.ZodString;
|
|
30
68
|
full_path: z.ZodString;
|
|
31
|
-
parent_id: z.ZodNullable<z.
|
|
69
|
+
parent_id: z.ZodNullable<z.ZodString>;
|
|
32
70
|
avatar_url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33
71
|
web_url: z.ZodString;
|
|
34
|
-
}, z.
|
|
72
|
+
}, "strip", z.ZodTypeAny, {
|
|
73
|
+
name: string;
|
|
74
|
+
path: string;
|
|
75
|
+
id: string;
|
|
76
|
+
web_url: string;
|
|
77
|
+
kind: string;
|
|
78
|
+
full_path: string;
|
|
79
|
+
parent_id: string | null;
|
|
80
|
+
avatar_url?: string | null | undefined;
|
|
81
|
+
}, {
|
|
82
|
+
name: string;
|
|
83
|
+
path: string;
|
|
84
|
+
id: string;
|
|
85
|
+
web_url: string;
|
|
86
|
+
kind: string;
|
|
87
|
+
full_path: string;
|
|
88
|
+
parent_id: string | null;
|
|
89
|
+
avatar_url?: string | null | undefined;
|
|
90
|
+
}>;
|
|
35
91
|
export declare const ProjectParamsSchema: z.ZodObject<{
|
|
36
|
-
project_id: z.
|
|
37
|
-
}, z.
|
|
92
|
+
project_id: z.ZodString;
|
|
93
|
+
}, "strip", z.ZodTypeAny, {
|
|
94
|
+
project_id: string;
|
|
95
|
+
}, {
|
|
96
|
+
project_id: string;
|
|
97
|
+
}>;
|
|
38
98
|
export declare const GitLabProjectSchema: z.ZodObject<{
|
|
39
|
-
id: z.
|
|
99
|
+
id: z.ZodString;
|
|
40
100
|
description: z.ZodNullable<z.ZodString>;
|
|
41
101
|
name: z.ZodString;
|
|
42
102
|
name_with_namespace: z.ZodString;
|
|
@@ -44,8 +104,8 @@ export declare const GitLabProjectSchema: z.ZodObject<{
|
|
|
44
104
|
path_with_namespace: z.ZodString;
|
|
45
105
|
created_at: z.ZodString;
|
|
46
106
|
default_branch: z.ZodNullable<z.ZodString>;
|
|
47
|
-
tag_list: z.ZodArray<z.ZodString>;
|
|
48
|
-
topics: z.ZodArray<z.ZodString>;
|
|
107
|
+
tag_list: z.ZodArray<z.ZodString, "many">;
|
|
108
|
+
topics: z.ZodArray<z.ZodString, "many">;
|
|
49
109
|
ssh_url_to_repo: z.ZodString;
|
|
50
110
|
http_url_to_repo: z.ZodString;
|
|
51
111
|
web_url: z.ZodString;
|
|
@@ -54,21 +114,35 @@ export declare const GitLabProjectSchema: z.ZodObject<{
|
|
|
54
114
|
avatar_url: z.ZodNullable<z.ZodString>;
|
|
55
115
|
star_count: z.ZodNumber;
|
|
56
116
|
last_activity_at: z.ZodString;
|
|
57
|
-
visibility: z.ZodEnum<
|
|
58
|
-
private: "private";
|
|
59
|
-
internal: "internal";
|
|
60
|
-
public: "public";
|
|
61
|
-
}>;
|
|
117
|
+
visibility: z.ZodEnum<["private", "internal", "public"]>;
|
|
62
118
|
namespace: z.ZodObject<{
|
|
63
|
-
id: z.
|
|
119
|
+
id: z.ZodString;
|
|
64
120
|
name: z.ZodString;
|
|
65
121
|
path: z.ZodString;
|
|
66
122
|
kind: z.ZodString;
|
|
67
123
|
full_path: z.ZodString;
|
|
68
|
-
parent_id: z.ZodNullable<z.
|
|
124
|
+
parent_id: z.ZodNullable<z.ZodString>;
|
|
69
125
|
avatar_url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
70
126
|
web_url: z.ZodString;
|
|
71
|
-
}, z.
|
|
127
|
+
}, "strip", z.ZodTypeAny, {
|
|
128
|
+
name: string;
|
|
129
|
+
path: string;
|
|
130
|
+
id: string;
|
|
131
|
+
web_url: string;
|
|
132
|
+
kind: string;
|
|
133
|
+
full_path: string;
|
|
134
|
+
parent_id: string | null;
|
|
135
|
+
avatar_url?: string | null | undefined;
|
|
136
|
+
}, {
|
|
137
|
+
name: string;
|
|
138
|
+
path: string;
|
|
139
|
+
id: string;
|
|
140
|
+
web_url: string;
|
|
141
|
+
kind: string;
|
|
142
|
+
full_path: string;
|
|
143
|
+
parent_id: string | null;
|
|
144
|
+
avatar_url?: string | null | undefined;
|
|
145
|
+
}>;
|
|
72
146
|
repository_storage: z.ZodOptional<z.ZodString>;
|
|
73
147
|
container_registry_image_prefix: z.ZodOptional<z.ZodString>;
|
|
74
148
|
_links: z.ZodObject<{
|
|
@@ -80,32 +154,66 @@ export declare const GitLabProjectSchema: z.ZodObject<{
|
|
|
80
154
|
events: z.ZodString;
|
|
81
155
|
members: z.ZodString;
|
|
82
156
|
cluster_agents: z.ZodOptional<z.ZodString>;
|
|
83
|
-
}, z.
|
|
157
|
+
}, "strip", z.ZodTypeAny, {
|
|
158
|
+
issues: string;
|
|
159
|
+
labels: string;
|
|
160
|
+
self: string;
|
|
161
|
+
merge_requests: string;
|
|
162
|
+
repo_branches: string;
|
|
163
|
+
events: string;
|
|
164
|
+
members: string;
|
|
165
|
+
cluster_agents?: string | undefined;
|
|
166
|
+
}, {
|
|
167
|
+
issues: string;
|
|
168
|
+
labels: string;
|
|
169
|
+
self: string;
|
|
170
|
+
merge_requests: string;
|
|
171
|
+
repo_branches: string;
|
|
172
|
+
events: string;
|
|
173
|
+
members: string;
|
|
174
|
+
cluster_agents?: string | undefined;
|
|
175
|
+
}>;
|
|
84
176
|
marked_for_deletion_at: z.ZodNullable<z.ZodString>;
|
|
85
177
|
marked_for_deletion_on: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
86
|
-
packages_enabled: z.ZodOptional<z.
|
|
87
|
-
empty_repo: z.
|
|
88
|
-
archived: z.
|
|
89
|
-
resolve_outdated_diff_discussions: z.ZodOptional<z.
|
|
178
|
+
packages_enabled: z.ZodOptional<z.ZodEffects<z.ZodBoolean, boolean, unknown>>;
|
|
179
|
+
empty_repo: z.ZodEffects<z.ZodBoolean, boolean, unknown>;
|
|
180
|
+
archived: z.ZodEffects<z.ZodBoolean, boolean, unknown>;
|
|
181
|
+
resolve_outdated_diff_discussions: z.ZodOptional<z.ZodEffects<z.ZodBoolean, boolean, unknown>>;
|
|
90
182
|
container_expiration_policy: z.ZodOptional<z.ZodObject<{
|
|
91
183
|
cadence: z.ZodString;
|
|
92
|
-
enabled: z.
|
|
184
|
+
enabled: z.ZodEffects<z.ZodBoolean, boolean, unknown>;
|
|
93
185
|
keep_n: z.ZodNumber;
|
|
94
186
|
older_than: z.ZodString;
|
|
95
187
|
name_regex: z.ZodString;
|
|
96
188
|
name_regex_keep: z.ZodNullable<z.ZodString>;
|
|
97
189
|
next_run_at: z.ZodString;
|
|
98
|
-
}, z.
|
|
190
|
+
}, "strip", z.ZodTypeAny, {
|
|
191
|
+
enabled: boolean;
|
|
192
|
+
cadence: string;
|
|
193
|
+
keep_n: number;
|
|
194
|
+
older_than: string;
|
|
195
|
+
name_regex: string;
|
|
196
|
+
name_regex_keep: string | null;
|
|
197
|
+
next_run_at: string;
|
|
198
|
+
}, {
|
|
199
|
+
cadence: string;
|
|
200
|
+
keep_n: number;
|
|
201
|
+
older_than: string;
|
|
202
|
+
name_regex: string;
|
|
203
|
+
name_regex_keep: string | null;
|
|
204
|
+
next_run_at: string;
|
|
205
|
+
enabled?: unknown;
|
|
206
|
+
}>>;
|
|
99
207
|
repository_object_format: z.ZodOptional<z.ZodString>;
|
|
100
|
-
issues_enabled: z.
|
|
101
|
-
merge_requests_enabled: z.
|
|
102
|
-
wiki_enabled: z.
|
|
103
|
-
jobs_enabled: z.
|
|
104
|
-
snippets_enabled: z.
|
|
105
|
-
container_registry_enabled: z.ZodOptional<z.
|
|
106
|
-
service_desk_enabled: z.ZodOptional<z.
|
|
208
|
+
issues_enabled: z.ZodEffects<z.ZodBoolean, boolean, unknown>;
|
|
209
|
+
merge_requests_enabled: z.ZodEffects<z.ZodBoolean, boolean, unknown>;
|
|
210
|
+
wiki_enabled: z.ZodEffects<z.ZodBoolean, boolean, unknown>;
|
|
211
|
+
jobs_enabled: z.ZodEffects<z.ZodBoolean, boolean, unknown>;
|
|
212
|
+
snippets_enabled: z.ZodEffects<z.ZodBoolean, boolean, unknown>;
|
|
213
|
+
container_registry_enabled: z.ZodOptional<z.ZodEffects<z.ZodBoolean, boolean, unknown>>;
|
|
214
|
+
service_desk_enabled: z.ZodOptional<z.ZodEffects<z.ZodBoolean, boolean, unknown>>;
|
|
107
215
|
service_desk_address: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
108
|
-
can_create_merge_request_in: z.ZodOptional<z.
|
|
216
|
+
can_create_merge_request_in: z.ZodOptional<z.ZodEffects<z.ZodBoolean, boolean, unknown>>;
|
|
109
217
|
issues_access_level: z.ZodString;
|
|
110
218
|
repository_access_level: z.ZodString;
|
|
111
219
|
merge_requests_access_level: z.ZodString;
|
|
@@ -124,11 +232,11 @@ export declare const GitLabProjectSchema: z.ZodObject<{
|
|
|
124
232
|
monitor_access_level: z.ZodOptional<z.ZodString>;
|
|
125
233
|
model_experiments_access_level: z.ZodOptional<z.ZodString>;
|
|
126
234
|
model_registry_access_level: z.ZodOptional<z.ZodString>;
|
|
127
|
-
emails_disabled: z.ZodOptional<z.
|
|
128
|
-
emails_enabled: z.ZodOptional<z.
|
|
129
|
-
shared_runners_enabled: z.ZodOptional<z.
|
|
130
|
-
lfs_enabled: z.ZodOptional<z.
|
|
131
|
-
creator_id: z.ZodOptional<z.
|
|
235
|
+
emails_disabled: z.ZodOptional<z.ZodEffects<z.ZodBoolean, boolean, unknown>>;
|
|
236
|
+
emails_enabled: z.ZodOptional<z.ZodEffects<z.ZodBoolean, boolean, unknown>>;
|
|
237
|
+
shared_runners_enabled: z.ZodOptional<z.ZodEffects<z.ZodBoolean, boolean, unknown>>;
|
|
238
|
+
lfs_enabled: z.ZodOptional<z.ZodEffects<z.ZodBoolean, boolean, unknown>>;
|
|
239
|
+
creator_id: z.ZodOptional<z.ZodString>;
|
|
132
240
|
import_url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
133
241
|
import_type: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
134
242
|
import_status: z.ZodOptional<z.ZodString>;
|
|
@@ -138,78 +246,444 @@ export declare const GitLabProjectSchema: z.ZodObject<{
|
|
|
138
246
|
updated_at: z.ZodString;
|
|
139
247
|
ci_default_git_depth: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
140
248
|
ci_delete_pipelines_in_seconds: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
141
|
-
ci_forward_deployment_enabled: z.ZodOptional<z.
|
|
142
|
-
ci_forward_deployment_rollback_allowed: z.ZodOptional<z.
|
|
143
|
-
ci_job_token_scope_enabled: z.ZodOptional<z.
|
|
144
|
-
ci_separated_caches: z.ZodOptional<z.
|
|
145
|
-
ci_allow_fork_pipelines_to_run_in_parent_project: z.ZodOptional<z.
|
|
146
|
-
ci_id_token_sub_claim_components: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
249
|
+
ci_forward_deployment_enabled: z.ZodOptional<z.ZodEffects<z.ZodBoolean, boolean, unknown>>;
|
|
250
|
+
ci_forward_deployment_rollback_allowed: z.ZodOptional<z.ZodEffects<z.ZodBoolean, boolean, unknown>>;
|
|
251
|
+
ci_job_token_scope_enabled: z.ZodOptional<z.ZodEffects<z.ZodBoolean, boolean, unknown>>;
|
|
252
|
+
ci_separated_caches: z.ZodOptional<z.ZodEffects<z.ZodBoolean, boolean, unknown>>;
|
|
253
|
+
ci_allow_fork_pipelines_to_run_in_parent_project: z.ZodOptional<z.ZodEffects<z.ZodBoolean, boolean, unknown>>;
|
|
254
|
+
ci_id_token_sub_claim_components: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
147
255
|
build_git_strategy: z.ZodOptional<z.ZodString>;
|
|
148
|
-
keep_latest_artifact: z.ZodOptional<z.
|
|
149
|
-
restrict_user_defined_variables: z.ZodOptional<z.
|
|
256
|
+
keep_latest_artifact: z.ZodOptional<z.ZodEffects<z.ZodBoolean, boolean, unknown>>;
|
|
257
|
+
restrict_user_defined_variables: z.ZodOptional<z.ZodEffects<z.ZodBoolean, boolean, unknown>>;
|
|
150
258
|
ci_pipeline_variables_minimum_override_role: z.ZodOptional<z.ZodString>;
|
|
151
259
|
runner_token_expiration_interval: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
152
|
-
group_runners_enabled: z.ZodOptional<z.
|
|
260
|
+
group_runners_enabled: z.ZodOptional<z.ZodEffects<z.ZodBoolean, boolean, unknown>>;
|
|
153
261
|
auto_cancel_pending_pipelines: z.ZodOptional<z.ZodString>;
|
|
154
262
|
build_timeout: z.ZodOptional<z.ZodNumber>;
|
|
155
|
-
auto_devops_enabled: z.ZodOptional<z.
|
|
263
|
+
auto_devops_enabled: z.ZodOptional<z.ZodEffects<z.ZodBoolean, boolean, unknown>>;
|
|
156
264
|
auto_devops_deploy_strategy: z.ZodOptional<z.ZodString>;
|
|
157
|
-
ci_push_repository_for_job_token_allowed: z.ZodOptional<z.
|
|
265
|
+
ci_push_repository_for_job_token_allowed: z.ZodOptional<z.ZodEffects<z.ZodBoolean, boolean, unknown>>;
|
|
158
266
|
runners_token: z.ZodOptional<z.ZodString>;
|
|
159
267
|
ci_config_path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
160
|
-
public_jobs: z.ZodOptional<z.
|
|
161
|
-
shared_with_groups: z.ZodOptional<z.ZodArray<z.ZodUnknown>>;
|
|
162
|
-
only_allow_merge_if_pipeline_succeeds: z.ZodOptional<z.
|
|
268
|
+
public_jobs: z.ZodOptional<z.ZodEffects<z.ZodBoolean, boolean, unknown>>;
|
|
269
|
+
shared_with_groups: z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>;
|
|
270
|
+
only_allow_merge_if_pipeline_succeeds: z.ZodOptional<z.ZodEffects<z.ZodBoolean, boolean, unknown>>;
|
|
163
271
|
allow_merge_on_skipped_pipeline: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
164
|
-
request_access_enabled: z.ZodOptional<z.
|
|
165
|
-
only_allow_merge_if_all_discussions_are_resolved: z.ZodOptional<z.
|
|
166
|
-
remove_source_branch_after_merge: z.ZodOptional<z.
|
|
167
|
-
printing_merge_request_link_enabled: z.ZodOptional<z.
|
|
272
|
+
request_access_enabled: z.ZodOptional<z.ZodEffects<z.ZodBoolean, boolean, unknown>>;
|
|
273
|
+
only_allow_merge_if_all_discussions_are_resolved: z.ZodOptional<z.ZodEffects<z.ZodBoolean, boolean, unknown>>;
|
|
274
|
+
remove_source_branch_after_merge: z.ZodOptional<z.ZodEffects<z.ZodBoolean, boolean, unknown>>;
|
|
275
|
+
printing_merge_request_link_enabled: z.ZodOptional<z.ZodEffects<z.ZodBoolean, boolean, unknown>>;
|
|
168
276
|
merge_method: z.ZodOptional<z.ZodString>;
|
|
169
277
|
merge_request_title_regex: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
170
278
|
merge_request_title_regex_description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
171
279
|
squash_option: z.ZodOptional<z.ZodString>;
|
|
172
|
-
enforce_auth_checks_on_uploads: z.ZodOptional<z.
|
|
280
|
+
enforce_auth_checks_on_uploads: z.ZodOptional<z.ZodEffects<z.ZodBoolean, boolean, unknown>>;
|
|
173
281
|
suggestion_commit_message: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
174
282
|
merge_commit_template: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
175
283
|
squash_commit_template: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
176
284
|
issue_branch_template: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
177
|
-
warn_about_potentially_unwanted_characters: z.ZodOptional<z.
|
|
178
|
-
autoclose_referenced_issues: z.ZodOptional<z.
|
|
285
|
+
warn_about_potentially_unwanted_characters: z.ZodOptional<z.ZodEffects<z.ZodBoolean, boolean, unknown>>;
|
|
286
|
+
autoclose_referenced_issues: z.ZodOptional<z.ZodEffects<z.ZodBoolean, boolean, unknown>>;
|
|
179
287
|
max_artifacts_size: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
180
288
|
approvals_before_merge: z.ZodOptional<z.ZodNumber>;
|
|
181
|
-
mirror: z.ZodOptional<z.
|
|
289
|
+
mirror: z.ZodOptional<z.ZodEffects<z.ZodBoolean, boolean, unknown>>;
|
|
182
290
|
external_authorization_classification_label: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
183
|
-
requirements_enabled: z.ZodOptional<z.
|
|
291
|
+
requirements_enabled: z.ZodOptional<z.ZodEffects<z.ZodBoolean, boolean, unknown>>;
|
|
184
292
|
requirements_access_level: z.ZodOptional<z.ZodString>;
|
|
185
|
-
security_and_compliance_enabled: z.ZodOptional<z.
|
|
186
|
-
secret_push_protection_enabled: z.ZodOptional<z.
|
|
187
|
-
pre_receive_secret_detection_enabled: z.ZodOptional<z.
|
|
188
|
-
compliance_frameworks: z.ZodOptional<z.ZodArray<z.ZodUnknown>>;
|
|
293
|
+
security_and_compliance_enabled: z.ZodOptional<z.ZodEffects<z.ZodBoolean, boolean, unknown>>;
|
|
294
|
+
secret_push_protection_enabled: z.ZodOptional<z.ZodEffects<z.ZodBoolean, boolean, unknown>>;
|
|
295
|
+
pre_receive_secret_detection_enabled: z.ZodOptional<z.ZodEffects<z.ZodBoolean, boolean, unknown>>;
|
|
296
|
+
compliance_frameworks: z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>;
|
|
189
297
|
issues_template: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
190
298
|
merge_requests_template: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
191
299
|
ci_restrict_pipeline_cancellation_role: z.ZodOptional<z.ZodString>;
|
|
192
|
-
merge_pipelines_enabled: z.ZodOptional<z.
|
|
193
|
-
merge_trains_enabled: z.ZodOptional<z.
|
|
194
|
-
merge_trains_skip_train_allowed: z.ZodOptional<z.
|
|
195
|
-
only_allow_merge_if_all_status_checks_passed: z.ZodOptional<z.
|
|
196
|
-
allow_pipeline_trigger_approve_deployment: z.ZodOptional<z.
|
|
197
|
-
prevent_merge_without_jira_issue: z.ZodOptional<z.
|
|
198
|
-
duo_remote_flows_enabled: z.ZodOptional<z.
|
|
199
|
-
spp_repository_pipeline_access: z.ZodOptional<z.
|
|
300
|
+
merge_pipelines_enabled: z.ZodOptional<z.ZodEffects<z.ZodBoolean, boolean, unknown>>;
|
|
301
|
+
merge_trains_enabled: z.ZodOptional<z.ZodEffects<z.ZodBoolean, boolean, unknown>>;
|
|
302
|
+
merge_trains_skip_train_allowed: z.ZodOptional<z.ZodEffects<z.ZodBoolean, boolean, unknown>>;
|
|
303
|
+
only_allow_merge_if_all_status_checks_passed: z.ZodOptional<z.ZodEffects<z.ZodBoolean, boolean, unknown>>;
|
|
304
|
+
allow_pipeline_trigger_approve_deployment: z.ZodOptional<z.ZodEffects<z.ZodBoolean, boolean, unknown>>;
|
|
305
|
+
prevent_merge_without_jira_issue: z.ZodOptional<z.ZodEffects<z.ZodBoolean, boolean, unknown>>;
|
|
306
|
+
duo_remote_flows_enabled: z.ZodOptional<z.ZodEffects<z.ZodBoolean, boolean, unknown>>;
|
|
307
|
+
spp_repository_pipeline_access: z.ZodOptional<z.ZodEffects<z.ZodBoolean, boolean, unknown>>;
|
|
200
308
|
permissions: z.ZodOptional<z.ZodObject<{
|
|
201
309
|
project_access: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
202
310
|
access_level: z.ZodNumber;
|
|
203
311
|
notification_level: z.ZodNumber;
|
|
204
|
-
}, z.
|
|
312
|
+
}, "strip", z.ZodTypeAny, {
|
|
313
|
+
access_level: number;
|
|
314
|
+
notification_level: number;
|
|
315
|
+
}, {
|
|
316
|
+
access_level: number;
|
|
317
|
+
notification_level: number;
|
|
318
|
+
}>>>;
|
|
205
319
|
group_access: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
206
320
|
access_level: z.ZodNumber;
|
|
207
321
|
notification_level: z.ZodNumber;
|
|
208
|
-
}, z.
|
|
209
|
-
|
|
210
|
-
|
|
322
|
+
}, "strip", z.ZodTypeAny, {
|
|
323
|
+
access_level: number;
|
|
324
|
+
notification_level: number;
|
|
325
|
+
}, {
|
|
326
|
+
access_level: number;
|
|
327
|
+
notification_level: number;
|
|
328
|
+
}>>>;
|
|
329
|
+
}, "strip", z.ZodTypeAny, {
|
|
330
|
+
project_access?: {
|
|
331
|
+
access_level: number;
|
|
332
|
+
notification_level: number;
|
|
333
|
+
} | null | undefined;
|
|
334
|
+
group_access?: {
|
|
335
|
+
access_level: number;
|
|
336
|
+
notification_level: number;
|
|
337
|
+
} | null | undefined;
|
|
338
|
+
}, {
|
|
339
|
+
project_access?: {
|
|
340
|
+
access_level: number;
|
|
341
|
+
notification_level: number;
|
|
342
|
+
} | null | undefined;
|
|
343
|
+
group_access?: {
|
|
344
|
+
access_level: number;
|
|
345
|
+
notification_level: number;
|
|
346
|
+
} | null | undefined;
|
|
347
|
+
}>>;
|
|
348
|
+
}, "strip", z.ZodTypeAny, {
|
|
349
|
+
name: string;
|
|
350
|
+
path: string;
|
|
351
|
+
id: string;
|
|
352
|
+
description: string | null;
|
|
353
|
+
web_url: string;
|
|
354
|
+
avatar_url: string | null;
|
|
355
|
+
name_with_namespace: string;
|
|
356
|
+
path_with_namespace: string;
|
|
357
|
+
created_at: string;
|
|
358
|
+
default_branch: string | null;
|
|
359
|
+
tag_list: string[];
|
|
360
|
+
topics: string[];
|
|
361
|
+
ssh_url_to_repo: string;
|
|
362
|
+
http_url_to_repo: string;
|
|
363
|
+
forks_count: number;
|
|
364
|
+
star_count: number;
|
|
365
|
+
last_activity_at: string;
|
|
366
|
+
visibility: "private" | "internal" | "public";
|
|
367
|
+
namespace: {
|
|
368
|
+
name: string;
|
|
369
|
+
path: string;
|
|
370
|
+
id: string;
|
|
371
|
+
web_url: string;
|
|
372
|
+
kind: string;
|
|
373
|
+
full_path: string;
|
|
374
|
+
parent_id: string | null;
|
|
375
|
+
avatar_url?: string | null | undefined;
|
|
376
|
+
};
|
|
377
|
+
_links: {
|
|
378
|
+
issues: string;
|
|
379
|
+
labels: string;
|
|
380
|
+
self: string;
|
|
381
|
+
merge_requests: string;
|
|
382
|
+
repo_branches: string;
|
|
383
|
+
events: string;
|
|
384
|
+
members: string;
|
|
385
|
+
cluster_agents?: string | undefined;
|
|
386
|
+
};
|
|
387
|
+
marked_for_deletion_at: string | null;
|
|
388
|
+
empty_repo: boolean;
|
|
389
|
+
archived: boolean;
|
|
390
|
+
issues_enabled: boolean;
|
|
391
|
+
merge_requests_enabled: boolean;
|
|
392
|
+
wiki_enabled: boolean;
|
|
393
|
+
jobs_enabled: boolean;
|
|
394
|
+
snippets_enabled: boolean;
|
|
395
|
+
issues_access_level: string;
|
|
396
|
+
repository_access_level: string;
|
|
397
|
+
merge_requests_access_level: string;
|
|
398
|
+
wiki_access_level: string;
|
|
399
|
+
builds_access_level: string;
|
|
400
|
+
snippets_access_level: string;
|
|
401
|
+
updated_at: string;
|
|
402
|
+
readme_url?: string | null | undefined;
|
|
403
|
+
repository_storage?: string | undefined;
|
|
404
|
+
container_registry_image_prefix?: string | undefined;
|
|
405
|
+
marked_for_deletion_on?: string | null | undefined;
|
|
406
|
+
packages_enabled?: boolean | undefined;
|
|
407
|
+
resolve_outdated_diff_discussions?: boolean | undefined;
|
|
408
|
+
container_expiration_policy?: {
|
|
409
|
+
enabled: boolean;
|
|
410
|
+
cadence: string;
|
|
411
|
+
keep_n: number;
|
|
412
|
+
older_than: string;
|
|
413
|
+
name_regex: string;
|
|
414
|
+
name_regex_keep: string | null;
|
|
415
|
+
next_run_at: string;
|
|
416
|
+
} | undefined;
|
|
417
|
+
repository_object_format?: string | undefined;
|
|
418
|
+
container_registry_enabled?: boolean | undefined;
|
|
419
|
+
service_desk_enabled?: boolean | undefined;
|
|
420
|
+
service_desk_address?: string | null | undefined;
|
|
421
|
+
can_create_merge_request_in?: boolean | undefined;
|
|
422
|
+
forking_access_level?: string | undefined;
|
|
423
|
+
pages_access_level?: string | undefined;
|
|
424
|
+
analytics_access_level?: string | undefined;
|
|
425
|
+
container_registry_access_level?: string | undefined;
|
|
426
|
+
security_and_compliance_access_level?: string | undefined;
|
|
427
|
+
releases_access_level?: string | undefined;
|
|
428
|
+
environments_access_level?: string | undefined;
|
|
429
|
+
feature_flags_access_level?: string | undefined;
|
|
430
|
+
infrastructure_access_level?: string | undefined;
|
|
431
|
+
monitor_access_level?: string | undefined;
|
|
432
|
+
model_experiments_access_level?: string | undefined;
|
|
433
|
+
model_registry_access_level?: string | undefined;
|
|
434
|
+
emails_disabled?: boolean | undefined;
|
|
435
|
+
emails_enabled?: boolean | undefined;
|
|
436
|
+
shared_runners_enabled?: boolean | undefined;
|
|
437
|
+
lfs_enabled?: boolean | undefined;
|
|
438
|
+
creator_id?: string | undefined;
|
|
439
|
+
import_url?: string | null | undefined;
|
|
440
|
+
import_type?: string | null | undefined;
|
|
441
|
+
import_status?: string | undefined;
|
|
442
|
+
import_error?: string | null | undefined;
|
|
443
|
+
open_issues_count?: number | undefined;
|
|
444
|
+
description_html?: string | undefined;
|
|
445
|
+
ci_default_git_depth?: number | null | undefined;
|
|
446
|
+
ci_delete_pipelines_in_seconds?: number | null | undefined;
|
|
447
|
+
ci_forward_deployment_enabled?: boolean | undefined;
|
|
448
|
+
ci_forward_deployment_rollback_allowed?: boolean | undefined;
|
|
449
|
+
ci_job_token_scope_enabled?: boolean | undefined;
|
|
450
|
+
ci_separated_caches?: boolean | undefined;
|
|
451
|
+
ci_allow_fork_pipelines_to_run_in_parent_project?: boolean | undefined;
|
|
452
|
+
ci_id_token_sub_claim_components?: string[] | undefined;
|
|
453
|
+
build_git_strategy?: string | undefined;
|
|
454
|
+
keep_latest_artifact?: boolean | undefined;
|
|
455
|
+
restrict_user_defined_variables?: boolean | undefined;
|
|
456
|
+
ci_pipeline_variables_minimum_override_role?: string | undefined;
|
|
457
|
+
runner_token_expiration_interval?: number | null | undefined;
|
|
458
|
+
group_runners_enabled?: boolean | undefined;
|
|
459
|
+
auto_cancel_pending_pipelines?: string | undefined;
|
|
460
|
+
build_timeout?: number | undefined;
|
|
461
|
+
auto_devops_enabled?: boolean | undefined;
|
|
462
|
+
auto_devops_deploy_strategy?: string | undefined;
|
|
463
|
+
ci_push_repository_for_job_token_allowed?: boolean | undefined;
|
|
464
|
+
runners_token?: string | undefined;
|
|
465
|
+
ci_config_path?: string | null | undefined;
|
|
466
|
+
public_jobs?: boolean | undefined;
|
|
467
|
+
shared_with_groups?: unknown[] | undefined;
|
|
468
|
+
only_allow_merge_if_pipeline_succeeds?: boolean | undefined;
|
|
469
|
+
allow_merge_on_skipped_pipeline?: boolean | null | undefined;
|
|
470
|
+
request_access_enabled?: boolean | undefined;
|
|
471
|
+
only_allow_merge_if_all_discussions_are_resolved?: boolean | undefined;
|
|
472
|
+
remove_source_branch_after_merge?: boolean | undefined;
|
|
473
|
+
printing_merge_request_link_enabled?: boolean | undefined;
|
|
474
|
+
merge_method?: string | undefined;
|
|
475
|
+
merge_request_title_regex?: string | null | undefined;
|
|
476
|
+
merge_request_title_regex_description?: string | null | undefined;
|
|
477
|
+
squash_option?: string | undefined;
|
|
478
|
+
enforce_auth_checks_on_uploads?: boolean | undefined;
|
|
479
|
+
suggestion_commit_message?: string | null | undefined;
|
|
480
|
+
merge_commit_template?: string | null | undefined;
|
|
481
|
+
squash_commit_template?: string | null | undefined;
|
|
482
|
+
issue_branch_template?: string | null | undefined;
|
|
483
|
+
warn_about_potentially_unwanted_characters?: boolean | undefined;
|
|
484
|
+
autoclose_referenced_issues?: boolean | undefined;
|
|
485
|
+
max_artifacts_size?: number | null | undefined;
|
|
486
|
+
approvals_before_merge?: number | undefined;
|
|
487
|
+
mirror?: boolean | undefined;
|
|
488
|
+
external_authorization_classification_label?: string | null | undefined;
|
|
489
|
+
requirements_enabled?: boolean | undefined;
|
|
490
|
+
requirements_access_level?: string | undefined;
|
|
491
|
+
security_and_compliance_enabled?: boolean | undefined;
|
|
492
|
+
secret_push_protection_enabled?: boolean | undefined;
|
|
493
|
+
pre_receive_secret_detection_enabled?: boolean | undefined;
|
|
494
|
+
compliance_frameworks?: unknown[] | undefined;
|
|
495
|
+
issues_template?: string | null | undefined;
|
|
496
|
+
merge_requests_template?: string | null | undefined;
|
|
497
|
+
ci_restrict_pipeline_cancellation_role?: string | undefined;
|
|
498
|
+
merge_pipelines_enabled?: boolean | undefined;
|
|
499
|
+
merge_trains_enabled?: boolean | undefined;
|
|
500
|
+
merge_trains_skip_train_allowed?: boolean | undefined;
|
|
501
|
+
only_allow_merge_if_all_status_checks_passed?: boolean | undefined;
|
|
502
|
+
allow_pipeline_trigger_approve_deployment?: boolean | undefined;
|
|
503
|
+
prevent_merge_without_jira_issue?: boolean | undefined;
|
|
504
|
+
duo_remote_flows_enabled?: boolean | undefined;
|
|
505
|
+
spp_repository_pipeline_access?: boolean | undefined;
|
|
506
|
+
permissions?: {
|
|
507
|
+
project_access?: {
|
|
508
|
+
access_level: number;
|
|
509
|
+
notification_level: number;
|
|
510
|
+
} | null | undefined;
|
|
511
|
+
group_access?: {
|
|
512
|
+
access_level: number;
|
|
513
|
+
notification_level: number;
|
|
514
|
+
} | null | undefined;
|
|
515
|
+
} | undefined;
|
|
516
|
+
}, {
|
|
517
|
+
name: string;
|
|
518
|
+
path: string;
|
|
519
|
+
id: string;
|
|
520
|
+
description: string | null;
|
|
521
|
+
web_url: string;
|
|
522
|
+
avatar_url: string | null;
|
|
523
|
+
name_with_namespace: string;
|
|
524
|
+
path_with_namespace: string;
|
|
525
|
+
created_at: string;
|
|
526
|
+
default_branch: string | null;
|
|
527
|
+
tag_list: string[];
|
|
528
|
+
topics: string[];
|
|
529
|
+
ssh_url_to_repo: string;
|
|
530
|
+
http_url_to_repo: string;
|
|
531
|
+
forks_count: number;
|
|
532
|
+
star_count: number;
|
|
533
|
+
last_activity_at: string;
|
|
534
|
+
visibility: "private" | "internal" | "public";
|
|
535
|
+
namespace: {
|
|
536
|
+
name: string;
|
|
537
|
+
path: string;
|
|
538
|
+
id: string;
|
|
539
|
+
web_url: string;
|
|
540
|
+
kind: string;
|
|
541
|
+
full_path: string;
|
|
542
|
+
parent_id: string | null;
|
|
543
|
+
avatar_url?: string | null | undefined;
|
|
544
|
+
};
|
|
545
|
+
_links: {
|
|
546
|
+
issues: string;
|
|
547
|
+
labels: string;
|
|
548
|
+
self: string;
|
|
549
|
+
merge_requests: string;
|
|
550
|
+
repo_branches: string;
|
|
551
|
+
events: string;
|
|
552
|
+
members: string;
|
|
553
|
+
cluster_agents?: string | undefined;
|
|
554
|
+
};
|
|
555
|
+
marked_for_deletion_at: string | null;
|
|
556
|
+
issues_access_level: string;
|
|
557
|
+
repository_access_level: string;
|
|
558
|
+
merge_requests_access_level: string;
|
|
559
|
+
wiki_access_level: string;
|
|
560
|
+
builds_access_level: string;
|
|
561
|
+
snippets_access_level: string;
|
|
562
|
+
updated_at: string;
|
|
563
|
+
readme_url?: string | null | undefined;
|
|
564
|
+
repository_storage?: string | undefined;
|
|
565
|
+
container_registry_image_prefix?: string | undefined;
|
|
566
|
+
marked_for_deletion_on?: string | null | undefined;
|
|
567
|
+
packages_enabled?: unknown;
|
|
568
|
+
empty_repo?: unknown;
|
|
569
|
+
archived?: unknown;
|
|
570
|
+
resolve_outdated_diff_discussions?: unknown;
|
|
571
|
+
container_expiration_policy?: {
|
|
572
|
+
cadence: string;
|
|
573
|
+
keep_n: number;
|
|
574
|
+
older_than: string;
|
|
575
|
+
name_regex: string;
|
|
576
|
+
name_regex_keep: string | null;
|
|
577
|
+
next_run_at: string;
|
|
578
|
+
enabled?: unknown;
|
|
579
|
+
} | undefined;
|
|
580
|
+
repository_object_format?: string | undefined;
|
|
581
|
+
issues_enabled?: unknown;
|
|
582
|
+
merge_requests_enabled?: unknown;
|
|
583
|
+
wiki_enabled?: unknown;
|
|
584
|
+
jobs_enabled?: unknown;
|
|
585
|
+
snippets_enabled?: unknown;
|
|
586
|
+
container_registry_enabled?: unknown;
|
|
587
|
+
service_desk_enabled?: unknown;
|
|
588
|
+
service_desk_address?: string | null | undefined;
|
|
589
|
+
can_create_merge_request_in?: unknown;
|
|
590
|
+
forking_access_level?: string | undefined;
|
|
591
|
+
pages_access_level?: string | undefined;
|
|
592
|
+
analytics_access_level?: string | undefined;
|
|
593
|
+
container_registry_access_level?: string | undefined;
|
|
594
|
+
security_and_compliance_access_level?: string | undefined;
|
|
595
|
+
releases_access_level?: string | undefined;
|
|
596
|
+
environments_access_level?: string | undefined;
|
|
597
|
+
feature_flags_access_level?: string | undefined;
|
|
598
|
+
infrastructure_access_level?: string | undefined;
|
|
599
|
+
monitor_access_level?: string | undefined;
|
|
600
|
+
model_experiments_access_level?: string | undefined;
|
|
601
|
+
model_registry_access_level?: string | undefined;
|
|
602
|
+
emails_disabled?: unknown;
|
|
603
|
+
emails_enabled?: unknown;
|
|
604
|
+
shared_runners_enabled?: unknown;
|
|
605
|
+
lfs_enabled?: unknown;
|
|
606
|
+
creator_id?: string | undefined;
|
|
607
|
+
import_url?: string | null | undefined;
|
|
608
|
+
import_type?: string | null | undefined;
|
|
609
|
+
import_status?: string | undefined;
|
|
610
|
+
import_error?: string | null | undefined;
|
|
611
|
+
open_issues_count?: number | undefined;
|
|
612
|
+
description_html?: string | undefined;
|
|
613
|
+
ci_default_git_depth?: number | null | undefined;
|
|
614
|
+
ci_delete_pipelines_in_seconds?: number | null | undefined;
|
|
615
|
+
ci_forward_deployment_enabled?: unknown;
|
|
616
|
+
ci_forward_deployment_rollback_allowed?: unknown;
|
|
617
|
+
ci_job_token_scope_enabled?: unknown;
|
|
618
|
+
ci_separated_caches?: unknown;
|
|
619
|
+
ci_allow_fork_pipelines_to_run_in_parent_project?: unknown;
|
|
620
|
+
ci_id_token_sub_claim_components?: string[] | undefined;
|
|
621
|
+
build_git_strategy?: string | undefined;
|
|
622
|
+
keep_latest_artifact?: unknown;
|
|
623
|
+
restrict_user_defined_variables?: unknown;
|
|
624
|
+
ci_pipeline_variables_minimum_override_role?: string | undefined;
|
|
625
|
+
runner_token_expiration_interval?: number | null | undefined;
|
|
626
|
+
group_runners_enabled?: unknown;
|
|
627
|
+
auto_cancel_pending_pipelines?: string | undefined;
|
|
628
|
+
build_timeout?: number | undefined;
|
|
629
|
+
auto_devops_enabled?: unknown;
|
|
630
|
+
auto_devops_deploy_strategy?: string | undefined;
|
|
631
|
+
ci_push_repository_for_job_token_allowed?: unknown;
|
|
632
|
+
runners_token?: string | undefined;
|
|
633
|
+
ci_config_path?: string | null | undefined;
|
|
634
|
+
public_jobs?: unknown;
|
|
635
|
+
shared_with_groups?: unknown[] | undefined;
|
|
636
|
+
only_allow_merge_if_pipeline_succeeds?: unknown;
|
|
637
|
+
allow_merge_on_skipped_pipeline?: boolean | null | undefined;
|
|
638
|
+
request_access_enabled?: unknown;
|
|
639
|
+
only_allow_merge_if_all_discussions_are_resolved?: unknown;
|
|
640
|
+
remove_source_branch_after_merge?: unknown;
|
|
641
|
+
printing_merge_request_link_enabled?: unknown;
|
|
642
|
+
merge_method?: string | undefined;
|
|
643
|
+
merge_request_title_regex?: string | null | undefined;
|
|
644
|
+
merge_request_title_regex_description?: string | null | undefined;
|
|
645
|
+
squash_option?: string | undefined;
|
|
646
|
+
enforce_auth_checks_on_uploads?: unknown;
|
|
647
|
+
suggestion_commit_message?: string | null | undefined;
|
|
648
|
+
merge_commit_template?: string | null | undefined;
|
|
649
|
+
squash_commit_template?: string | null | undefined;
|
|
650
|
+
issue_branch_template?: string | null | undefined;
|
|
651
|
+
warn_about_potentially_unwanted_characters?: unknown;
|
|
652
|
+
autoclose_referenced_issues?: unknown;
|
|
653
|
+
max_artifacts_size?: number | null | undefined;
|
|
654
|
+
approvals_before_merge?: number | undefined;
|
|
655
|
+
mirror?: unknown;
|
|
656
|
+
external_authorization_classification_label?: string | null | undefined;
|
|
657
|
+
requirements_enabled?: unknown;
|
|
658
|
+
requirements_access_level?: string | undefined;
|
|
659
|
+
security_and_compliance_enabled?: unknown;
|
|
660
|
+
secret_push_protection_enabled?: unknown;
|
|
661
|
+
pre_receive_secret_detection_enabled?: unknown;
|
|
662
|
+
compliance_frameworks?: unknown[] | undefined;
|
|
663
|
+
issues_template?: string | null | undefined;
|
|
664
|
+
merge_requests_template?: string | null | undefined;
|
|
665
|
+
ci_restrict_pipeline_cancellation_role?: string | undefined;
|
|
666
|
+
merge_pipelines_enabled?: unknown;
|
|
667
|
+
merge_trains_enabled?: unknown;
|
|
668
|
+
merge_trains_skip_train_allowed?: unknown;
|
|
669
|
+
only_allow_merge_if_all_status_checks_passed?: unknown;
|
|
670
|
+
allow_pipeline_trigger_approve_deployment?: unknown;
|
|
671
|
+
prevent_merge_without_jira_issue?: unknown;
|
|
672
|
+
duo_remote_flows_enabled?: unknown;
|
|
673
|
+
spp_repository_pipeline_access?: unknown;
|
|
674
|
+
permissions?: {
|
|
675
|
+
project_access?: {
|
|
676
|
+
access_level: number;
|
|
677
|
+
notification_level: number;
|
|
678
|
+
} | null | undefined;
|
|
679
|
+
group_access?: {
|
|
680
|
+
access_level: number;
|
|
681
|
+
notification_level: number;
|
|
682
|
+
} | null | undefined;
|
|
683
|
+
} | undefined;
|
|
684
|
+
}>;
|
|
211
685
|
export declare const GitLabLabelSchema: z.ZodObject<{
|
|
212
|
-
id: z.
|
|
686
|
+
id: z.ZodString;
|
|
213
687
|
name: z.ZodString;
|
|
214
688
|
color: z.ZodString;
|
|
215
689
|
text_color: z.ZodOptional<z.ZodString>;
|
|
@@ -218,51 +692,106 @@ export declare const GitLabLabelSchema: z.ZodObject<{
|
|
|
218
692
|
open_issues_count: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
219
693
|
closed_issues_count: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
220
694
|
open_merge_requests_count: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
221
|
-
subscribed: z.ZodOptional<z.ZodNullable<z.
|
|
695
|
+
subscribed: z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodBoolean, boolean, unknown>>>;
|
|
222
696
|
priority: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
223
|
-
is_project_label: z.ZodOptional<z.
|
|
224
|
-
}, z.
|
|
697
|
+
is_project_label: z.ZodOptional<z.ZodEffects<z.ZodBoolean, boolean, unknown>>;
|
|
698
|
+
}, "strip", z.ZodTypeAny, {
|
|
699
|
+
name: string;
|
|
700
|
+
id: string;
|
|
701
|
+
description: string | null;
|
|
702
|
+
color: string;
|
|
703
|
+
priority?: number | null | undefined;
|
|
704
|
+
open_issues_count?: number | null | undefined;
|
|
705
|
+
description_html?: string | null | undefined;
|
|
706
|
+
text_color?: string | undefined;
|
|
707
|
+
closed_issues_count?: number | null | undefined;
|
|
708
|
+
open_merge_requests_count?: number | null | undefined;
|
|
709
|
+
subscribed?: boolean | null | undefined;
|
|
710
|
+
is_project_label?: boolean | undefined;
|
|
711
|
+
}, {
|
|
712
|
+
name: string;
|
|
713
|
+
id: string;
|
|
714
|
+
description: string | null;
|
|
715
|
+
color: string;
|
|
716
|
+
priority?: number | null | undefined;
|
|
717
|
+
open_issues_count?: number | null | undefined;
|
|
718
|
+
description_html?: string | null | undefined;
|
|
719
|
+
text_color?: string | undefined;
|
|
720
|
+
closed_issues_count?: number | null | undefined;
|
|
721
|
+
open_merge_requests_count?: number | null | undefined;
|
|
722
|
+
subscribed?: unknown;
|
|
723
|
+
is_project_label?: unknown;
|
|
724
|
+
}>;
|
|
225
725
|
export declare const GitLabIssueSchema: z.ZodObject<{
|
|
226
|
-
id: z.
|
|
227
|
-
iid: z.
|
|
228
|
-
project_id: z.
|
|
726
|
+
id: z.ZodString;
|
|
727
|
+
iid: z.ZodString;
|
|
728
|
+
project_id: z.ZodString;
|
|
229
729
|
title: z.ZodString;
|
|
230
730
|
description: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
231
731
|
state: z.ZodString;
|
|
232
732
|
author: z.ZodObject<{
|
|
233
|
-
id: z.
|
|
733
|
+
id: z.ZodString;
|
|
234
734
|
username: z.ZodString;
|
|
235
735
|
name: z.ZodString;
|
|
236
736
|
avatar_url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
237
|
-
}, z.
|
|
737
|
+
}, "strip", z.ZodTypeAny, {
|
|
738
|
+
name: string;
|
|
739
|
+
id: string;
|
|
740
|
+
username: string;
|
|
741
|
+
avatar_url?: string | null | undefined;
|
|
742
|
+
}, {
|
|
743
|
+
name: string;
|
|
744
|
+
id: string;
|
|
745
|
+
username: string;
|
|
746
|
+
avatar_url?: string | null | undefined;
|
|
747
|
+
}>;
|
|
238
748
|
assignees: z.ZodArray<z.ZodObject<{
|
|
239
|
-
id: z.
|
|
749
|
+
id: z.ZodString;
|
|
240
750
|
username: z.ZodString;
|
|
241
751
|
name: z.ZodString;
|
|
242
752
|
avatar_url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
243
|
-
}, z.
|
|
244
|
-
|
|
753
|
+
}, "strip", z.ZodTypeAny, {
|
|
754
|
+
name: string;
|
|
755
|
+
id: string;
|
|
756
|
+
username: string;
|
|
757
|
+
avatar_url?: string | null | undefined;
|
|
758
|
+
}, {
|
|
759
|
+
name: string;
|
|
760
|
+
id: string;
|
|
761
|
+
username: string;
|
|
762
|
+
avatar_url?: string | null | undefined;
|
|
763
|
+
}>, "many">;
|
|
764
|
+
labels: z.ZodArray<z.ZodString, "many">;
|
|
245
765
|
milestone: z.ZodNullable<z.ZodObject<{
|
|
246
|
-
id: z.
|
|
247
|
-
iid: z.
|
|
766
|
+
id: z.ZodString;
|
|
767
|
+
iid: z.ZodString;
|
|
248
768
|
title: z.ZodString;
|
|
249
769
|
description: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
250
770
|
state: z.ZodString;
|
|
251
771
|
web_url: z.ZodString;
|
|
252
|
-
}, z.
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
772
|
+
}, "strip", z.ZodTypeAny, {
|
|
773
|
+
id: string;
|
|
774
|
+
iid: string;
|
|
775
|
+
title: string;
|
|
776
|
+
description: string | null;
|
|
777
|
+
state: string;
|
|
778
|
+
web_url: string;
|
|
779
|
+
}, {
|
|
780
|
+
id: string;
|
|
781
|
+
iid: string;
|
|
782
|
+
title: string;
|
|
783
|
+
state: string;
|
|
784
|
+
web_url: string;
|
|
785
|
+
description?: string | null | undefined;
|
|
258
786
|
}>>;
|
|
787
|
+
type: z.ZodOptional<z.ZodEnum<["ISSUE", "INCIDENT", "TEST_CASE", "TASK"]>>;
|
|
259
788
|
user_notes_count: z.ZodOptional<z.ZodNumber>;
|
|
260
789
|
merge_requests_count: z.ZodOptional<z.ZodNumber>;
|
|
261
790
|
upvotes: z.ZodOptional<z.ZodNumber>;
|
|
262
791
|
downvotes: z.ZodOptional<z.ZodNumber>;
|
|
263
792
|
due_date: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
264
|
-
confidential: z.ZodOptional<z.
|
|
265
|
-
discussion_locked: z.ZodOptional<z.ZodNullable<z.
|
|
793
|
+
confidential: z.ZodOptional<z.ZodEffects<z.ZodBoolean, boolean, unknown>>;
|
|
794
|
+
discussion_locked: z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodBoolean, boolean, unknown>>> | z.ZodOptional<z.ZodDefault<z.ZodNullable<z.ZodEffects<z.ZodBoolean, boolean, unknown>>>>;
|
|
266
795
|
issue_type: z.ZodOptional<z.ZodString>;
|
|
267
796
|
web_url: z.ZodString;
|
|
268
797
|
time_stats: z.ZodOptional<z.ZodObject<{
|
|
@@ -270,22 +799,170 @@ export declare const GitLabIssueSchema: z.ZodObject<{
|
|
|
270
799
|
total_time_spent: z.ZodNumber;
|
|
271
800
|
human_time_estimate: z.ZodNullable<z.ZodString>;
|
|
272
801
|
human_total_time_spent: z.ZodNullable<z.ZodString>;
|
|
273
|
-
}, z.
|
|
802
|
+
}, "strip", z.ZodTypeAny, {
|
|
803
|
+
time_estimate: number;
|
|
804
|
+
total_time_spent: number;
|
|
805
|
+
human_time_estimate: string | null;
|
|
806
|
+
human_total_time_spent: string | null;
|
|
807
|
+
}, {
|
|
808
|
+
time_estimate: number;
|
|
809
|
+
total_time_spent: number;
|
|
810
|
+
human_time_estimate: string | null;
|
|
811
|
+
human_total_time_spent: string | null;
|
|
812
|
+
}>>;
|
|
274
813
|
task_completion_status: z.ZodOptional<z.ZodObject<{
|
|
275
814
|
count: z.ZodNumber;
|
|
276
815
|
completed_count: z.ZodNumber;
|
|
277
|
-
}, z.
|
|
816
|
+
}, "strip", z.ZodTypeAny, {
|
|
817
|
+
count: number;
|
|
818
|
+
completed_count: number;
|
|
819
|
+
}, {
|
|
820
|
+
count: number;
|
|
821
|
+
completed_count: number;
|
|
822
|
+
}>>;
|
|
278
823
|
blocking_issues_count: z.ZodOptional<z.ZodNumber>;
|
|
279
|
-
has_tasks: z.ZodOptional<z.
|
|
824
|
+
has_tasks: z.ZodOptional<z.ZodEffects<z.ZodBoolean, boolean, unknown>>;
|
|
280
825
|
task_status: z.ZodOptional<z.ZodString>;
|
|
281
826
|
created_at: z.ZodString;
|
|
282
827
|
updated_at: z.ZodString;
|
|
283
828
|
closed_at: z.ZodNullable<z.ZodString>;
|
|
284
829
|
closed_by: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
285
|
-
id: z.
|
|
830
|
+
id: z.ZodString;
|
|
286
831
|
username: z.ZodString;
|
|
287
832
|
name: z.ZodString;
|
|
288
833
|
avatar_url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
289
|
-
}, z.
|
|
834
|
+
}, "strip", z.ZodTypeAny, {
|
|
835
|
+
name: string;
|
|
836
|
+
id: string;
|
|
837
|
+
username: string;
|
|
838
|
+
avatar_url?: string | null | undefined;
|
|
839
|
+
}, {
|
|
840
|
+
name: string;
|
|
841
|
+
id: string;
|
|
842
|
+
username: string;
|
|
843
|
+
avatar_url?: string | null | undefined;
|
|
844
|
+
}>>>;
|
|
290
845
|
service_desk_reply_to: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
291
|
-
}, z.
|
|
846
|
+
}, "strip", z.ZodTypeAny, {
|
|
847
|
+
assignees: {
|
|
848
|
+
name: string;
|
|
849
|
+
id: string;
|
|
850
|
+
username: string;
|
|
851
|
+
avatar_url?: string | null | undefined;
|
|
852
|
+
}[];
|
|
853
|
+
labels: string[];
|
|
854
|
+
milestone: {
|
|
855
|
+
id: string;
|
|
856
|
+
iid: string;
|
|
857
|
+
title: string;
|
|
858
|
+
description: string | null;
|
|
859
|
+
state: string;
|
|
860
|
+
web_url: string;
|
|
861
|
+
} | null;
|
|
862
|
+
id: string;
|
|
863
|
+
iid: string;
|
|
864
|
+
title: string;
|
|
865
|
+
description: string | null;
|
|
866
|
+
state: string;
|
|
867
|
+
web_url: string;
|
|
868
|
+
project_id: string;
|
|
869
|
+
created_at: string;
|
|
870
|
+
updated_at: string;
|
|
871
|
+
author: {
|
|
872
|
+
name: string;
|
|
873
|
+
id: string;
|
|
874
|
+
username: string;
|
|
875
|
+
avatar_url?: string | null | undefined;
|
|
876
|
+
};
|
|
877
|
+
closed_at: string | null;
|
|
878
|
+
type?: "ISSUE" | "INCIDENT" | "TEST_CASE" | "TASK" | undefined;
|
|
879
|
+
user_notes_count?: number | undefined;
|
|
880
|
+
merge_requests_count?: number | undefined;
|
|
881
|
+
upvotes?: number | undefined;
|
|
882
|
+
downvotes?: number | undefined;
|
|
883
|
+
due_date?: string | null | undefined;
|
|
884
|
+
confidential?: boolean | undefined;
|
|
885
|
+
discussion_locked?: boolean | null | undefined;
|
|
886
|
+
issue_type?: string | undefined;
|
|
887
|
+
time_stats?: {
|
|
888
|
+
time_estimate: number;
|
|
889
|
+
total_time_spent: number;
|
|
890
|
+
human_time_estimate: string | null;
|
|
891
|
+
human_total_time_spent: string | null;
|
|
892
|
+
} | undefined;
|
|
893
|
+
task_completion_status?: {
|
|
894
|
+
count: number;
|
|
895
|
+
completed_count: number;
|
|
896
|
+
} | undefined;
|
|
897
|
+
blocking_issues_count?: number | undefined;
|
|
898
|
+
has_tasks?: boolean | undefined;
|
|
899
|
+
task_status?: string | undefined;
|
|
900
|
+
closed_by?: {
|
|
901
|
+
name: string;
|
|
902
|
+
id: string;
|
|
903
|
+
username: string;
|
|
904
|
+
avatar_url?: string | null | undefined;
|
|
905
|
+
} | null | undefined;
|
|
906
|
+
service_desk_reply_to?: string | null | undefined;
|
|
907
|
+
}, {
|
|
908
|
+
assignees: {
|
|
909
|
+
name: string;
|
|
910
|
+
id: string;
|
|
911
|
+
username: string;
|
|
912
|
+
avatar_url?: string | null | undefined;
|
|
913
|
+
}[];
|
|
914
|
+
labels: string[];
|
|
915
|
+
milestone: {
|
|
916
|
+
id: string;
|
|
917
|
+
iid: string;
|
|
918
|
+
title: string;
|
|
919
|
+
state: string;
|
|
920
|
+
web_url: string;
|
|
921
|
+
description?: string | null | undefined;
|
|
922
|
+
} | null;
|
|
923
|
+
id: string;
|
|
924
|
+
iid: string;
|
|
925
|
+
title: string;
|
|
926
|
+
state: string;
|
|
927
|
+
web_url: string;
|
|
928
|
+
project_id: string;
|
|
929
|
+
created_at: string;
|
|
930
|
+
updated_at: string;
|
|
931
|
+
author: {
|
|
932
|
+
name: string;
|
|
933
|
+
id: string;
|
|
934
|
+
username: string;
|
|
935
|
+
avatar_url?: string | null | undefined;
|
|
936
|
+
};
|
|
937
|
+
closed_at: string | null;
|
|
938
|
+
type?: "ISSUE" | "INCIDENT" | "TEST_CASE" | "TASK" | undefined;
|
|
939
|
+
description?: string | null | undefined;
|
|
940
|
+
user_notes_count?: number | undefined;
|
|
941
|
+
merge_requests_count?: number | undefined;
|
|
942
|
+
upvotes?: number | undefined;
|
|
943
|
+
downvotes?: number | undefined;
|
|
944
|
+
due_date?: string | null | undefined;
|
|
945
|
+
confidential?: unknown;
|
|
946
|
+
discussion_locked?: unknown;
|
|
947
|
+
issue_type?: string | undefined;
|
|
948
|
+
time_stats?: {
|
|
949
|
+
time_estimate: number;
|
|
950
|
+
total_time_spent: number;
|
|
951
|
+
human_time_estimate: string | null;
|
|
952
|
+
human_total_time_spent: string | null;
|
|
953
|
+
} | undefined;
|
|
954
|
+
task_completion_status?: {
|
|
955
|
+
count: number;
|
|
956
|
+
completed_count: number;
|
|
957
|
+
} | undefined;
|
|
958
|
+
blocking_issues_count?: number | undefined;
|
|
959
|
+
has_tasks?: unknown;
|
|
960
|
+
task_status?: string | undefined;
|
|
961
|
+
closed_by?: {
|
|
962
|
+
name: string;
|
|
963
|
+
id: string;
|
|
964
|
+
username: string;
|
|
965
|
+
avatar_url?: string | null | undefined;
|
|
966
|
+
} | null | undefined;
|
|
967
|
+
service_desk_reply_to?: string | null | undefined;
|
|
968
|
+
}>;
|