intention-coding 0.6.6 → 0.6.7

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.
@@ -1,1208 +1,14 @@
1
- import { z } from "zod";
2
- export declare const analyzeProjectContextTool: {
3
- name: string;
4
- description: string;
5
- inputSchema: {
6
- projectPath: z.ZodString;
7
- };
8
- handler: (args: any) => Promise<{
9
- content: {
10
- type: string;
11
- text: string;
12
- }[];
13
- isError: boolean;
14
- } | {
15
- content: {
16
- type: string;
17
- text: string;
18
- }[];
19
- isError?: undefined;
20
- }>;
21
- };
22
- export declare const collectServiceInterfacesTool: {
23
- name: string;
24
- description: string;
25
- inputSchema: {
26
- projectPath: z.ZodString;
27
- };
28
- handler: (args: any) => Promise<{
29
- content: {
30
- type: string;
31
- text: string;
32
- }[];
33
- }>;
34
- };
35
- export declare const generateInterfaceDesignsTool: {
36
- name: string;
37
- description: string;
38
- inputSchema: {
39
- projectPath: z.ZodString;
40
- serviceInterfaceList: z.ZodArray<z.ZodObject<{
41
- id: z.ZodString;
42
- serviceType: z.ZodString;
43
- serviceEnglishName: z.ZodString;
44
- serviceChineseName: z.ZodString;
45
- serviceDescription: z.ZodString;
46
- interfaceDetailList: z.ZodDefault<z.ZodArray<z.ZodObject<{
47
- id: z.ZodString;
48
- functionDescription: z.ZodString;
49
- serviceName: z.ZodString;
50
- methodName: z.ZodString;
51
- }, "strip", z.ZodTypeAny, {
52
- id: string;
53
- methodName: string;
54
- serviceName: string;
55
- functionDescription: string;
56
- }, {
57
- id: string;
58
- methodName: string;
59
- serviceName: string;
60
- functionDescription: string;
61
- }>, "many">>;
62
- }, "strip", z.ZodTypeAny, {
63
- id: string;
64
- serviceType: string;
65
- serviceEnglishName: string;
66
- serviceChineseName: string;
67
- serviceDescription: string;
68
- interfaceDetailList: {
69
- id: string;
70
- methodName: string;
71
- serviceName: string;
72
- functionDescription: string;
73
- }[];
74
- }, {
75
- id: string;
76
- serviceType: string;
77
- serviceEnglishName: string;
78
- serviceChineseName: string;
79
- serviceDescription: string;
80
- interfaceDetailList?: {
81
- id: string;
82
- methodName: string;
83
- serviceName: string;
84
- functionDescription: string;
85
- }[] | undefined;
86
- }>, "many">;
87
- };
88
- handler: (args: any) => Promise<{
89
- content: {
90
- type: string;
91
- text: string;
92
- }[];
93
- }>;
94
- };
95
- export declare const collectDatabaseSchemaTool: {
96
- name: string;
97
- description: string;
98
- inputSchema: {
99
- projectPath: z.ZodString;
100
- };
101
- handler: (args: any) => Promise<{
102
- content: {
103
- type: string;
104
- text: string;
105
- }[];
106
- }>;
107
- };
108
- export declare const analyzeTechSolutionTool: {
109
- name: string;
110
- description: string;
111
- inputSchema: {
112
- projectPath: z.ZodString;
113
- };
114
- handler: (args: any) => Promise<{
115
- content: {
116
- type: string;
117
- text: string;
118
- }[];
119
- }>;
120
- };
121
- export declare const collectBusinessExceptionsTool: {
122
- name: string;
123
- description: string;
124
- inputSchema: {
125
- projectPath: z.ZodString;
126
- };
127
- handler: (args: any) => Promise<{
128
- content: {
129
- type: string;
130
- text: string;
131
- }[];
132
- }>;
133
- };
134
- export declare const generateAppendixTool: {
135
- name: string;
136
- description: string;
137
- inputSchema: {
138
- projectPath: z.ZodString;
139
- };
140
- handler: (args: any) => Promise<{
141
- content: {
142
- type: string;
143
- text: string;
144
- }[];
145
- }>;
146
- };
147
- export declare const generateFinalDocumentTool: {
148
- name: string;
149
- description: string;
150
- inputSchema: {
151
- projectPath: z.ZodString;
152
- techSpecData: z.ZodObject<{
153
- projectName: z.ZodString;
154
- moduleName: z.ZodString;
155
- year: z.ZodOptional<z.ZodString>;
156
- month: z.ZodOptional<z.ZodString>;
157
- referDoc: z.ZodOptional<z.ZodString>;
158
- serviceInterfaceList: z.ZodDefault<z.ZodArray<z.ZodObject<{
159
- id: z.ZodString;
160
- serviceType: z.ZodString;
161
- serviceEnglishName: z.ZodString;
162
- serviceChineseName: z.ZodString;
163
- serviceDescription: z.ZodString;
164
- interfaceDetailList: z.ZodDefault<z.ZodArray<z.ZodObject<{
165
- id: z.ZodString;
166
- functionDescription: z.ZodString;
167
- serviceName: z.ZodString;
168
- methodName: z.ZodString;
169
- }, "strip", z.ZodTypeAny, {
170
- id: string;
171
- methodName: string;
172
- serviceName: string;
173
- functionDescription: string;
174
- }, {
175
- id: string;
176
- methodName: string;
177
- serviceName: string;
178
- functionDescription: string;
179
- }>, "many">>;
180
- }, "strip", z.ZodTypeAny, {
181
- id: string;
182
- serviceType: string;
183
- serviceEnglishName: string;
184
- serviceChineseName: string;
185
- serviceDescription: string;
186
- interfaceDetailList: {
187
- id: string;
188
- methodName: string;
189
- serviceName: string;
190
- functionDescription: string;
191
- }[];
192
- }, {
193
- id: string;
194
- serviceType: string;
195
- serviceEnglishName: string;
196
- serviceChineseName: string;
197
- serviceDescription: string;
198
- interfaceDetailList?: {
199
- id: string;
200
- methodName: string;
201
- serviceName: string;
202
- functionDescription: string;
203
- }[] | undefined;
204
- }>, "many">>;
205
- designDetailList: z.ZodDefault<z.ZodArray<z.ZodObject<{
206
- serviceName: z.ZodString;
207
- serviceDesc: z.ZodString;
208
- interfaceDesignDetailList: z.ZodDefault<z.ZodArray<z.ZodObject<{
209
- functionName: z.ZodString;
210
- interfaceDesc: z.ZodString;
211
- className: z.ZodString;
212
- methodName: z.ZodString;
213
- parameterList: z.ZodDefault<z.ZodArray<z.ZodObject<{
214
- id: z.ZodString;
215
- propertyType: z.ZodString;
216
- propertyName: z.ZodString;
217
- required: z.ZodString;
218
- propertyDesc: z.ZodString;
219
- }, "strip", z.ZodTypeAny, {
220
- id: string;
221
- propertyType: string;
222
- propertyName: string;
223
- required: string;
224
- propertyDesc: string;
225
- }, {
226
- id: string;
227
- propertyType: string;
228
- propertyName: string;
229
- required: string;
230
- propertyDesc: string;
231
- }>, "many">>;
232
- returnResultList: z.ZodDefault<z.ZodArray<z.ZodObject<{
233
- id: z.ZodString;
234
- propertyType: z.ZodString;
235
- propertyName: z.ZodString;
236
- propertyDesc: z.ZodString;
237
- }, "strip", z.ZodTypeAny, {
238
- id: string;
239
- propertyType: string;
240
- propertyName: string;
241
- propertyDesc: string;
242
- }, {
243
- id: string;
244
- propertyType: string;
245
- propertyName: string;
246
- propertyDesc: string;
247
- }>, "many">>;
248
- implementLogic: z.ZodString;
249
- }, "strip", z.ZodTypeAny, {
250
- functionName: string;
251
- interfaceDesc: string;
252
- className: string;
253
- methodName: string;
254
- parameterList: {
255
- id: string;
256
- propertyType: string;
257
- propertyName: string;
258
- required: string;
259
- propertyDesc: string;
260
- }[];
261
- returnResultList: {
262
- id: string;
263
- propertyType: string;
264
- propertyName: string;
265
- propertyDesc: string;
266
- }[];
267
- implementLogic: string;
268
- }, {
269
- functionName: string;
270
- interfaceDesc: string;
271
- className: string;
272
- methodName: string;
273
- implementLogic: string;
274
- parameterList?: {
275
- id: string;
276
- propertyType: string;
277
- propertyName: string;
278
- required: string;
279
- propertyDesc: string;
280
- }[] | undefined;
281
- returnResultList?: {
282
- id: string;
283
- propertyType: string;
284
- propertyName: string;
285
- propertyDesc: string;
286
- }[] | undefined;
287
- }>, "many">>;
288
- }, "strip", z.ZodTypeAny, {
289
- serviceName: string;
290
- serviceDesc: string;
291
- interfaceDesignDetailList: {
292
- functionName: string;
293
- interfaceDesc: string;
294
- className: string;
295
- methodName: string;
296
- parameterList: {
297
- id: string;
298
- propertyType: string;
299
- propertyName: string;
300
- required: string;
301
- propertyDesc: string;
302
- }[];
303
- returnResultList: {
304
- id: string;
305
- propertyType: string;
306
- propertyName: string;
307
- propertyDesc: string;
308
- }[];
309
- implementLogic: string;
310
- }[];
311
- }, {
312
- serviceName: string;
313
- serviceDesc: string;
314
- interfaceDesignDetailList?: {
315
- functionName: string;
316
- interfaceDesc: string;
317
- className: string;
318
- methodName: string;
319
- implementLogic: string;
320
- parameterList?: {
321
- id: string;
322
- propertyType: string;
323
- propertyName: string;
324
- required: string;
325
- propertyDesc: string;
326
- }[] | undefined;
327
- returnResultList?: {
328
- id: string;
329
- propertyType: string;
330
- propertyName: string;
331
- propertyDesc: string;
332
- }[] | undefined;
333
- }[] | undefined;
334
- }>, "many">>;
335
- tableInfoList: z.ZodDefault<z.ZodArray<z.ZodObject<{
336
- id: z.ZodString;
337
- tableName: z.ZodString;
338
- entityName: z.ZodString;
339
- tableDescription: z.ZodString;
340
- tableDetailList: z.ZodDefault<z.ZodArray<z.ZodObject<{
341
- id: z.ZodString;
342
- fieldName: z.ZodString;
343
- fieldType: z.ZodString;
344
- fieldDescription: z.ZodString;
345
- fieldLength: z.ZodString;
346
- }, "strip", z.ZodTypeAny, {
347
- id: string;
348
- fieldName: string;
349
- fieldType: string;
350
- fieldDescription: string;
351
- fieldLength: string;
352
- }, {
353
- id: string;
354
- fieldName: string;
355
- fieldType: string;
356
- fieldDescription: string;
357
- fieldLength: string;
358
- }>, "many">>;
359
- }, "strip", z.ZodTypeAny, {
360
- id: string;
361
- tableName: string;
362
- entityName: string;
363
- tableDescription: string;
364
- tableDetailList: {
365
- id: string;
366
- fieldName: string;
367
- fieldType: string;
368
- fieldDescription: string;
369
- fieldLength: string;
370
- }[];
371
- }, {
372
- id: string;
373
- tableName: string;
374
- entityName: string;
375
- tableDescription: string;
376
- tableDetailList?: {
377
- id: string;
378
- fieldName: string;
379
- fieldType: string;
380
- fieldDescription: string;
381
- fieldLength: string;
382
- }[] | undefined;
383
- }>, "many">>;
384
- techSolution: z.ZodOptional<z.ZodObject<{
385
- content: z.ZodOptional<z.ZodString>;
386
- trafficEstimation: z.ZodOptional<z.ZodString>;
387
- messageQueue: z.ZodOptional<z.ZodObject<{
388
- constraint: z.ZodOptional<z.ZodString>;
389
- useCase: z.ZodOptional<z.ZodString>;
390
- design: z.ZodOptional<z.ZodString>;
391
- intro: z.ZodOptional<z.ZodString>;
392
- dataEstimation: z.ZodOptional<z.ZodString>;
393
- sharding: z.ZodOptional<z.ZodString>;
394
- designIdea: z.ZodOptional<z.ZodString>;
395
- implementation: z.ZodOptional<z.ZodString>;
396
- }, "strip", z.ZodTypeAny, {
397
- design?: string | undefined;
398
- constraint?: string | undefined;
399
- useCase?: string | undefined;
400
- intro?: string | undefined;
401
- dataEstimation?: string | undefined;
402
- sharding?: string | undefined;
403
- designIdea?: string | undefined;
404
- implementation?: string | undefined;
405
- }, {
406
- design?: string | undefined;
407
- constraint?: string | undefined;
408
- useCase?: string | undefined;
409
- intro?: string | undefined;
410
- dataEstimation?: string | undefined;
411
- sharding?: string | undefined;
412
- designIdea?: string | undefined;
413
- implementation?: string | undefined;
414
- }>>;
415
- databaseSplit: z.ZodOptional<z.ZodObject<{
416
- constraint: z.ZodOptional<z.ZodString>;
417
- useCase: z.ZodOptional<z.ZodString>;
418
- design: z.ZodOptional<z.ZodString>;
419
- intro: z.ZodOptional<z.ZodString>;
420
- dataEstimation: z.ZodOptional<z.ZodString>;
421
- sharding: z.ZodOptional<z.ZodString>;
422
- designIdea: z.ZodOptional<z.ZodString>;
423
- implementation: z.ZodOptional<z.ZodString>;
424
- }, "strip", z.ZodTypeAny, {
425
- design?: string | undefined;
426
- constraint?: string | undefined;
427
- useCase?: string | undefined;
428
- intro?: string | undefined;
429
- dataEstimation?: string | undefined;
430
- sharding?: string | undefined;
431
- designIdea?: string | undefined;
432
- implementation?: string | undefined;
433
- }, {
434
- design?: string | undefined;
435
- constraint?: string | undefined;
436
- useCase?: string | undefined;
437
- intro?: string | undefined;
438
- dataEstimation?: string | undefined;
439
- sharding?: string | undefined;
440
- designIdea?: string | undefined;
441
- implementation?: string | undefined;
442
- }>>;
443
- distributedTransaction: z.ZodOptional<z.ZodObject<{
444
- constraint: z.ZodOptional<z.ZodString>;
445
- useCase: z.ZodOptional<z.ZodString>;
446
- design: z.ZodOptional<z.ZodString>;
447
- intro: z.ZodOptional<z.ZodString>;
448
- dataEstimation: z.ZodOptional<z.ZodString>;
449
- sharding: z.ZodOptional<z.ZodString>;
450
- designIdea: z.ZodOptional<z.ZodString>;
451
- implementation: z.ZodOptional<z.ZodString>;
452
- }, "strip", z.ZodTypeAny, {
453
- design?: string | undefined;
454
- constraint?: string | undefined;
455
- useCase?: string | undefined;
456
- intro?: string | undefined;
457
- dataEstimation?: string | undefined;
458
- sharding?: string | undefined;
459
- designIdea?: string | undefined;
460
- implementation?: string | undefined;
461
- }, {
462
- design?: string | undefined;
463
- constraint?: string | undefined;
464
- useCase?: string | undefined;
465
- intro?: string | undefined;
466
- dataEstimation?: string | undefined;
467
- sharding?: string | undefined;
468
- designIdea?: string | undefined;
469
- implementation?: string | undefined;
470
- }>>;
471
- distributedLock: z.ZodOptional<z.ZodObject<{
472
- constraint: z.ZodOptional<z.ZodString>;
473
- useCase: z.ZodOptional<z.ZodString>;
474
- design: z.ZodOptional<z.ZodString>;
475
- intro: z.ZodOptional<z.ZodString>;
476
- dataEstimation: z.ZodOptional<z.ZodString>;
477
- sharding: z.ZodOptional<z.ZodString>;
478
- designIdea: z.ZodOptional<z.ZodString>;
479
- implementation: z.ZodOptional<z.ZodString>;
480
- }, "strip", z.ZodTypeAny, {
481
- design?: string | undefined;
482
- constraint?: string | undefined;
483
- useCase?: string | undefined;
484
- intro?: string | undefined;
485
- dataEstimation?: string | undefined;
486
- sharding?: string | undefined;
487
- designIdea?: string | undefined;
488
- implementation?: string | undefined;
489
- }, {
490
- design?: string | undefined;
491
- constraint?: string | undefined;
492
- useCase?: string | undefined;
493
- intro?: string | undefined;
494
- dataEstimation?: string | undefined;
495
- sharding?: string | undefined;
496
- designIdea?: string | undefined;
497
- implementation?: string | undefined;
498
- }>>;
499
- scheduledTask: z.ZodOptional<z.ZodObject<{
500
- constraint: z.ZodOptional<z.ZodString>;
501
- useCase: z.ZodOptional<z.ZodString>;
502
- design: z.ZodOptional<z.ZodString>;
503
- intro: z.ZodOptional<z.ZodString>;
504
- dataEstimation: z.ZodOptional<z.ZodString>;
505
- sharding: z.ZodOptional<z.ZodString>;
506
- designIdea: z.ZodOptional<z.ZodString>;
507
- implementation: z.ZodOptional<z.ZodString>;
508
- }, "strip", z.ZodTypeAny, {
509
- design?: string | undefined;
510
- constraint?: string | undefined;
511
- useCase?: string | undefined;
512
- intro?: string | undefined;
513
- dataEstimation?: string | undefined;
514
- sharding?: string | undefined;
515
- designIdea?: string | undefined;
516
- implementation?: string | undefined;
517
- }, {
518
- design?: string | undefined;
519
- constraint?: string | undefined;
520
- useCase?: string | undefined;
521
- intro?: string | undefined;
522
- dataEstimation?: string | undefined;
523
- sharding?: string | undefined;
524
- designIdea?: string | undefined;
525
- implementation?: string | undefined;
526
- }>>;
527
- delayTask: z.ZodOptional<z.ZodObject<{
528
- constraint: z.ZodOptional<z.ZodString>;
529
- useCase: z.ZodOptional<z.ZodString>;
530
- design: z.ZodOptional<z.ZodString>;
531
- intro: z.ZodOptional<z.ZodString>;
532
- dataEstimation: z.ZodOptional<z.ZodString>;
533
- sharding: z.ZodOptional<z.ZodString>;
534
- designIdea: z.ZodOptional<z.ZodString>;
535
- implementation: z.ZodOptional<z.ZodString>;
536
- }, "strip", z.ZodTypeAny, {
537
- design?: string | undefined;
538
- constraint?: string | undefined;
539
- useCase?: string | undefined;
540
- intro?: string | undefined;
541
- dataEstimation?: string | undefined;
542
- sharding?: string | undefined;
543
- designIdea?: string | undefined;
544
- implementation?: string | undefined;
545
- }, {
546
- design?: string | undefined;
547
- constraint?: string | undefined;
548
- useCase?: string | undefined;
549
- intro?: string | undefined;
550
- dataEstimation?: string | undefined;
551
- sharding?: string | undefined;
552
- designIdea?: string | undefined;
553
- implementation?: string | undefined;
554
- }>>;
555
- cacheDesign: z.ZodOptional<z.ZodObject<{
556
- constraint: z.ZodOptional<z.ZodString>;
557
- useCase: z.ZodOptional<z.ZodString>;
558
- design: z.ZodOptional<z.ZodString>;
559
- intro: z.ZodOptional<z.ZodString>;
560
- dataEstimation: z.ZodOptional<z.ZodString>;
561
- sharding: z.ZodOptional<z.ZodString>;
562
- designIdea: z.ZodOptional<z.ZodString>;
563
- implementation: z.ZodOptional<z.ZodString>;
564
- }, "strip", z.ZodTypeAny, {
565
- design?: string | undefined;
566
- constraint?: string | undefined;
567
- useCase?: string | undefined;
568
- intro?: string | undefined;
569
- dataEstimation?: string | undefined;
570
- sharding?: string | undefined;
571
- designIdea?: string | undefined;
572
- implementation?: string | undefined;
573
- }, {
574
- design?: string | undefined;
575
- constraint?: string | undefined;
576
- useCase?: string | undefined;
577
- intro?: string | undefined;
578
- dataEstimation?: string | undefined;
579
- sharding?: string | undefined;
580
- designIdea?: string | undefined;
581
- implementation?: string | undefined;
582
- }>>;
583
- }, "strip", z.ZodTypeAny, {
584
- content?: string | undefined;
585
- messageQueue?: {
586
- design?: string | undefined;
587
- constraint?: string | undefined;
588
- useCase?: string | undefined;
589
- intro?: string | undefined;
590
- dataEstimation?: string | undefined;
591
- sharding?: string | undefined;
592
- designIdea?: string | undefined;
593
- implementation?: string | undefined;
594
- } | undefined;
595
- databaseSplit?: {
596
- design?: string | undefined;
597
- constraint?: string | undefined;
598
- useCase?: string | undefined;
599
- intro?: string | undefined;
600
- dataEstimation?: string | undefined;
601
- sharding?: string | undefined;
602
- designIdea?: string | undefined;
603
- implementation?: string | undefined;
604
- } | undefined;
605
- distributedTransaction?: {
606
- design?: string | undefined;
607
- constraint?: string | undefined;
608
- useCase?: string | undefined;
609
- intro?: string | undefined;
610
- dataEstimation?: string | undefined;
611
- sharding?: string | undefined;
612
- designIdea?: string | undefined;
613
- implementation?: string | undefined;
614
- } | undefined;
615
- distributedLock?: {
616
- design?: string | undefined;
617
- constraint?: string | undefined;
618
- useCase?: string | undefined;
619
- intro?: string | undefined;
620
- dataEstimation?: string | undefined;
621
- sharding?: string | undefined;
622
- designIdea?: string | undefined;
623
- implementation?: string | undefined;
624
- } | undefined;
625
- scheduledTask?: {
626
- design?: string | undefined;
627
- constraint?: string | undefined;
628
- useCase?: string | undefined;
629
- intro?: string | undefined;
630
- dataEstimation?: string | undefined;
631
- sharding?: string | undefined;
632
- designIdea?: string | undefined;
633
- implementation?: string | undefined;
634
- } | undefined;
635
- delayTask?: {
636
- design?: string | undefined;
637
- constraint?: string | undefined;
638
- useCase?: string | undefined;
639
- intro?: string | undefined;
640
- dataEstimation?: string | undefined;
641
- sharding?: string | undefined;
642
- designIdea?: string | undefined;
643
- implementation?: string | undefined;
644
- } | undefined;
645
- cacheDesign?: {
646
- design?: string | undefined;
647
- constraint?: string | undefined;
648
- useCase?: string | undefined;
649
- intro?: string | undefined;
650
- dataEstimation?: string | undefined;
651
- sharding?: string | undefined;
652
- designIdea?: string | undefined;
653
- implementation?: string | undefined;
654
- } | undefined;
655
- trafficEstimation?: string | undefined;
656
- }, {
657
- content?: string | undefined;
658
- messageQueue?: {
659
- design?: string | undefined;
660
- constraint?: string | undefined;
661
- useCase?: string | undefined;
662
- intro?: string | undefined;
663
- dataEstimation?: string | undefined;
664
- sharding?: string | undefined;
665
- designIdea?: string | undefined;
666
- implementation?: string | undefined;
667
- } | undefined;
668
- databaseSplit?: {
669
- design?: string | undefined;
670
- constraint?: string | undefined;
671
- useCase?: string | undefined;
672
- intro?: string | undefined;
673
- dataEstimation?: string | undefined;
674
- sharding?: string | undefined;
675
- designIdea?: string | undefined;
676
- implementation?: string | undefined;
677
- } | undefined;
678
- distributedTransaction?: {
679
- design?: string | undefined;
680
- constraint?: string | undefined;
681
- useCase?: string | undefined;
682
- intro?: string | undefined;
683
- dataEstimation?: string | undefined;
684
- sharding?: string | undefined;
685
- designIdea?: string | undefined;
686
- implementation?: string | undefined;
687
- } | undefined;
688
- distributedLock?: {
689
- design?: string | undefined;
690
- constraint?: string | undefined;
691
- useCase?: string | undefined;
692
- intro?: string | undefined;
693
- dataEstimation?: string | undefined;
694
- sharding?: string | undefined;
695
- designIdea?: string | undefined;
696
- implementation?: string | undefined;
697
- } | undefined;
698
- scheduledTask?: {
699
- design?: string | undefined;
700
- constraint?: string | undefined;
701
- useCase?: string | undefined;
702
- intro?: string | undefined;
703
- dataEstimation?: string | undefined;
704
- sharding?: string | undefined;
705
- designIdea?: string | undefined;
706
- implementation?: string | undefined;
707
- } | undefined;
708
- delayTask?: {
709
- design?: string | undefined;
710
- constraint?: string | undefined;
711
- useCase?: string | undefined;
712
- intro?: string | undefined;
713
- dataEstimation?: string | undefined;
714
- sharding?: string | undefined;
715
- designIdea?: string | undefined;
716
- implementation?: string | undefined;
717
- } | undefined;
718
- cacheDesign?: {
719
- design?: string | undefined;
720
- constraint?: string | undefined;
721
- useCase?: string | undefined;
722
- intro?: string | undefined;
723
- dataEstimation?: string | undefined;
724
- sharding?: string | undefined;
725
- designIdea?: string | undefined;
726
- implementation?: string | undefined;
727
- } | undefined;
728
- trafficEstimation?: string | undefined;
729
- }>>;
730
- businessException: z.ZodOptional<z.ZodObject<{
731
- content: z.ZodString;
732
- }, "strip", z.ZodTypeAny, {
733
- content: string;
734
- }, {
735
- content: string;
736
- }>>;
737
- appendix: z.ZodOptional<z.ZodObject<{
738
- content: z.ZodOptional<z.ZodString>;
739
- exceptionCodeList: z.ZodOptional<z.ZodArray<z.ZodObject<{
740
- id: z.ZodOptional<z.ZodString>;
741
- exceptionCode: z.ZodString;
742
- exceptionDescription: z.ZodString;
743
- }, "strip", z.ZodTypeAny, {
744
- exceptionCode: string;
745
- exceptionDescription: string;
746
- id?: string | undefined;
747
- }, {
748
- exceptionCode: string;
749
- exceptionDescription: string;
750
- id?: string | undefined;
751
- }>, "many">>;
752
- codeValueList: z.ZodOptional<z.ZodArray<z.ZodObject<{
753
- id: z.ZodOptional<z.ZodString>;
754
- propertyName: z.ZodString;
755
- codeValue: z.ZodString;
756
- }, "strip", z.ZodTypeAny, {
757
- propertyName: string;
758
- codeValue: string;
759
- id?: string | undefined;
760
- }, {
761
- propertyName: string;
762
- codeValue: string;
763
- id?: string | undefined;
764
- }>, "many">>;
765
- }, "strip", z.ZodTypeAny, {
766
- content?: string | undefined;
767
- exceptionCodeList?: {
768
- exceptionCode: string;
769
- exceptionDescription: string;
770
- id?: string | undefined;
771
- }[] | undefined;
772
- codeValueList?: {
773
- propertyName: string;
774
- codeValue: string;
775
- id?: string | undefined;
776
- }[] | undefined;
777
- }, {
778
- content?: string | undefined;
779
- exceptionCodeList?: {
780
- exceptionCode: string;
781
- exceptionDescription: string;
782
- id?: string | undefined;
783
- }[] | undefined;
784
- codeValueList?: {
785
- propertyName: string;
786
- codeValue: string;
787
- id?: string | undefined;
788
- }[] | undefined;
789
- }>>;
790
- dtoDefinitions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
791
- name: z.ZodOptional<z.ZodString>;
792
- type: z.ZodOptional<z.ZodString>;
793
- required: z.ZodOptional<z.ZodString>;
794
- description: z.ZodOptional<z.ZodString>;
795
- }, "strip", z.ZodTypeAny, {
796
- type?: string | undefined;
797
- name?: string | undefined;
798
- description?: string | undefined;
799
- required?: string | undefined;
800
- }, {
801
- type?: string | undefined;
802
- name?: string | undefined;
803
- description?: string | undefined;
804
- required?: string | undefined;
805
- }>, "many">>>;
806
- }, "strip", z.ZodTypeAny, {
807
- projectName: string;
808
- moduleName: string;
809
- serviceInterfaceList: {
810
- id: string;
811
- serviceType: string;
812
- serviceEnglishName: string;
813
- serviceChineseName: string;
814
- serviceDescription: string;
815
- interfaceDetailList: {
816
- id: string;
817
- methodName: string;
818
- serviceName: string;
819
- functionDescription: string;
820
- }[];
821
- }[];
822
- designDetailList: {
823
- serviceName: string;
824
- serviceDesc: string;
825
- interfaceDesignDetailList: {
826
- functionName: string;
827
- interfaceDesc: string;
828
- className: string;
829
- methodName: string;
830
- parameterList: {
831
- id: string;
832
- propertyType: string;
833
- propertyName: string;
834
- required: string;
835
- propertyDesc: string;
836
- }[];
837
- returnResultList: {
838
- id: string;
839
- propertyType: string;
840
- propertyName: string;
841
- propertyDesc: string;
842
- }[];
843
- implementLogic: string;
844
- }[];
845
- }[];
846
- tableInfoList: {
847
- id: string;
848
- tableName: string;
849
- entityName: string;
850
- tableDescription: string;
851
- tableDetailList: {
852
- id: string;
853
- fieldName: string;
854
- fieldType: string;
855
- fieldDescription: string;
856
- fieldLength: string;
857
- }[];
858
- }[];
859
- techSolution?: {
860
- content?: string | undefined;
861
- messageQueue?: {
862
- design?: string | undefined;
863
- constraint?: string | undefined;
864
- useCase?: string | undefined;
865
- intro?: string | undefined;
866
- dataEstimation?: string | undefined;
867
- sharding?: string | undefined;
868
- designIdea?: string | undefined;
869
- implementation?: string | undefined;
870
- } | undefined;
871
- databaseSplit?: {
872
- design?: string | undefined;
873
- constraint?: string | undefined;
874
- useCase?: string | undefined;
875
- intro?: string | undefined;
876
- dataEstimation?: string | undefined;
877
- sharding?: string | undefined;
878
- designIdea?: string | undefined;
879
- implementation?: string | undefined;
880
- } | undefined;
881
- distributedTransaction?: {
882
- design?: string | undefined;
883
- constraint?: string | undefined;
884
- useCase?: string | undefined;
885
- intro?: string | undefined;
886
- dataEstimation?: string | undefined;
887
- sharding?: string | undefined;
888
- designIdea?: string | undefined;
889
- implementation?: string | undefined;
890
- } | undefined;
891
- distributedLock?: {
892
- design?: string | undefined;
893
- constraint?: string | undefined;
894
- useCase?: string | undefined;
895
- intro?: string | undefined;
896
- dataEstimation?: string | undefined;
897
- sharding?: string | undefined;
898
- designIdea?: string | undefined;
899
- implementation?: string | undefined;
900
- } | undefined;
901
- scheduledTask?: {
902
- design?: string | undefined;
903
- constraint?: string | undefined;
904
- useCase?: string | undefined;
905
- intro?: string | undefined;
906
- dataEstimation?: string | undefined;
907
- sharding?: string | undefined;
908
- designIdea?: string | undefined;
909
- implementation?: string | undefined;
910
- } | undefined;
911
- delayTask?: {
912
- design?: string | undefined;
913
- constraint?: string | undefined;
914
- useCase?: string | undefined;
915
- intro?: string | undefined;
916
- dataEstimation?: string | undefined;
917
- sharding?: string | undefined;
918
- designIdea?: string | undefined;
919
- implementation?: string | undefined;
920
- } | undefined;
921
- cacheDesign?: {
922
- design?: string | undefined;
923
- constraint?: string | undefined;
924
- useCase?: string | undefined;
925
- intro?: string | undefined;
926
- dataEstimation?: string | undefined;
927
- sharding?: string | undefined;
928
- designIdea?: string | undefined;
929
- implementation?: string | undefined;
930
- } | undefined;
931
- trafficEstimation?: string | undefined;
932
- } | undefined;
933
- year?: string | undefined;
934
- month?: string | undefined;
935
- referDoc?: string | undefined;
936
- appendix?: {
937
- content?: string | undefined;
938
- exceptionCodeList?: {
939
- exceptionCode: string;
940
- exceptionDescription: string;
941
- id?: string | undefined;
942
- }[] | undefined;
943
- codeValueList?: {
944
- propertyName: string;
945
- codeValue: string;
946
- id?: string | undefined;
947
- }[] | undefined;
948
- } | undefined;
949
- businessException?: {
950
- content: string;
951
- } | undefined;
952
- dtoDefinitions?: Record<string, {
953
- type?: string | undefined;
954
- name?: string | undefined;
955
- description?: string | undefined;
956
- required?: string | undefined;
957
- }[]> | undefined;
958
- }, {
959
- projectName: string;
960
- moduleName: string;
961
- techSolution?: {
962
- content?: string | undefined;
963
- messageQueue?: {
964
- design?: string | undefined;
965
- constraint?: string | undefined;
966
- useCase?: string | undefined;
967
- intro?: string | undefined;
968
- dataEstimation?: string | undefined;
969
- sharding?: string | undefined;
970
- designIdea?: string | undefined;
971
- implementation?: string | undefined;
972
- } | undefined;
973
- databaseSplit?: {
974
- design?: string | undefined;
975
- constraint?: string | undefined;
976
- useCase?: string | undefined;
977
- intro?: string | undefined;
978
- dataEstimation?: string | undefined;
979
- sharding?: string | undefined;
980
- designIdea?: string | undefined;
981
- implementation?: string | undefined;
982
- } | undefined;
983
- distributedTransaction?: {
984
- design?: string | undefined;
985
- constraint?: string | undefined;
986
- useCase?: string | undefined;
987
- intro?: string | undefined;
988
- dataEstimation?: string | undefined;
989
- sharding?: string | undefined;
990
- designIdea?: string | undefined;
991
- implementation?: string | undefined;
992
- } | undefined;
993
- distributedLock?: {
994
- design?: string | undefined;
995
- constraint?: string | undefined;
996
- useCase?: string | undefined;
997
- intro?: string | undefined;
998
- dataEstimation?: string | undefined;
999
- sharding?: string | undefined;
1000
- designIdea?: string | undefined;
1001
- implementation?: string | undefined;
1002
- } | undefined;
1003
- scheduledTask?: {
1004
- design?: string | undefined;
1005
- constraint?: string | undefined;
1006
- useCase?: string | undefined;
1007
- intro?: string | undefined;
1008
- dataEstimation?: string | undefined;
1009
- sharding?: string | undefined;
1010
- designIdea?: string | undefined;
1011
- implementation?: string | undefined;
1012
- } | undefined;
1013
- delayTask?: {
1014
- design?: string | undefined;
1015
- constraint?: string | undefined;
1016
- useCase?: string | undefined;
1017
- intro?: string | undefined;
1018
- dataEstimation?: string | undefined;
1019
- sharding?: string | undefined;
1020
- designIdea?: string | undefined;
1021
- implementation?: string | undefined;
1022
- } | undefined;
1023
- cacheDesign?: {
1024
- design?: string | undefined;
1025
- constraint?: string | undefined;
1026
- useCase?: string | undefined;
1027
- intro?: string | undefined;
1028
- dataEstimation?: string | undefined;
1029
- sharding?: string | undefined;
1030
- designIdea?: string | undefined;
1031
- implementation?: string | undefined;
1032
- } | undefined;
1033
- trafficEstimation?: string | undefined;
1034
- } | undefined;
1035
- year?: string | undefined;
1036
- month?: string | undefined;
1037
- referDoc?: string | undefined;
1038
- serviceInterfaceList?: {
1039
- id: string;
1040
- serviceType: string;
1041
- serviceEnglishName: string;
1042
- serviceChineseName: string;
1043
- serviceDescription: string;
1044
- interfaceDetailList?: {
1045
- id: string;
1046
- methodName: string;
1047
- serviceName: string;
1048
- functionDescription: string;
1049
- }[] | undefined;
1050
- }[] | undefined;
1051
- designDetailList?: {
1052
- serviceName: string;
1053
- serviceDesc: string;
1054
- interfaceDesignDetailList?: {
1055
- functionName: string;
1056
- interfaceDesc: string;
1057
- className: string;
1058
- methodName: string;
1059
- implementLogic: string;
1060
- parameterList?: {
1061
- id: string;
1062
- propertyType: string;
1063
- propertyName: string;
1064
- required: string;
1065
- propertyDesc: string;
1066
- }[] | undefined;
1067
- returnResultList?: {
1068
- id: string;
1069
- propertyType: string;
1070
- propertyName: string;
1071
- propertyDesc: string;
1072
- }[] | undefined;
1073
- }[] | undefined;
1074
- }[] | undefined;
1075
- tableInfoList?: {
1076
- id: string;
1077
- tableName: string;
1078
- entityName: string;
1079
- tableDescription: string;
1080
- tableDetailList?: {
1081
- id: string;
1082
- fieldName: string;
1083
- fieldType: string;
1084
- fieldDescription: string;
1085
- fieldLength: string;
1086
- }[] | undefined;
1087
- }[] | undefined;
1088
- appendix?: {
1089
- content?: string | undefined;
1090
- exceptionCodeList?: {
1091
- exceptionCode: string;
1092
- exceptionDescription: string;
1093
- id?: string | undefined;
1094
- }[] | undefined;
1095
- codeValueList?: {
1096
- propertyName: string;
1097
- codeValue: string;
1098
- id?: string | undefined;
1099
- }[] | undefined;
1100
- } | undefined;
1101
- businessException?: {
1102
- content: string;
1103
- } | undefined;
1104
- dtoDefinitions?: Record<string, {
1105
- type?: string | undefined;
1106
- name?: string | undefined;
1107
- description?: string | undefined;
1108
- required?: string | undefined;
1109
- }[]> | undefined;
1110
- }>;
1111
- };
1112
- handler: (args: any) => Promise<{
1113
- content: {
1114
- type: string;
1115
- text: string;
1116
- }[];
1117
- isError: boolean;
1118
- } | {
1119
- content: {
1120
- type: string;
1121
- text: string;
1122
- }[];
1123
- isError?: undefined;
1124
- }>;
1125
- };
1126
- export declare const analyzeLargeProjectTool: {
1127
- name: string;
1128
- description: string;
1129
- inputSchema: {
1130
- projectPath: z.ZodString;
1131
- projectName: z.ZodOptional<z.ZodString>;
1132
- moduleName: z.ZodOptional<z.ZodString>;
1133
- includeModules: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1134
- excludeModules: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1135
- maxFilesPerBatch: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
1136
- maxModulesPerChapter: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
1137
- };
1138
- handler: (args: any) => Promise<{
1139
- content: {
1140
- type: string;
1141
- text: string;
1142
- }[];
1143
- isError: boolean;
1144
- } | {
1145
- content: {
1146
- type: string;
1147
- text: string;
1148
- }[];
1149
- isError?: undefined;
1150
- }>;
1151
- };
1152
- export declare const analyzeMultiProjectsTool: {
1153
- name: string;
1154
- description: string;
1155
- inputSchema: {
1156
- projectPaths: z.ZodArray<z.ZodString, "many">;
1157
- mergedProjectName: z.ZodString;
1158
- mergedModuleName: z.ZodOptional<z.ZodString>;
1159
- outputDir: z.ZodOptional<z.ZodString>;
1160
- addProjectPrefix: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1161
- projectAliases: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1162
- };
1163
- handler: (args: any) => Promise<{
1164
- content: {
1165
- type: string;
1166
- text: string;
1167
- }[];
1168
- isError: boolean;
1169
- } | {
1170
- content: {
1171
- type: string;
1172
- text: string;
1173
- }[];
1174
- isError?: undefined;
1175
- }>;
1176
- };
1177
- export declare const renderFinalDocumentTool: {
1178
- name: string;
1179
- description: string;
1180
- inputSchema: {
1181
- projectUuid: z.ZodString;
1182
- outputDir: z.ZodOptional<z.ZodString>;
1183
- includeEmptyChapters: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1184
- generateDefaultContent: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1185
- maxItemsPerChapter: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
1186
- };
1187
- handler: (args: any) => Promise<{
1188
- content: {
1189
- type: string;
1190
- text: string;
1191
- }[];
1192
- isError: boolean;
1193
- } | {
1194
- content: {
1195
- type: string;
1196
- text: string;
1197
- }[];
1198
- isError?: undefined;
1199
- }>;
1200
- };
1201
- export declare const getProjectProgressTool: {
1
+ export { createTechSpecProjectTool, getProjectProgressTool, listTechSpecProjectsTool, } from "./tools/project-tools";
2
+ export { saveServiceInterfacesTool, saveInterfaceDesignTool, saveDatabaseTableTool, saveTechSolutionTool, saveBusinessExceptionTool, saveAppendixTool, } from "./tools/chapter-save-tools";
3
+ export { renderTechSpecDocumentTool, analyzeProjectStructureTool, analyzeLargeProjectTool, } from "./tools/render-tools";
4
+ /**
5
+ * 技术规格说明书生成工具集合
6
+ */
7
+ export declare const techSpecGeneratorTools: ({
1202
8
  name: string;
1203
9
  description: string;
1204
10
  inputSchema: {
1205
- projectUuid: z.ZodString;
11
+ projectUuid: import("zod").ZodString;
1206
12
  };
1207
13
  handler: (args: any) => Promise<{
1208
14
  content: {
@@ -1217,13 +23,11 @@ export declare const getProjectProgressTool: {
1217
23
  }[];
1218
24
  isError?: undefined;
1219
25
  }>;
1220
- };
1221
- export declare const listTechSpecProjectsTool: {
26
+ } | {
1222
27
  name: string;
1223
28
  description: string;
1224
29
  inputSchema: {
1225
- status: z.ZodOptional<z.ZodString>;
1226
- limit: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
30
+ limit: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodNumber>>;
1227
31
  };
1228
32
  handler: (args: any) => Promise<{
1229
33
  content: {
@@ -1238,68 +42,11 @@ export declare const listTechSpecProjectsTool: {
1238
42
  }[];
1239
43
  isError: boolean;
1240
44
  }>;
1241
- };
1242
- export declare const analyzeProjectStructureTool: {
1243
- name: string;
1244
- description: string;
1245
- inputSchema: {
1246
- projectPath: z.ZodString;
1247
- };
1248
- handler: (args: any) => Promise<{
1249
- content: {
1250
- type: string;
1251
- text: string;
1252
- }[];
1253
- isError: boolean;
1254
- } | {
1255
- content: {
1256
- type: string;
1257
- text: string;
1258
- }[];
1259
- isError?: undefined;
1260
- }>;
1261
- };
1262
- export declare const techSpecGeneratorTools: ({
1263
- name: string;
1264
- description: string;
1265
- inputSchema: {
1266
- projectPath: z.ZodString;
1267
- };
1268
- handler: (args: any) => Promise<{
1269
- content: {
1270
- type: string;
1271
- text: string;
1272
- }[];
1273
- }>;
1274
- } | {
1275
- name: string;
1276
- description: string;
1277
- inputSchema: {
1278
- projectPaths: z.ZodArray<z.ZodString, "many">;
1279
- mergedProjectName: z.ZodString;
1280
- mergedModuleName: z.ZodOptional<z.ZodString>;
1281
- outputDir: z.ZodOptional<z.ZodString>;
1282
- addProjectPrefix: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1283
- projectAliases: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1284
- };
1285
- handler: (args: any) => Promise<{
1286
- content: {
1287
- type: string;
1288
- text: string;
1289
- }[];
1290
- isError: boolean;
1291
- } | {
1292
- content: {
1293
- type: string;
1294
- text: string;
1295
- }[];
1296
- isError?: undefined;
1297
- }>;
1298
45
  } | {
1299
46
  name: string;
1300
47
  description: string;
1301
48
  inputSchema: {
1302
- projectUuid: z.ZodString;
49
+ projectPath: import("zod").ZodString;
1303
50
  };
1304
51
  handler: (args: any) => Promise<{
1305
52
  content: {
@@ -1314,991 +61,14 @@ export declare const techSpecGeneratorTools: ({
1314
61
  }[];
1315
62
  isError?: undefined;
1316
63
  }>;
1317
- } | {
1318
- name: string;
1319
- description: string;
1320
- inputSchema: {
1321
- status: z.ZodOptional<z.ZodString>;
1322
- limit: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
1323
- };
1324
- handler: (args: any) => Promise<{
1325
- content: {
1326
- type: string;
1327
- text: string;
1328
- }[];
1329
- isError?: undefined;
1330
- } | {
1331
- content: {
1332
- type: string;
1333
- text: string;
1334
- }[];
1335
- isError: boolean;
1336
- }>;
1337
64
  })[];
1338
65
  export declare const techSpecGeneratorTool: {
1339
66
  name: string;
1340
67
  description: string;
1341
68
  inputSchema: {
1342
- projectPath: z.ZodString;
1343
- techSpecData: z.ZodObject<{
1344
- projectName: z.ZodString;
1345
- moduleName: z.ZodString;
1346
- year: z.ZodOptional<z.ZodString>;
1347
- month: z.ZodOptional<z.ZodString>;
1348
- referDoc: z.ZodOptional<z.ZodString>;
1349
- serviceInterfaceList: z.ZodDefault<z.ZodArray<z.ZodObject<{
1350
- id: z.ZodString;
1351
- serviceType: z.ZodString;
1352
- serviceEnglishName: z.ZodString;
1353
- serviceChineseName: z.ZodString;
1354
- serviceDescription: z.ZodString;
1355
- interfaceDetailList: z.ZodDefault<z.ZodArray<z.ZodObject<{
1356
- id: z.ZodString;
1357
- functionDescription: z.ZodString;
1358
- serviceName: z.ZodString;
1359
- methodName: z.ZodString;
1360
- }, "strip", z.ZodTypeAny, {
1361
- id: string;
1362
- methodName: string;
1363
- serviceName: string;
1364
- functionDescription: string;
1365
- }, {
1366
- id: string;
1367
- methodName: string;
1368
- serviceName: string;
1369
- functionDescription: string;
1370
- }>, "many">>;
1371
- }, "strip", z.ZodTypeAny, {
1372
- id: string;
1373
- serviceType: string;
1374
- serviceEnglishName: string;
1375
- serviceChineseName: string;
1376
- serviceDescription: string;
1377
- interfaceDetailList: {
1378
- id: string;
1379
- methodName: string;
1380
- serviceName: string;
1381
- functionDescription: string;
1382
- }[];
1383
- }, {
1384
- id: string;
1385
- serviceType: string;
1386
- serviceEnglishName: string;
1387
- serviceChineseName: string;
1388
- serviceDescription: string;
1389
- interfaceDetailList?: {
1390
- id: string;
1391
- methodName: string;
1392
- serviceName: string;
1393
- functionDescription: string;
1394
- }[] | undefined;
1395
- }>, "many">>;
1396
- designDetailList: z.ZodDefault<z.ZodArray<z.ZodObject<{
1397
- serviceName: z.ZodString;
1398
- serviceDesc: z.ZodString;
1399
- interfaceDesignDetailList: z.ZodDefault<z.ZodArray<z.ZodObject<{
1400
- functionName: z.ZodString;
1401
- interfaceDesc: z.ZodString;
1402
- className: z.ZodString;
1403
- methodName: z.ZodString;
1404
- parameterList: z.ZodDefault<z.ZodArray<z.ZodObject<{
1405
- id: z.ZodString;
1406
- propertyType: z.ZodString;
1407
- propertyName: z.ZodString;
1408
- required: z.ZodString;
1409
- propertyDesc: z.ZodString;
1410
- }, "strip", z.ZodTypeAny, {
1411
- id: string;
1412
- propertyType: string;
1413
- propertyName: string;
1414
- required: string;
1415
- propertyDesc: string;
1416
- }, {
1417
- id: string;
1418
- propertyType: string;
1419
- propertyName: string;
1420
- required: string;
1421
- propertyDesc: string;
1422
- }>, "many">>;
1423
- returnResultList: z.ZodDefault<z.ZodArray<z.ZodObject<{
1424
- id: z.ZodString;
1425
- propertyType: z.ZodString;
1426
- propertyName: z.ZodString;
1427
- propertyDesc: z.ZodString;
1428
- }, "strip", z.ZodTypeAny, {
1429
- id: string;
1430
- propertyType: string;
1431
- propertyName: string;
1432
- propertyDesc: string;
1433
- }, {
1434
- id: string;
1435
- propertyType: string;
1436
- propertyName: string;
1437
- propertyDesc: string;
1438
- }>, "many">>;
1439
- implementLogic: z.ZodString;
1440
- }, "strip", z.ZodTypeAny, {
1441
- functionName: string;
1442
- interfaceDesc: string;
1443
- className: string;
1444
- methodName: string;
1445
- parameterList: {
1446
- id: string;
1447
- propertyType: string;
1448
- propertyName: string;
1449
- required: string;
1450
- propertyDesc: string;
1451
- }[];
1452
- returnResultList: {
1453
- id: string;
1454
- propertyType: string;
1455
- propertyName: string;
1456
- propertyDesc: string;
1457
- }[];
1458
- implementLogic: string;
1459
- }, {
1460
- functionName: string;
1461
- interfaceDesc: string;
1462
- className: string;
1463
- methodName: string;
1464
- implementLogic: string;
1465
- parameterList?: {
1466
- id: string;
1467
- propertyType: string;
1468
- propertyName: string;
1469
- required: string;
1470
- propertyDesc: string;
1471
- }[] | undefined;
1472
- returnResultList?: {
1473
- id: string;
1474
- propertyType: string;
1475
- propertyName: string;
1476
- propertyDesc: string;
1477
- }[] | undefined;
1478
- }>, "many">>;
1479
- }, "strip", z.ZodTypeAny, {
1480
- serviceName: string;
1481
- serviceDesc: string;
1482
- interfaceDesignDetailList: {
1483
- functionName: string;
1484
- interfaceDesc: string;
1485
- className: string;
1486
- methodName: string;
1487
- parameterList: {
1488
- id: string;
1489
- propertyType: string;
1490
- propertyName: string;
1491
- required: string;
1492
- propertyDesc: string;
1493
- }[];
1494
- returnResultList: {
1495
- id: string;
1496
- propertyType: string;
1497
- propertyName: string;
1498
- propertyDesc: string;
1499
- }[];
1500
- implementLogic: string;
1501
- }[];
1502
- }, {
1503
- serviceName: string;
1504
- serviceDesc: string;
1505
- interfaceDesignDetailList?: {
1506
- functionName: string;
1507
- interfaceDesc: string;
1508
- className: string;
1509
- methodName: string;
1510
- implementLogic: string;
1511
- parameterList?: {
1512
- id: string;
1513
- propertyType: string;
1514
- propertyName: string;
1515
- required: string;
1516
- propertyDesc: string;
1517
- }[] | undefined;
1518
- returnResultList?: {
1519
- id: string;
1520
- propertyType: string;
1521
- propertyName: string;
1522
- propertyDesc: string;
1523
- }[] | undefined;
1524
- }[] | undefined;
1525
- }>, "many">>;
1526
- tableInfoList: z.ZodDefault<z.ZodArray<z.ZodObject<{
1527
- id: z.ZodString;
1528
- tableName: z.ZodString;
1529
- entityName: z.ZodString;
1530
- tableDescription: z.ZodString;
1531
- tableDetailList: z.ZodDefault<z.ZodArray<z.ZodObject<{
1532
- id: z.ZodString;
1533
- fieldName: z.ZodString;
1534
- fieldType: z.ZodString;
1535
- fieldDescription: z.ZodString;
1536
- fieldLength: z.ZodString;
1537
- }, "strip", z.ZodTypeAny, {
1538
- id: string;
1539
- fieldName: string;
1540
- fieldType: string;
1541
- fieldDescription: string;
1542
- fieldLength: string;
1543
- }, {
1544
- id: string;
1545
- fieldName: string;
1546
- fieldType: string;
1547
- fieldDescription: string;
1548
- fieldLength: string;
1549
- }>, "many">>;
1550
- }, "strip", z.ZodTypeAny, {
1551
- id: string;
1552
- tableName: string;
1553
- entityName: string;
1554
- tableDescription: string;
1555
- tableDetailList: {
1556
- id: string;
1557
- fieldName: string;
1558
- fieldType: string;
1559
- fieldDescription: string;
1560
- fieldLength: string;
1561
- }[];
1562
- }, {
1563
- id: string;
1564
- tableName: string;
1565
- entityName: string;
1566
- tableDescription: string;
1567
- tableDetailList?: {
1568
- id: string;
1569
- fieldName: string;
1570
- fieldType: string;
1571
- fieldDescription: string;
1572
- fieldLength: string;
1573
- }[] | undefined;
1574
- }>, "many">>;
1575
- techSolution: z.ZodOptional<z.ZodObject<{
1576
- content: z.ZodOptional<z.ZodString>;
1577
- trafficEstimation: z.ZodOptional<z.ZodString>;
1578
- messageQueue: z.ZodOptional<z.ZodObject<{
1579
- constraint: z.ZodOptional<z.ZodString>;
1580
- useCase: z.ZodOptional<z.ZodString>;
1581
- design: z.ZodOptional<z.ZodString>;
1582
- intro: z.ZodOptional<z.ZodString>;
1583
- dataEstimation: z.ZodOptional<z.ZodString>;
1584
- sharding: z.ZodOptional<z.ZodString>;
1585
- designIdea: z.ZodOptional<z.ZodString>;
1586
- implementation: z.ZodOptional<z.ZodString>;
1587
- }, "strip", z.ZodTypeAny, {
1588
- design?: string | undefined;
1589
- constraint?: string | undefined;
1590
- useCase?: string | undefined;
1591
- intro?: string | undefined;
1592
- dataEstimation?: string | undefined;
1593
- sharding?: string | undefined;
1594
- designIdea?: string | undefined;
1595
- implementation?: string | undefined;
1596
- }, {
1597
- design?: string | undefined;
1598
- constraint?: string | undefined;
1599
- useCase?: string | undefined;
1600
- intro?: string | undefined;
1601
- dataEstimation?: string | undefined;
1602
- sharding?: string | undefined;
1603
- designIdea?: string | undefined;
1604
- implementation?: string | undefined;
1605
- }>>;
1606
- databaseSplit: z.ZodOptional<z.ZodObject<{
1607
- constraint: z.ZodOptional<z.ZodString>;
1608
- useCase: z.ZodOptional<z.ZodString>;
1609
- design: z.ZodOptional<z.ZodString>;
1610
- intro: z.ZodOptional<z.ZodString>;
1611
- dataEstimation: z.ZodOptional<z.ZodString>;
1612
- sharding: z.ZodOptional<z.ZodString>;
1613
- designIdea: z.ZodOptional<z.ZodString>;
1614
- implementation: z.ZodOptional<z.ZodString>;
1615
- }, "strip", z.ZodTypeAny, {
1616
- design?: string | undefined;
1617
- constraint?: string | undefined;
1618
- useCase?: string | undefined;
1619
- intro?: string | undefined;
1620
- dataEstimation?: string | undefined;
1621
- sharding?: string | undefined;
1622
- designIdea?: string | undefined;
1623
- implementation?: string | undefined;
1624
- }, {
1625
- design?: string | undefined;
1626
- constraint?: string | undefined;
1627
- useCase?: string | undefined;
1628
- intro?: string | undefined;
1629
- dataEstimation?: string | undefined;
1630
- sharding?: string | undefined;
1631
- designIdea?: string | undefined;
1632
- implementation?: string | undefined;
1633
- }>>;
1634
- distributedTransaction: z.ZodOptional<z.ZodObject<{
1635
- constraint: z.ZodOptional<z.ZodString>;
1636
- useCase: z.ZodOptional<z.ZodString>;
1637
- design: z.ZodOptional<z.ZodString>;
1638
- intro: z.ZodOptional<z.ZodString>;
1639
- dataEstimation: z.ZodOptional<z.ZodString>;
1640
- sharding: z.ZodOptional<z.ZodString>;
1641
- designIdea: z.ZodOptional<z.ZodString>;
1642
- implementation: z.ZodOptional<z.ZodString>;
1643
- }, "strip", z.ZodTypeAny, {
1644
- design?: string | undefined;
1645
- constraint?: string | undefined;
1646
- useCase?: string | undefined;
1647
- intro?: string | undefined;
1648
- dataEstimation?: string | undefined;
1649
- sharding?: string | undefined;
1650
- designIdea?: string | undefined;
1651
- implementation?: string | undefined;
1652
- }, {
1653
- design?: string | undefined;
1654
- constraint?: string | undefined;
1655
- useCase?: string | undefined;
1656
- intro?: string | undefined;
1657
- dataEstimation?: string | undefined;
1658
- sharding?: string | undefined;
1659
- designIdea?: string | undefined;
1660
- implementation?: string | undefined;
1661
- }>>;
1662
- distributedLock: z.ZodOptional<z.ZodObject<{
1663
- constraint: z.ZodOptional<z.ZodString>;
1664
- useCase: z.ZodOptional<z.ZodString>;
1665
- design: z.ZodOptional<z.ZodString>;
1666
- intro: z.ZodOptional<z.ZodString>;
1667
- dataEstimation: z.ZodOptional<z.ZodString>;
1668
- sharding: z.ZodOptional<z.ZodString>;
1669
- designIdea: z.ZodOptional<z.ZodString>;
1670
- implementation: z.ZodOptional<z.ZodString>;
1671
- }, "strip", z.ZodTypeAny, {
1672
- design?: string | undefined;
1673
- constraint?: string | undefined;
1674
- useCase?: string | undefined;
1675
- intro?: string | undefined;
1676
- dataEstimation?: string | undefined;
1677
- sharding?: string | undefined;
1678
- designIdea?: string | undefined;
1679
- implementation?: string | undefined;
1680
- }, {
1681
- design?: string | undefined;
1682
- constraint?: string | undefined;
1683
- useCase?: string | undefined;
1684
- intro?: string | undefined;
1685
- dataEstimation?: string | undefined;
1686
- sharding?: string | undefined;
1687
- designIdea?: string | undefined;
1688
- implementation?: string | undefined;
1689
- }>>;
1690
- scheduledTask: z.ZodOptional<z.ZodObject<{
1691
- constraint: z.ZodOptional<z.ZodString>;
1692
- useCase: z.ZodOptional<z.ZodString>;
1693
- design: z.ZodOptional<z.ZodString>;
1694
- intro: z.ZodOptional<z.ZodString>;
1695
- dataEstimation: z.ZodOptional<z.ZodString>;
1696
- sharding: z.ZodOptional<z.ZodString>;
1697
- designIdea: z.ZodOptional<z.ZodString>;
1698
- implementation: z.ZodOptional<z.ZodString>;
1699
- }, "strip", z.ZodTypeAny, {
1700
- design?: string | undefined;
1701
- constraint?: string | undefined;
1702
- useCase?: string | undefined;
1703
- intro?: string | undefined;
1704
- dataEstimation?: string | undefined;
1705
- sharding?: string | undefined;
1706
- designIdea?: string | undefined;
1707
- implementation?: string | undefined;
1708
- }, {
1709
- design?: string | undefined;
1710
- constraint?: string | undefined;
1711
- useCase?: string | undefined;
1712
- intro?: string | undefined;
1713
- dataEstimation?: string | undefined;
1714
- sharding?: string | undefined;
1715
- designIdea?: string | undefined;
1716
- implementation?: string | undefined;
1717
- }>>;
1718
- delayTask: z.ZodOptional<z.ZodObject<{
1719
- constraint: z.ZodOptional<z.ZodString>;
1720
- useCase: z.ZodOptional<z.ZodString>;
1721
- design: z.ZodOptional<z.ZodString>;
1722
- intro: z.ZodOptional<z.ZodString>;
1723
- dataEstimation: z.ZodOptional<z.ZodString>;
1724
- sharding: z.ZodOptional<z.ZodString>;
1725
- designIdea: z.ZodOptional<z.ZodString>;
1726
- implementation: z.ZodOptional<z.ZodString>;
1727
- }, "strip", z.ZodTypeAny, {
1728
- design?: string | undefined;
1729
- constraint?: string | undefined;
1730
- useCase?: string | undefined;
1731
- intro?: string | undefined;
1732
- dataEstimation?: string | undefined;
1733
- sharding?: string | undefined;
1734
- designIdea?: string | undefined;
1735
- implementation?: string | undefined;
1736
- }, {
1737
- design?: string | undefined;
1738
- constraint?: string | undefined;
1739
- useCase?: string | undefined;
1740
- intro?: string | undefined;
1741
- dataEstimation?: string | undefined;
1742
- sharding?: string | undefined;
1743
- designIdea?: string | undefined;
1744
- implementation?: string | undefined;
1745
- }>>;
1746
- cacheDesign: z.ZodOptional<z.ZodObject<{
1747
- constraint: z.ZodOptional<z.ZodString>;
1748
- useCase: z.ZodOptional<z.ZodString>;
1749
- design: z.ZodOptional<z.ZodString>;
1750
- intro: z.ZodOptional<z.ZodString>;
1751
- dataEstimation: z.ZodOptional<z.ZodString>;
1752
- sharding: z.ZodOptional<z.ZodString>;
1753
- designIdea: z.ZodOptional<z.ZodString>;
1754
- implementation: z.ZodOptional<z.ZodString>;
1755
- }, "strip", z.ZodTypeAny, {
1756
- design?: string | undefined;
1757
- constraint?: string | undefined;
1758
- useCase?: string | undefined;
1759
- intro?: string | undefined;
1760
- dataEstimation?: string | undefined;
1761
- sharding?: string | undefined;
1762
- designIdea?: string | undefined;
1763
- implementation?: string | undefined;
1764
- }, {
1765
- design?: string | undefined;
1766
- constraint?: string | undefined;
1767
- useCase?: string | undefined;
1768
- intro?: string | undefined;
1769
- dataEstimation?: string | undefined;
1770
- sharding?: string | undefined;
1771
- designIdea?: string | undefined;
1772
- implementation?: string | undefined;
1773
- }>>;
1774
- }, "strip", z.ZodTypeAny, {
1775
- content?: string | undefined;
1776
- messageQueue?: {
1777
- design?: string | undefined;
1778
- constraint?: string | undefined;
1779
- useCase?: string | undefined;
1780
- intro?: string | undefined;
1781
- dataEstimation?: string | undefined;
1782
- sharding?: string | undefined;
1783
- designIdea?: string | undefined;
1784
- implementation?: string | undefined;
1785
- } | undefined;
1786
- databaseSplit?: {
1787
- design?: string | undefined;
1788
- constraint?: string | undefined;
1789
- useCase?: string | undefined;
1790
- intro?: string | undefined;
1791
- dataEstimation?: string | undefined;
1792
- sharding?: string | undefined;
1793
- designIdea?: string | undefined;
1794
- implementation?: string | undefined;
1795
- } | undefined;
1796
- distributedTransaction?: {
1797
- design?: string | undefined;
1798
- constraint?: string | undefined;
1799
- useCase?: string | undefined;
1800
- intro?: string | undefined;
1801
- dataEstimation?: string | undefined;
1802
- sharding?: string | undefined;
1803
- designIdea?: string | undefined;
1804
- implementation?: string | undefined;
1805
- } | undefined;
1806
- distributedLock?: {
1807
- design?: string | undefined;
1808
- constraint?: string | undefined;
1809
- useCase?: string | undefined;
1810
- intro?: string | undefined;
1811
- dataEstimation?: string | undefined;
1812
- sharding?: string | undefined;
1813
- designIdea?: string | undefined;
1814
- implementation?: string | undefined;
1815
- } | undefined;
1816
- scheduledTask?: {
1817
- design?: string | undefined;
1818
- constraint?: string | undefined;
1819
- useCase?: string | undefined;
1820
- intro?: string | undefined;
1821
- dataEstimation?: string | undefined;
1822
- sharding?: string | undefined;
1823
- designIdea?: string | undefined;
1824
- implementation?: string | undefined;
1825
- } | undefined;
1826
- delayTask?: {
1827
- design?: string | undefined;
1828
- constraint?: string | undefined;
1829
- useCase?: string | undefined;
1830
- intro?: string | undefined;
1831
- dataEstimation?: string | undefined;
1832
- sharding?: string | undefined;
1833
- designIdea?: string | undefined;
1834
- implementation?: string | undefined;
1835
- } | undefined;
1836
- cacheDesign?: {
1837
- design?: string | undefined;
1838
- constraint?: string | undefined;
1839
- useCase?: string | undefined;
1840
- intro?: string | undefined;
1841
- dataEstimation?: string | undefined;
1842
- sharding?: string | undefined;
1843
- designIdea?: string | undefined;
1844
- implementation?: string | undefined;
1845
- } | undefined;
1846
- trafficEstimation?: string | undefined;
1847
- }, {
1848
- content?: string | undefined;
1849
- messageQueue?: {
1850
- design?: string | undefined;
1851
- constraint?: string | undefined;
1852
- useCase?: string | undefined;
1853
- intro?: string | undefined;
1854
- dataEstimation?: string | undefined;
1855
- sharding?: string | undefined;
1856
- designIdea?: string | undefined;
1857
- implementation?: string | undefined;
1858
- } | undefined;
1859
- databaseSplit?: {
1860
- design?: string | undefined;
1861
- constraint?: string | undefined;
1862
- useCase?: string | undefined;
1863
- intro?: string | undefined;
1864
- dataEstimation?: string | undefined;
1865
- sharding?: string | undefined;
1866
- designIdea?: string | undefined;
1867
- implementation?: string | undefined;
1868
- } | undefined;
1869
- distributedTransaction?: {
1870
- design?: string | undefined;
1871
- constraint?: string | undefined;
1872
- useCase?: string | undefined;
1873
- intro?: string | undefined;
1874
- dataEstimation?: string | undefined;
1875
- sharding?: string | undefined;
1876
- designIdea?: string | undefined;
1877
- implementation?: string | undefined;
1878
- } | undefined;
1879
- distributedLock?: {
1880
- design?: string | undefined;
1881
- constraint?: string | undefined;
1882
- useCase?: string | undefined;
1883
- intro?: string | undefined;
1884
- dataEstimation?: string | undefined;
1885
- sharding?: string | undefined;
1886
- designIdea?: string | undefined;
1887
- implementation?: string | undefined;
1888
- } | undefined;
1889
- scheduledTask?: {
1890
- design?: string | undefined;
1891
- constraint?: string | undefined;
1892
- useCase?: string | undefined;
1893
- intro?: string | undefined;
1894
- dataEstimation?: string | undefined;
1895
- sharding?: string | undefined;
1896
- designIdea?: string | undefined;
1897
- implementation?: string | undefined;
1898
- } | undefined;
1899
- delayTask?: {
1900
- design?: string | undefined;
1901
- constraint?: string | undefined;
1902
- useCase?: string | undefined;
1903
- intro?: string | undefined;
1904
- dataEstimation?: string | undefined;
1905
- sharding?: string | undefined;
1906
- designIdea?: string | undefined;
1907
- implementation?: string | undefined;
1908
- } | undefined;
1909
- cacheDesign?: {
1910
- design?: string | undefined;
1911
- constraint?: string | undefined;
1912
- useCase?: string | undefined;
1913
- intro?: string | undefined;
1914
- dataEstimation?: string | undefined;
1915
- sharding?: string | undefined;
1916
- designIdea?: string | undefined;
1917
- implementation?: string | undefined;
1918
- } | undefined;
1919
- trafficEstimation?: string | undefined;
1920
- }>>;
1921
- businessException: z.ZodOptional<z.ZodObject<{
1922
- content: z.ZodString;
1923
- }, "strip", z.ZodTypeAny, {
1924
- content: string;
1925
- }, {
1926
- content: string;
1927
- }>>;
1928
- appendix: z.ZodOptional<z.ZodObject<{
1929
- content: z.ZodOptional<z.ZodString>;
1930
- exceptionCodeList: z.ZodOptional<z.ZodArray<z.ZodObject<{
1931
- id: z.ZodOptional<z.ZodString>;
1932
- exceptionCode: z.ZodString;
1933
- exceptionDescription: z.ZodString;
1934
- }, "strip", z.ZodTypeAny, {
1935
- exceptionCode: string;
1936
- exceptionDescription: string;
1937
- id?: string | undefined;
1938
- }, {
1939
- exceptionCode: string;
1940
- exceptionDescription: string;
1941
- id?: string | undefined;
1942
- }>, "many">>;
1943
- codeValueList: z.ZodOptional<z.ZodArray<z.ZodObject<{
1944
- id: z.ZodOptional<z.ZodString>;
1945
- propertyName: z.ZodString;
1946
- codeValue: z.ZodString;
1947
- }, "strip", z.ZodTypeAny, {
1948
- propertyName: string;
1949
- codeValue: string;
1950
- id?: string | undefined;
1951
- }, {
1952
- propertyName: string;
1953
- codeValue: string;
1954
- id?: string | undefined;
1955
- }>, "many">>;
1956
- }, "strip", z.ZodTypeAny, {
1957
- content?: string | undefined;
1958
- exceptionCodeList?: {
1959
- exceptionCode: string;
1960
- exceptionDescription: string;
1961
- id?: string | undefined;
1962
- }[] | undefined;
1963
- codeValueList?: {
1964
- propertyName: string;
1965
- codeValue: string;
1966
- id?: string | undefined;
1967
- }[] | undefined;
1968
- }, {
1969
- content?: string | undefined;
1970
- exceptionCodeList?: {
1971
- exceptionCode: string;
1972
- exceptionDescription: string;
1973
- id?: string | undefined;
1974
- }[] | undefined;
1975
- codeValueList?: {
1976
- propertyName: string;
1977
- codeValue: string;
1978
- id?: string | undefined;
1979
- }[] | undefined;
1980
- }>>;
1981
- dtoDefinitions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
1982
- name: z.ZodOptional<z.ZodString>;
1983
- type: z.ZodOptional<z.ZodString>;
1984
- required: z.ZodOptional<z.ZodString>;
1985
- description: z.ZodOptional<z.ZodString>;
1986
- }, "strip", z.ZodTypeAny, {
1987
- type?: string | undefined;
1988
- name?: string | undefined;
1989
- description?: string | undefined;
1990
- required?: string | undefined;
1991
- }, {
1992
- type?: string | undefined;
1993
- name?: string | undefined;
1994
- description?: string | undefined;
1995
- required?: string | undefined;
1996
- }>, "many">>>;
1997
- }, "strip", z.ZodTypeAny, {
1998
- projectName: string;
1999
- moduleName: string;
2000
- serviceInterfaceList: {
2001
- id: string;
2002
- serviceType: string;
2003
- serviceEnglishName: string;
2004
- serviceChineseName: string;
2005
- serviceDescription: string;
2006
- interfaceDetailList: {
2007
- id: string;
2008
- methodName: string;
2009
- serviceName: string;
2010
- functionDescription: string;
2011
- }[];
2012
- }[];
2013
- designDetailList: {
2014
- serviceName: string;
2015
- serviceDesc: string;
2016
- interfaceDesignDetailList: {
2017
- functionName: string;
2018
- interfaceDesc: string;
2019
- className: string;
2020
- methodName: string;
2021
- parameterList: {
2022
- id: string;
2023
- propertyType: string;
2024
- propertyName: string;
2025
- required: string;
2026
- propertyDesc: string;
2027
- }[];
2028
- returnResultList: {
2029
- id: string;
2030
- propertyType: string;
2031
- propertyName: string;
2032
- propertyDesc: string;
2033
- }[];
2034
- implementLogic: string;
2035
- }[];
2036
- }[];
2037
- tableInfoList: {
2038
- id: string;
2039
- tableName: string;
2040
- entityName: string;
2041
- tableDescription: string;
2042
- tableDetailList: {
2043
- id: string;
2044
- fieldName: string;
2045
- fieldType: string;
2046
- fieldDescription: string;
2047
- fieldLength: string;
2048
- }[];
2049
- }[];
2050
- techSolution?: {
2051
- content?: string | undefined;
2052
- messageQueue?: {
2053
- design?: string | undefined;
2054
- constraint?: string | undefined;
2055
- useCase?: string | undefined;
2056
- intro?: string | undefined;
2057
- dataEstimation?: string | undefined;
2058
- sharding?: string | undefined;
2059
- designIdea?: string | undefined;
2060
- implementation?: string | undefined;
2061
- } | undefined;
2062
- databaseSplit?: {
2063
- design?: string | undefined;
2064
- constraint?: string | undefined;
2065
- useCase?: string | undefined;
2066
- intro?: string | undefined;
2067
- dataEstimation?: string | undefined;
2068
- sharding?: string | undefined;
2069
- designIdea?: string | undefined;
2070
- implementation?: string | undefined;
2071
- } | undefined;
2072
- distributedTransaction?: {
2073
- design?: string | undefined;
2074
- constraint?: string | undefined;
2075
- useCase?: string | undefined;
2076
- intro?: string | undefined;
2077
- dataEstimation?: string | undefined;
2078
- sharding?: string | undefined;
2079
- designIdea?: string | undefined;
2080
- implementation?: string | undefined;
2081
- } | undefined;
2082
- distributedLock?: {
2083
- design?: string | undefined;
2084
- constraint?: string | undefined;
2085
- useCase?: string | undefined;
2086
- intro?: string | undefined;
2087
- dataEstimation?: string | undefined;
2088
- sharding?: string | undefined;
2089
- designIdea?: string | undefined;
2090
- implementation?: string | undefined;
2091
- } | undefined;
2092
- scheduledTask?: {
2093
- design?: string | undefined;
2094
- constraint?: string | undefined;
2095
- useCase?: string | undefined;
2096
- intro?: string | undefined;
2097
- dataEstimation?: string | undefined;
2098
- sharding?: string | undefined;
2099
- designIdea?: string | undefined;
2100
- implementation?: string | undefined;
2101
- } | undefined;
2102
- delayTask?: {
2103
- design?: string | undefined;
2104
- constraint?: string | undefined;
2105
- useCase?: string | undefined;
2106
- intro?: string | undefined;
2107
- dataEstimation?: string | undefined;
2108
- sharding?: string | undefined;
2109
- designIdea?: string | undefined;
2110
- implementation?: string | undefined;
2111
- } | undefined;
2112
- cacheDesign?: {
2113
- design?: string | undefined;
2114
- constraint?: string | undefined;
2115
- useCase?: string | undefined;
2116
- intro?: string | undefined;
2117
- dataEstimation?: string | undefined;
2118
- sharding?: string | undefined;
2119
- designIdea?: string | undefined;
2120
- implementation?: string | undefined;
2121
- } | undefined;
2122
- trafficEstimation?: string | undefined;
2123
- } | undefined;
2124
- year?: string | undefined;
2125
- month?: string | undefined;
2126
- referDoc?: string | undefined;
2127
- appendix?: {
2128
- content?: string | undefined;
2129
- exceptionCodeList?: {
2130
- exceptionCode: string;
2131
- exceptionDescription: string;
2132
- id?: string | undefined;
2133
- }[] | undefined;
2134
- codeValueList?: {
2135
- propertyName: string;
2136
- codeValue: string;
2137
- id?: string | undefined;
2138
- }[] | undefined;
2139
- } | undefined;
2140
- businessException?: {
2141
- content: string;
2142
- } | undefined;
2143
- dtoDefinitions?: Record<string, {
2144
- type?: string | undefined;
2145
- name?: string | undefined;
2146
- description?: string | undefined;
2147
- required?: string | undefined;
2148
- }[]> | undefined;
2149
- }, {
2150
- projectName: string;
2151
- moduleName: string;
2152
- techSolution?: {
2153
- content?: string | undefined;
2154
- messageQueue?: {
2155
- design?: string | undefined;
2156
- constraint?: string | undefined;
2157
- useCase?: string | undefined;
2158
- intro?: string | undefined;
2159
- dataEstimation?: string | undefined;
2160
- sharding?: string | undefined;
2161
- designIdea?: string | undefined;
2162
- implementation?: string | undefined;
2163
- } | undefined;
2164
- databaseSplit?: {
2165
- design?: string | undefined;
2166
- constraint?: string | undefined;
2167
- useCase?: string | undefined;
2168
- intro?: string | undefined;
2169
- dataEstimation?: string | undefined;
2170
- sharding?: string | undefined;
2171
- designIdea?: string | undefined;
2172
- implementation?: string | undefined;
2173
- } | undefined;
2174
- distributedTransaction?: {
2175
- design?: string | undefined;
2176
- constraint?: string | undefined;
2177
- useCase?: string | undefined;
2178
- intro?: string | undefined;
2179
- dataEstimation?: string | undefined;
2180
- sharding?: string | undefined;
2181
- designIdea?: string | undefined;
2182
- implementation?: string | undefined;
2183
- } | undefined;
2184
- distributedLock?: {
2185
- design?: string | undefined;
2186
- constraint?: string | undefined;
2187
- useCase?: string | undefined;
2188
- intro?: string | undefined;
2189
- dataEstimation?: string | undefined;
2190
- sharding?: string | undefined;
2191
- designIdea?: string | undefined;
2192
- implementation?: string | undefined;
2193
- } | undefined;
2194
- scheduledTask?: {
2195
- design?: string | undefined;
2196
- constraint?: string | undefined;
2197
- useCase?: string | undefined;
2198
- intro?: string | undefined;
2199
- dataEstimation?: string | undefined;
2200
- sharding?: string | undefined;
2201
- designIdea?: string | undefined;
2202
- implementation?: string | undefined;
2203
- } | undefined;
2204
- delayTask?: {
2205
- design?: string | undefined;
2206
- constraint?: string | undefined;
2207
- useCase?: string | undefined;
2208
- intro?: string | undefined;
2209
- dataEstimation?: string | undefined;
2210
- sharding?: string | undefined;
2211
- designIdea?: string | undefined;
2212
- implementation?: string | undefined;
2213
- } | undefined;
2214
- cacheDesign?: {
2215
- design?: string | undefined;
2216
- constraint?: string | undefined;
2217
- useCase?: string | undefined;
2218
- intro?: string | undefined;
2219
- dataEstimation?: string | undefined;
2220
- sharding?: string | undefined;
2221
- designIdea?: string | undefined;
2222
- implementation?: string | undefined;
2223
- } | undefined;
2224
- trafficEstimation?: string | undefined;
2225
- } | undefined;
2226
- year?: string | undefined;
2227
- month?: string | undefined;
2228
- referDoc?: string | undefined;
2229
- serviceInterfaceList?: {
2230
- id: string;
2231
- serviceType: string;
2232
- serviceEnglishName: string;
2233
- serviceChineseName: string;
2234
- serviceDescription: string;
2235
- interfaceDetailList?: {
2236
- id: string;
2237
- methodName: string;
2238
- serviceName: string;
2239
- functionDescription: string;
2240
- }[] | undefined;
2241
- }[] | undefined;
2242
- designDetailList?: {
2243
- serviceName: string;
2244
- serviceDesc: string;
2245
- interfaceDesignDetailList?: {
2246
- functionName: string;
2247
- interfaceDesc: string;
2248
- className: string;
2249
- methodName: string;
2250
- implementLogic: string;
2251
- parameterList?: {
2252
- id: string;
2253
- propertyType: string;
2254
- propertyName: string;
2255
- required: string;
2256
- propertyDesc: string;
2257
- }[] | undefined;
2258
- returnResultList?: {
2259
- id: string;
2260
- propertyType: string;
2261
- propertyName: string;
2262
- propertyDesc: string;
2263
- }[] | undefined;
2264
- }[] | undefined;
2265
- }[] | undefined;
2266
- tableInfoList?: {
2267
- id: string;
2268
- tableName: string;
2269
- entityName: string;
2270
- tableDescription: string;
2271
- tableDetailList?: {
2272
- id: string;
2273
- fieldName: string;
2274
- fieldType: string;
2275
- fieldDescription: string;
2276
- fieldLength: string;
2277
- }[] | undefined;
2278
- }[] | undefined;
2279
- appendix?: {
2280
- content?: string | undefined;
2281
- exceptionCodeList?: {
2282
- exceptionCode: string;
2283
- exceptionDescription: string;
2284
- id?: string | undefined;
2285
- }[] | undefined;
2286
- codeValueList?: {
2287
- propertyName: string;
2288
- codeValue: string;
2289
- id?: string | undefined;
2290
- }[] | undefined;
2291
- } | undefined;
2292
- businessException?: {
2293
- content: string;
2294
- } | undefined;
2295
- dtoDefinitions?: Record<string, {
2296
- type?: string | undefined;
2297
- name?: string | undefined;
2298
- description?: string | undefined;
2299
- required?: string | undefined;
2300
- }[]> | undefined;
2301
- }>;
69
+ projectPath: import("zod").ZodString;
70
+ projectName: import("zod").ZodString;
71
+ moduleName: import("zod").ZodString;
2302
72
  };
2303
73
  handler: (args: any) => Promise<{
2304
74
  content: {