@yinuo-ngm/mcp-server 0.1.1 → 0.1.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.
@@ -0,0 +1,585 @@
1
+ import { z } from "zod";
2
+ export declare const projectSelectorSchema: z.ZodObject<{
3
+ project: z.ZodOptional<z.ZodString>;
4
+ projectKey: z.ZodOptional<z.ZodString>;
5
+ }, "strict", z.ZodTypeAny, {
6
+ project?: string | undefined;
7
+ projectKey?: string | undefined;
8
+ }, {
9
+ project?: string | undefined;
10
+ projectKey?: string | undefined;
11
+ }>;
12
+ export declare const pagingSchema: z.ZodObject<{
13
+ page: z.ZodOptional<z.ZodNumber>;
14
+ pageSize: z.ZodOptional<z.ZodNumber>;
15
+ }, "strict", z.ZodTypeAny, {
16
+ page?: number | undefined;
17
+ pageSize?: number | undefined;
18
+ }, {
19
+ page?: number | undefined;
20
+ pageSize?: number | undefined;
21
+ }>;
22
+ export declare const docsListSchema: z.ZodObject<{
23
+ project: z.ZodOptional<z.ZodString>;
24
+ projectKey: z.ZodOptional<z.ZodString>;
25
+ } & {
26
+ page: z.ZodOptional<z.ZodNumber>;
27
+ pageSize: z.ZodOptional<z.ZodNumber>;
28
+ status: z.ZodOptional<z.ZodEnum<["draft", "published", "archived"]>>;
29
+ keyword: z.ZodOptional<z.ZodString>;
30
+ category: z.ZodOptional<z.ZodString>;
31
+ categoryId: z.ZodOptional<z.ZodString>;
32
+ }, "strict", z.ZodTypeAny, {
33
+ project?: string | undefined;
34
+ projectKey?: string | undefined;
35
+ status?: "draft" | "published" | "archived" | undefined;
36
+ page?: number | undefined;
37
+ pageSize?: number | undefined;
38
+ keyword?: string | undefined;
39
+ category?: string | undefined;
40
+ categoryId?: string | undefined;
41
+ }, {
42
+ project?: string | undefined;
43
+ projectKey?: string | undefined;
44
+ status?: "draft" | "published" | "archived" | undefined;
45
+ page?: number | undefined;
46
+ pageSize?: number | undefined;
47
+ keyword?: string | undefined;
48
+ category?: string | undefined;
49
+ categoryId?: string | undefined;
50
+ }>;
51
+ export declare const docsGetSchema: z.ZodObject<{
52
+ project: z.ZodOptional<z.ZodString>;
53
+ projectKey: z.ZodOptional<z.ZodString>;
54
+ } & {
55
+ docId: z.ZodString;
56
+ }, "strict", z.ZodTypeAny, {
57
+ docId: string;
58
+ project?: string | undefined;
59
+ projectKey?: string | undefined;
60
+ }, {
61
+ docId: string;
62
+ project?: string | undefined;
63
+ projectKey?: string | undefined;
64
+ }>;
65
+ export declare const docsGetBySlugSchema: z.ZodObject<{
66
+ project: z.ZodOptional<z.ZodString>;
67
+ projectKey: z.ZodOptional<z.ZodString>;
68
+ } & {
69
+ slug: z.ZodString;
70
+ contentOnly: z.ZodOptional<z.ZodBoolean>;
71
+ }, "strict", z.ZodTypeAny, {
72
+ slug: string;
73
+ project?: string | undefined;
74
+ projectKey?: string | undefined;
75
+ contentOnly?: boolean | undefined;
76
+ }, {
77
+ slug: string;
78
+ project?: string | undefined;
79
+ projectKey?: string | undefined;
80
+ contentOnly?: boolean | undefined;
81
+ }>;
82
+ export declare const issuesListSchema: z.ZodObject<{
83
+ project: z.ZodOptional<z.ZodString>;
84
+ projectKey: z.ZodOptional<z.ZodString>;
85
+ } & {
86
+ page: z.ZodOptional<z.ZodNumber>;
87
+ pageSize: z.ZodOptional<z.ZodNumber>;
88
+ keyword: z.ZodOptional<z.ZodString>;
89
+ status: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
90
+ priority: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
91
+ assigneeId: z.ZodOptional<z.ZodString>;
92
+ verifierId: z.ZodOptional<z.ZodString>;
93
+ rdItemId: z.ZodOptional<z.ZodString>;
94
+ }, "strict", z.ZodTypeAny, {
95
+ project?: string | undefined;
96
+ projectKey?: string | undefined;
97
+ status?: string[] | undefined;
98
+ page?: number | undefined;
99
+ pageSize?: number | undefined;
100
+ keyword?: string | undefined;
101
+ priority?: string[] | undefined;
102
+ assigneeId?: string | undefined;
103
+ verifierId?: string | undefined;
104
+ rdItemId?: string | undefined;
105
+ }, {
106
+ project?: string | undefined;
107
+ projectKey?: string | undefined;
108
+ status?: string[] | undefined;
109
+ page?: number | undefined;
110
+ pageSize?: number | undefined;
111
+ keyword?: string | undefined;
112
+ priority?: string[] | undefined;
113
+ assigneeId?: string | undefined;
114
+ verifierId?: string | undefined;
115
+ rdItemId?: string | undefined;
116
+ }>;
117
+ export declare const issueGetSchema: z.ZodObject<{
118
+ project: z.ZodOptional<z.ZodString>;
119
+ projectKey: z.ZodOptional<z.ZodString>;
120
+ } & {
121
+ issueId: z.ZodString;
122
+ }, "strict", z.ZodTypeAny, {
123
+ issueId: string;
124
+ project?: string | undefined;
125
+ projectKey?: string | undefined;
126
+ }, {
127
+ issueId: string;
128
+ project?: string | undefined;
129
+ projectKey?: string | undefined;
130
+ }>;
131
+ export declare const issueCreateSchema: z.ZodObject<{
132
+ project: z.ZodOptional<z.ZodString>;
133
+ projectKey: z.ZodOptional<z.ZodString>;
134
+ } & {
135
+ title: z.ZodString;
136
+ description: z.ZodOptional<z.ZodString>;
137
+ type: z.ZodOptional<z.ZodEnum<["bug", "feature", "change", "improvement", "task", "test"]>>;
138
+ priority: z.ZodOptional<z.ZodEnum<["low", "medium", "high", "critical"]>>;
139
+ assigneeId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
140
+ verifierId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
141
+ rdItemId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
142
+ moduleCode: z.ZodOptional<z.ZodString>;
143
+ versionCode: z.ZodOptional<z.ZodString>;
144
+ environmentCode: z.ZodOptional<z.ZodString>;
145
+ confirm: z.ZodOptional<z.ZodBoolean>;
146
+ }, "strict", z.ZodTypeAny, {
147
+ title: string;
148
+ project?: string | undefined;
149
+ projectKey?: string | undefined;
150
+ type?: "bug" | "feature" | "change" | "improvement" | "task" | "test" | undefined;
151
+ priority?: "low" | "medium" | "high" | "critical" | undefined;
152
+ assigneeId?: string | null | undefined;
153
+ verifierId?: string | null | undefined;
154
+ rdItemId?: string | null | undefined;
155
+ description?: string | undefined;
156
+ moduleCode?: string | undefined;
157
+ versionCode?: string | undefined;
158
+ environmentCode?: string | undefined;
159
+ confirm?: boolean | undefined;
160
+ }, {
161
+ title: string;
162
+ project?: string | undefined;
163
+ projectKey?: string | undefined;
164
+ type?: "bug" | "feature" | "change" | "improvement" | "task" | "test" | undefined;
165
+ priority?: "low" | "medium" | "high" | "critical" | undefined;
166
+ assigneeId?: string | null | undefined;
167
+ verifierId?: string | null | undefined;
168
+ rdItemId?: string | null | undefined;
169
+ description?: string | undefined;
170
+ moduleCode?: string | undefined;
171
+ versionCode?: string | undefined;
172
+ environmentCode?: string | undefined;
173
+ confirm?: boolean | undefined;
174
+ }>;
175
+ export declare const issueCommentSchema: z.ZodObject<{
176
+ project: z.ZodOptional<z.ZodString>;
177
+ projectKey: z.ZodOptional<z.ZodString>;
178
+ } & {
179
+ issueId: z.ZodString;
180
+ content: z.ZodString;
181
+ mentions: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
182
+ confirm: z.ZodOptional<z.ZodBoolean>;
183
+ }, "strict", z.ZodTypeAny, {
184
+ issueId: string;
185
+ content: string;
186
+ project?: string | undefined;
187
+ projectKey?: string | undefined;
188
+ confirm?: boolean | undefined;
189
+ mentions?: string[] | undefined;
190
+ }, {
191
+ issueId: string;
192
+ content: string;
193
+ project?: string | undefined;
194
+ projectKey?: string | undefined;
195
+ confirm?: boolean | undefined;
196
+ mentions?: string[] | undefined;
197
+ }>;
198
+ export declare const issueUpdateSchema: z.ZodObject<{
199
+ project: z.ZodOptional<z.ZodString>;
200
+ projectKey: z.ZodOptional<z.ZodString>;
201
+ } & {
202
+ issueId: z.ZodString;
203
+ title: z.ZodOptional<z.ZodString>;
204
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
205
+ type: z.ZodOptional<z.ZodEnum<["bug", "feature", "change", "improvement", "task", "test"]>>;
206
+ priority: z.ZodOptional<z.ZodEnum<["low", "medium", "high", "critical"]>>;
207
+ rdItemId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
208
+ moduleCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
209
+ versionCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
210
+ environmentCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
211
+ confirm: z.ZodOptional<z.ZodBoolean>;
212
+ }, "strict", z.ZodTypeAny, {
213
+ issueId: string;
214
+ project?: string | undefined;
215
+ projectKey?: string | undefined;
216
+ type?: "bug" | "feature" | "change" | "improvement" | "task" | "test" | undefined;
217
+ priority?: "low" | "medium" | "high" | "critical" | undefined;
218
+ rdItemId?: string | null | undefined;
219
+ title?: string | undefined;
220
+ description?: string | null | undefined;
221
+ moduleCode?: string | null | undefined;
222
+ versionCode?: string | null | undefined;
223
+ environmentCode?: string | null | undefined;
224
+ confirm?: boolean | undefined;
225
+ }, {
226
+ issueId: string;
227
+ project?: string | undefined;
228
+ projectKey?: string | undefined;
229
+ type?: "bug" | "feature" | "change" | "improvement" | "task" | "test" | undefined;
230
+ priority?: "low" | "medium" | "high" | "critical" | undefined;
231
+ rdItemId?: string | null | undefined;
232
+ title?: string | undefined;
233
+ description?: string | null | undefined;
234
+ moduleCode?: string | null | undefined;
235
+ versionCode?: string | null | undefined;
236
+ environmentCode?: string | null | undefined;
237
+ confirm?: boolean | undefined;
238
+ }>;
239
+ export declare const markdownImageUploadSchema: z.ZodObject<{
240
+ project: z.ZodOptional<z.ZodString>;
241
+ projectKey: z.ZodOptional<z.ZodString>;
242
+ } & {
243
+ filePath: z.ZodOptional<z.ZodString>;
244
+ contentBase64: z.ZodOptional<z.ZodString>;
245
+ fileName: z.ZodOptional<z.ZodString>;
246
+ mimeType: z.ZodOptional<z.ZodString>;
247
+ alt: z.ZodOptional<z.ZodString>;
248
+ confirm: z.ZodOptional<z.ZodBoolean>;
249
+ }, "strict", z.ZodTypeAny, {
250
+ project?: string | undefined;
251
+ projectKey?: string | undefined;
252
+ confirm?: boolean | undefined;
253
+ filePath?: string | undefined;
254
+ contentBase64?: string | undefined;
255
+ fileName?: string | undefined;
256
+ mimeType?: string | undefined;
257
+ alt?: string | undefined;
258
+ }, {
259
+ project?: string | undefined;
260
+ projectKey?: string | undefined;
261
+ confirm?: boolean | undefined;
262
+ filePath?: string | undefined;
263
+ contentBase64?: string | undefined;
264
+ fileName?: string | undefined;
265
+ mimeType?: string | undefined;
266
+ alt?: string | undefined;
267
+ }>;
268
+ export declare const rdListSchema: z.ZodObject<{
269
+ project: z.ZodOptional<z.ZodString>;
270
+ projectKey: z.ZodOptional<z.ZodString>;
271
+ } & {
272
+ page: z.ZodOptional<z.ZodNumber>;
273
+ pageSize: z.ZodOptional<z.ZodNumber>;
274
+ keyword: z.ZodOptional<z.ZodString>;
275
+ stageId: z.ZodOptional<z.ZodString>;
276
+ status: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
277
+ type: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
278
+ priority: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
279
+ assigneeId: z.ZodOptional<z.ZodString>;
280
+ }, "strict", z.ZodTypeAny, {
281
+ project?: string | undefined;
282
+ projectKey?: string | undefined;
283
+ type?: string[] | undefined;
284
+ status?: string[] | undefined;
285
+ page?: number | undefined;
286
+ pageSize?: number | undefined;
287
+ keyword?: string | undefined;
288
+ priority?: string[] | undefined;
289
+ assigneeId?: string | undefined;
290
+ stageId?: string | undefined;
291
+ }, {
292
+ project?: string | undefined;
293
+ projectKey?: string | undefined;
294
+ type?: string[] | undefined;
295
+ status?: string[] | undefined;
296
+ page?: number | undefined;
297
+ pageSize?: number | undefined;
298
+ keyword?: string | undefined;
299
+ priority?: string[] | undefined;
300
+ assigneeId?: string | undefined;
301
+ stageId?: string | undefined;
302
+ }>;
303
+ export declare const rdGetSchema: z.ZodObject<{
304
+ project: z.ZodOptional<z.ZodString>;
305
+ projectKey: z.ZodOptional<z.ZodString>;
306
+ } & {
307
+ itemId: z.ZodString;
308
+ }, "strict", z.ZodTypeAny, {
309
+ itemId: string;
310
+ project?: string | undefined;
311
+ projectKey?: string | undefined;
312
+ }, {
313
+ itemId: string;
314
+ project?: string | undefined;
315
+ projectKey?: string | undefined;
316
+ }>;
317
+ export declare const rdCreateSchema: z.ZodObject<{
318
+ project: z.ZodOptional<z.ZodString>;
319
+ projectKey: z.ZodOptional<z.ZodString>;
320
+ } & {
321
+ title: z.ZodString;
322
+ description: z.ZodOptional<z.ZodString>;
323
+ stageId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
324
+ type: z.ZodOptional<z.ZodEnum<["feature_dev", "tech_refactor", "integration", "env_setup", "bug_fix", "requirement_confirmation", "solution_design", "testing_validation", "delivery_launch", "project_closure"]>>;
325
+ priority: z.ZodOptional<z.ZodEnum<["low", "medium", "high", "critical"]>>;
326
+ memberIds: z.ZodArray<z.ZodString, "many">;
327
+ verifierId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
328
+ planStartAt: z.ZodOptional<z.ZodString>;
329
+ planEndAt: z.ZodOptional<z.ZodString>;
330
+ stageTasks: z.ZodOptional<z.ZodArray<z.ZodObject<{
331
+ templateId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
332
+ title: z.ZodString;
333
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
334
+ ownerId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
335
+ plannedStartAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
336
+ plannedEndAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
337
+ }, "strict", z.ZodTypeAny, {
338
+ title: string;
339
+ description?: string | null | undefined;
340
+ templateId?: string | null | undefined;
341
+ ownerId?: string | null | undefined;
342
+ plannedStartAt?: string | null | undefined;
343
+ plannedEndAt?: string | null | undefined;
344
+ }, {
345
+ title: string;
346
+ description?: string | null | undefined;
347
+ templateId?: string | null | undefined;
348
+ ownerId?: string | null | undefined;
349
+ plannedStartAt?: string | null | undefined;
350
+ plannedEndAt?: string | null | undefined;
351
+ }>, "many">>;
352
+ stageTaskTemplates: z.ZodOptional<z.ZodArray<z.ZodObject<{
353
+ templateId: z.ZodString;
354
+ ownerId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
355
+ }, "strict", z.ZodTypeAny, {
356
+ templateId: string;
357
+ ownerId?: string | null | undefined;
358
+ }, {
359
+ templateId: string;
360
+ ownerId?: string | null | undefined;
361
+ }>, "many">>;
362
+ confirm: z.ZodOptional<z.ZodBoolean>;
363
+ }, "strict", z.ZodTypeAny, {
364
+ title: string;
365
+ memberIds: string[];
366
+ project?: string | undefined;
367
+ projectKey?: string | undefined;
368
+ type?: "feature_dev" | "tech_refactor" | "integration" | "env_setup" | "bug_fix" | "requirement_confirmation" | "solution_design" | "testing_validation" | "delivery_launch" | "project_closure" | undefined;
369
+ priority?: "low" | "medium" | "high" | "critical" | undefined;
370
+ verifierId?: string | null | undefined;
371
+ description?: string | undefined;
372
+ confirm?: boolean | undefined;
373
+ stageId?: string | null | undefined;
374
+ planStartAt?: string | undefined;
375
+ planEndAt?: string | undefined;
376
+ stageTasks?: {
377
+ title: string;
378
+ description?: string | null | undefined;
379
+ templateId?: string | null | undefined;
380
+ ownerId?: string | null | undefined;
381
+ plannedStartAt?: string | null | undefined;
382
+ plannedEndAt?: string | null | undefined;
383
+ }[] | undefined;
384
+ stageTaskTemplates?: {
385
+ templateId: string;
386
+ ownerId?: string | null | undefined;
387
+ }[] | undefined;
388
+ }, {
389
+ title: string;
390
+ memberIds: string[];
391
+ project?: string | undefined;
392
+ projectKey?: string | undefined;
393
+ type?: "feature_dev" | "tech_refactor" | "integration" | "env_setup" | "bug_fix" | "requirement_confirmation" | "solution_design" | "testing_validation" | "delivery_launch" | "project_closure" | undefined;
394
+ priority?: "low" | "medium" | "high" | "critical" | undefined;
395
+ verifierId?: string | null | undefined;
396
+ description?: string | undefined;
397
+ confirm?: boolean | undefined;
398
+ stageId?: string | null | undefined;
399
+ planStartAt?: string | undefined;
400
+ planEndAt?: string | undefined;
401
+ stageTasks?: {
402
+ title: string;
403
+ description?: string | null | undefined;
404
+ templateId?: string | null | undefined;
405
+ ownerId?: string | null | undefined;
406
+ plannedStartAt?: string | null | undefined;
407
+ plannedEndAt?: string | null | undefined;
408
+ }[] | undefined;
409
+ stageTaskTemplates?: {
410
+ templateId: string;
411
+ ownerId?: string | null | undefined;
412
+ }[] | undefined;
413
+ }>;
414
+ export declare const rdAdvanceStageSchema: z.ZodObject<{
415
+ project: z.ZodOptional<z.ZodString>;
416
+ projectKey: z.ZodOptional<z.ZodString>;
417
+ } & {
418
+ itemId: z.ZodString;
419
+ stageId: z.ZodString;
420
+ memberIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
421
+ description: z.ZodOptional<z.ZodString>;
422
+ planStartAt: z.ZodOptional<z.ZodString>;
423
+ planEndAt: z.ZodOptional<z.ZodString>;
424
+ stageTasks: z.ZodOptional<z.ZodArray<z.ZodObject<{
425
+ templateId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
426
+ title: z.ZodString;
427
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
428
+ ownerId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
429
+ plannedStartAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
430
+ plannedEndAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
431
+ }, "strict", z.ZodTypeAny, {
432
+ title: string;
433
+ description?: string | null | undefined;
434
+ templateId?: string | null | undefined;
435
+ ownerId?: string | null | undefined;
436
+ plannedStartAt?: string | null | undefined;
437
+ plannedEndAt?: string | null | undefined;
438
+ }, {
439
+ title: string;
440
+ description?: string | null | undefined;
441
+ templateId?: string | null | undefined;
442
+ ownerId?: string | null | undefined;
443
+ plannedStartAt?: string | null | undefined;
444
+ plannedEndAt?: string | null | undefined;
445
+ }>, "many">>;
446
+ stageTaskTemplates: z.ZodOptional<z.ZodArray<z.ZodObject<{
447
+ templateId: z.ZodString;
448
+ ownerId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
449
+ }, "strict", z.ZodTypeAny, {
450
+ templateId: string;
451
+ ownerId?: string | null | undefined;
452
+ }, {
453
+ templateId: string;
454
+ ownerId?: string | null | undefined;
455
+ }>, "many">>;
456
+ confirm: z.ZodOptional<z.ZodBoolean>;
457
+ }, "strict", z.ZodTypeAny, {
458
+ stageId: string;
459
+ itemId: string;
460
+ project?: string | undefined;
461
+ projectKey?: string | undefined;
462
+ description?: string | undefined;
463
+ confirm?: boolean | undefined;
464
+ memberIds?: string[] | undefined;
465
+ planStartAt?: string | undefined;
466
+ planEndAt?: string | undefined;
467
+ stageTasks?: {
468
+ title: string;
469
+ description?: string | null | undefined;
470
+ templateId?: string | null | undefined;
471
+ ownerId?: string | null | undefined;
472
+ plannedStartAt?: string | null | undefined;
473
+ plannedEndAt?: string | null | undefined;
474
+ }[] | undefined;
475
+ stageTaskTemplates?: {
476
+ templateId: string;
477
+ ownerId?: string | null | undefined;
478
+ }[] | undefined;
479
+ }, {
480
+ stageId: string;
481
+ itemId: string;
482
+ project?: string | undefined;
483
+ projectKey?: string | undefined;
484
+ description?: string | undefined;
485
+ confirm?: boolean | undefined;
486
+ memberIds?: string[] | undefined;
487
+ planStartAt?: string | undefined;
488
+ planEndAt?: string | undefined;
489
+ stageTasks?: {
490
+ title: string;
491
+ description?: string | null | undefined;
492
+ templateId?: string | null | undefined;
493
+ ownerId?: string | null | undefined;
494
+ plannedStartAt?: string | null | undefined;
495
+ plannedEndAt?: string | null | undefined;
496
+ }[] | undefined;
497
+ stageTaskTemplates?: {
498
+ templateId: string;
499
+ ownerId?: string | null | undefined;
500
+ }[] | undefined;
501
+ }>;
502
+ export declare const rdStageTasksListSchema: z.ZodObject<{
503
+ project: z.ZodOptional<z.ZodString>;
504
+ projectKey: z.ZodOptional<z.ZodString>;
505
+ } & {
506
+ itemId: z.ZodString;
507
+ }, "strict", z.ZodTypeAny, {
508
+ itemId: string;
509
+ project?: string | undefined;
510
+ projectKey?: string | undefined;
511
+ }, {
512
+ itemId: string;
513
+ project?: string | undefined;
514
+ projectKey?: string | undefined;
515
+ }>;
516
+ export declare const rdStageTaskCreateSchema: z.ZodObject<{
517
+ project: z.ZodOptional<z.ZodString>;
518
+ projectKey: z.ZodOptional<z.ZodString>;
519
+ } & {
520
+ itemId: z.ZodString;
521
+ title: z.ZodString;
522
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
523
+ ownerIds: z.ZodArray<z.ZodString, "many">;
524
+ plannedStartAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
525
+ plannedEndAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
526
+ sortOrder: z.ZodOptional<z.ZodNumber>;
527
+ remark: z.ZodOptional<z.ZodNullable<z.ZodString>>;
528
+ confirm: z.ZodOptional<z.ZodBoolean>;
529
+ }, "strict", z.ZodTypeAny, {
530
+ title: string;
531
+ itemId: string;
532
+ ownerIds: string[];
533
+ project?: string | undefined;
534
+ projectKey?: string | undefined;
535
+ description?: string | null | undefined;
536
+ confirm?: boolean | undefined;
537
+ plannedStartAt?: string | null | undefined;
538
+ plannedEndAt?: string | null | undefined;
539
+ sortOrder?: number | undefined;
540
+ remark?: string | null | undefined;
541
+ }, {
542
+ title: string;
543
+ itemId: string;
544
+ ownerIds: string[];
545
+ project?: string | undefined;
546
+ projectKey?: string | undefined;
547
+ description?: string | null | undefined;
548
+ confirm?: boolean | undefined;
549
+ plannedStartAt?: string | null | undefined;
550
+ plannedEndAt?: string | null | undefined;
551
+ sortOrder?: number | undefined;
552
+ remark?: string | null | undefined;
553
+ }>;
554
+ export declare const rdUpdateProgressSchema: z.ZodObject<{
555
+ project: z.ZodOptional<z.ZodString>;
556
+ projectKey: z.ZodOptional<z.ZodString>;
557
+ } & {
558
+ itemId: z.ZodString;
559
+ progress: z.ZodNumber;
560
+ note: z.ZodOptional<z.ZodString>;
561
+ blockReason: z.ZodOptional<z.ZodString>;
562
+ resolveBlockId: z.ZodOptional<z.ZodString>;
563
+ stageTaskId: z.ZodOptional<z.ZodString>;
564
+ confirm: z.ZodOptional<z.ZodBoolean>;
565
+ }, "strict", z.ZodTypeAny, {
566
+ itemId: string;
567
+ progress: number;
568
+ project?: string | undefined;
569
+ projectKey?: string | undefined;
570
+ confirm?: boolean | undefined;
571
+ note?: string | undefined;
572
+ blockReason?: string | undefined;
573
+ resolveBlockId?: string | undefined;
574
+ stageTaskId?: string | undefined;
575
+ }, {
576
+ itemId: string;
577
+ progress: number;
578
+ project?: string | undefined;
579
+ projectKey?: string | undefined;
580
+ confirm?: boolean | undefined;
581
+ note?: string | undefined;
582
+ blockReason?: string | undefined;
583
+ resolveBlockId?: string | undefined;
584
+ stageTaskId?: string | undefined;
585
+ }>;