intention-coding 0.6.5 → 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,1183 +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 renderFinalDocumentTool: {
1153
- name: string;
1154
- description: string;
1155
- inputSchema: {
1156
- projectUuid: z.ZodString;
1157
- outputDir: z.ZodOptional<z.ZodString>;
1158
- includeEmptyChapters: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1159
- generateDefaultContent: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1160
- maxItemsPerChapter: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
1161
- };
1162
- handler: (args: any) => Promise<{
1163
- content: {
1164
- type: string;
1165
- text: string;
1166
- }[];
1167
- isError: boolean;
1168
- } | {
1169
- content: {
1170
- type: string;
1171
- text: string;
1172
- }[];
1173
- isError?: undefined;
1174
- }>;
1175
- };
1176
- 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: ({
1177
8
  name: string;
1178
9
  description: string;
1179
10
  inputSchema: {
1180
- projectUuid: z.ZodString;
11
+ projectUuid: import("zod").ZodString;
1181
12
  };
1182
13
  handler: (args: any) => Promise<{
1183
14
  content: {
@@ -1192,13 +23,11 @@ export declare const getProjectProgressTool: {
1192
23
  }[];
1193
24
  isError?: undefined;
1194
25
  }>;
1195
- };
1196
- export declare const listTechSpecProjectsTool: {
26
+ } | {
1197
27
  name: string;
1198
28
  description: string;
1199
29
  inputSchema: {
1200
- status: z.ZodOptional<z.ZodString>;
1201
- limit: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
30
+ limit: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodNumber>>;
1202
31
  };
1203
32
  handler: (args: any) => Promise<{
1204
33
  content: {
@@ -1213,44 +42,11 @@ export declare const listTechSpecProjectsTool: {
1213
42
  }[];
1214
43
  isError: boolean;
1215
44
  }>;
1216
- };
1217
- export declare const analyzeProjectStructureTool: {
1218
- name: string;
1219
- description: string;
1220
- inputSchema: {
1221
- projectPath: z.ZodString;
1222
- };
1223
- handler: (args: any) => Promise<{
1224
- content: {
1225
- type: string;
1226
- text: string;
1227
- }[];
1228
- isError: boolean;
1229
- } | {
1230
- content: {
1231
- type: string;
1232
- text: string;
1233
- }[];
1234
- isError?: undefined;
1235
- }>;
1236
- };
1237
- export declare const techSpecGeneratorTools: ({
1238
- name: string;
1239
- description: string;
1240
- inputSchema: {
1241
- projectPath: z.ZodString;
1242
- };
1243
- handler: (args: any) => Promise<{
1244
- content: {
1245
- type: string;
1246
- text: string;
1247
- }[];
1248
- }>;
1249
45
  } | {
1250
46
  name: string;
1251
47
  description: string;
1252
48
  inputSchema: {
1253
- projectUuid: z.ZodString;
49
+ projectPath: import("zod").ZodString;
1254
50
  };
1255
51
  handler: (args: any) => Promise<{
1256
52
  content: {
@@ -1265,991 +61,14 @@ export declare const techSpecGeneratorTools: ({
1265
61
  }[];
1266
62
  isError?: undefined;
1267
63
  }>;
1268
- } | {
1269
- name: string;
1270
- description: string;
1271
- inputSchema: {
1272
- status: z.ZodOptional<z.ZodString>;
1273
- limit: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
1274
- };
1275
- handler: (args: any) => Promise<{
1276
- content: {
1277
- type: string;
1278
- text: string;
1279
- }[];
1280
- isError?: undefined;
1281
- } | {
1282
- content: {
1283
- type: string;
1284
- text: string;
1285
- }[];
1286
- isError: boolean;
1287
- }>;
1288
64
  })[];
1289
65
  export declare const techSpecGeneratorTool: {
1290
66
  name: string;
1291
67
  description: string;
1292
68
  inputSchema: {
1293
- projectPath: z.ZodString;
1294
- techSpecData: z.ZodObject<{
1295
- projectName: z.ZodString;
1296
- moduleName: z.ZodString;
1297
- year: z.ZodOptional<z.ZodString>;
1298
- month: z.ZodOptional<z.ZodString>;
1299
- referDoc: z.ZodOptional<z.ZodString>;
1300
- serviceInterfaceList: z.ZodDefault<z.ZodArray<z.ZodObject<{
1301
- id: z.ZodString;
1302
- serviceType: z.ZodString;
1303
- serviceEnglishName: z.ZodString;
1304
- serviceChineseName: z.ZodString;
1305
- serviceDescription: z.ZodString;
1306
- interfaceDetailList: z.ZodDefault<z.ZodArray<z.ZodObject<{
1307
- id: z.ZodString;
1308
- functionDescription: z.ZodString;
1309
- serviceName: z.ZodString;
1310
- methodName: z.ZodString;
1311
- }, "strip", z.ZodTypeAny, {
1312
- id: string;
1313
- methodName: string;
1314
- serviceName: string;
1315
- functionDescription: string;
1316
- }, {
1317
- id: string;
1318
- methodName: string;
1319
- serviceName: string;
1320
- functionDescription: string;
1321
- }>, "many">>;
1322
- }, "strip", z.ZodTypeAny, {
1323
- id: string;
1324
- serviceType: string;
1325
- serviceEnglishName: string;
1326
- serviceChineseName: string;
1327
- serviceDescription: string;
1328
- interfaceDetailList: {
1329
- id: string;
1330
- methodName: string;
1331
- serviceName: string;
1332
- functionDescription: string;
1333
- }[];
1334
- }, {
1335
- id: string;
1336
- serviceType: string;
1337
- serviceEnglishName: string;
1338
- serviceChineseName: string;
1339
- serviceDescription: string;
1340
- interfaceDetailList?: {
1341
- id: string;
1342
- methodName: string;
1343
- serviceName: string;
1344
- functionDescription: string;
1345
- }[] | undefined;
1346
- }>, "many">>;
1347
- designDetailList: z.ZodDefault<z.ZodArray<z.ZodObject<{
1348
- serviceName: z.ZodString;
1349
- serviceDesc: z.ZodString;
1350
- interfaceDesignDetailList: z.ZodDefault<z.ZodArray<z.ZodObject<{
1351
- functionName: z.ZodString;
1352
- interfaceDesc: z.ZodString;
1353
- className: z.ZodString;
1354
- methodName: z.ZodString;
1355
- parameterList: z.ZodDefault<z.ZodArray<z.ZodObject<{
1356
- id: z.ZodString;
1357
- propertyType: z.ZodString;
1358
- propertyName: z.ZodString;
1359
- required: z.ZodString;
1360
- propertyDesc: z.ZodString;
1361
- }, "strip", z.ZodTypeAny, {
1362
- id: string;
1363
- propertyType: string;
1364
- propertyName: string;
1365
- required: string;
1366
- propertyDesc: string;
1367
- }, {
1368
- id: string;
1369
- propertyType: string;
1370
- propertyName: string;
1371
- required: string;
1372
- propertyDesc: string;
1373
- }>, "many">>;
1374
- returnResultList: z.ZodDefault<z.ZodArray<z.ZodObject<{
1375
- id: z.ZodString;
1376
- propertyType: z.ZodString;
1377
- propertyName: z.ZodString;
1378
- propertyDesc: z.ZodString;
1379
- }, "strip", z.ZodTypeAny, {
1380
- id: string;
1381
- propertyType: string;
1382
- propertyName: string;
1383
- propertyDesc: string;
1384
- }, {
1385
- id: string;
1386
- propertyType: string;
1387
- propertyName: string;
1388
- propertyDesc: string;
1389
- }>, "many">>;
1390
- implementLogic: z.ZodString;
1391
- }, "strip", z.ZodTypeAny, {
1392
- functionName: string;
1393
- interfaceDesc: string;
1394
- className: string;
1395
- methodName: string;
1396
- parameterList: {
1397
- id: string;
1398
- propertyType: string;
1399
- propertyName: string;
1400
- required: string;
1401
- propertyDesc: string;
1402
- }[];
1403
- returnResultList: {
1404
- id: string;
1405
- propertyType: string;
1406
- propertyName: string;
1407
- propertyDesc: string;
1408
- }[];
1409
- implementLogic: string;
1410
- }, {
1411
- functionName: string;
1412
- interfaceDesc: string;
1413
- className: string;
1414
- methodName: string;
1415
- implementLogic: string;
1416
- parameterList?: {
1417
- id: string;
1418
- propertyType: string;
1419
- propertyName: string;
1420
- required: string;
1421
- propertyDesc: string;
1422
- }[] | undefined;
1423
- returnResultList?: {
1424
- id: string;
1425
- propertyType: string;
1426
- propertyName: string;
1427
- propertyDesc: string;
1428
- }[] | undefined;
1429
- }>, "many">>;
1430
- }, "strip", z.ZodTypeAny, {
1431
- serviceName: string;
1432
- serviceDesc: string;
1433
- interfaceDesignDetailList: {
1434
- functionName: string;
1435
- interfaceDesc: string;
1436
- className: string;
1437
- methodName: string;
1438
- parameterList: {
1439
- id: string;
1440
- propertyType: string;
1441
- propertyName: string;
1442
- required: string;
1443
- propertyDesc: string;
1444
- }[];
1445
- returnResultList: {
1446
- id: string;
1447
- propertyType: string;
1448
- propertyName: string;
1449
- propertyDesc: string;
1450
- }[];
1451
- implementLogic: string;
1452
- }[];
1453
- }, {
1454
- serviceName: string;
1455
- serviceDesc: string;
1456
- interfaceDesignDetailList?: {
1457
- functionName: string;
1458
- interfaceDesc: string;
1459
- className: string;
1460
- methodName: string;
1461
- implementLogic: string;
1462
- parameterList?: {
1463
- id: string;
1464
- propertyType: string;
1465
- propertyName: string;
1466
- required: string;
1467
- propertyDesc: string;
1468
- }[] | undefined;
1469
- returnResultList?: {
1470
- id: string;
1471
- propertyType: string;
1472
- propertyName: string;
1473
- propertyDesc: string;
1474
- }[] | undefined;
1475
- }[] | undefined;
1476
- }>, "many">>;
1477
- tableInfoList: z.ZodDefault<z.ZodArray<z.ZodObject<{
1478
- id: z.ZodString;
1479
- tableName: z.ZodString;
1480
- entityName: z.ZodString;
1481
- tableDescription: z.ZodString;
1482
- tableDetailList: z.ZodDefault<z.ZodArray<z.ZodObject<{
1483
- id: z.ZodString;
1484
- fieldName: z.ZodString;
1485
- fieldType: z.ZodString;
1486
- fieldDescription: z.ZodString;
1487
- fieldLength: z.ZodString;
1488
- }, "strip", z.ZodTypeAny, {
1489
- id: string;
1490
- fieldName: string;
1491
- fieldType: string;
1492
- fieldDescription: string;
1493
- fieldLength: string;
1494
- }, {
1495
- id: string;
1496
- fieldName: string;
1497
- fieldType: string;
1498
- fieldDescription: string;
1499
- fieldLength: string;
1500
- }>, "many">>;
1501
- }, "strip", z.ZodTypeAny, {
1502
- id: string;
1503
- tableName: string;
1504
- entityName: string;
1505
- tableDescription: string;
1506
- tableDetailList: {
1507
- id: string;
1508
- fieldName: string;
1509
- fieldType: string;
1510
- fieldDescription: string;
1511
- fieldLength: string;
1512
- }[];
1513
- }, {
1514
- id: string;
1515
- tableName: string;
1516
- entityName: string;
1517
- tableDescription: string;
1518
- tableDetailList?: {
1519
- id: string;
1520
- fieldName: string;
1521
- fieldType: string;
1522
- fieldDescription: string;
1523
- fieldLength: string;
1524
- }[] | undefined;
1525
- }>, "many">>;
1526
- techSolution: z.ZodOptional<z.ZodObject<{
1527
- content: z.ZodOptional<z.ZodString>;
1528
- trafficEstimation: z.ZodOptional<z.ZodString>;
1529
- messageQueue: z.ZodOptional<z.ZodObject<{
1530
- constraint: z.ZodOptional<z.ZodString>;
1531
- useCase: z.ZodOptional<z.ZodString>;
1532
- design: z.ZodOptional<z.ZodString>;
1533
- intro: z.ZodOptional<z.ZodString>;
1534
- dataEstimation: z.ZodOptional<z.ZodString>;
1535
- sharding: z.ZodOptional<z.ZodString>;
1536
- designIdea: z.ZodOptional<z.ZodString>;
1537
- implementation: z.ZodOptional<z.ZodString>;
1538
- }, "strip", z.ZodTypeAny, {
1539
- design?: string | undefined;
1540
- constraint?: string | undefined;
1541
- useCase?: string | undefined;
1542
- intro?: string | undefined;
1543
- dataEstimation?: string | undefined;
1544
- sharding?: string | undefined;
1545
- designIdea?: string | undefined;
1546
- implementation?: string | undefined;
1547
- }, {
1548
- design?: string | undefined;
1549
- constraint?: string | undefined;
1550
- useCase?: string | undefined;
1551
- intro?: string | undefined;
1552
- dataEstimation?: string | undefined;
1553
- sharding?: string | undefined;
1554
- designIdea?: string | undefined;
1555
- implementation?: string | undefined;
1556
- }>>;
1557
- databaseSplit: z.ZodOptional<z.ZodObject<{
1558
- constraint: z.ZodOptional<z.ZodString>;
1559
- useCase: z.ZodOptional<z.ZodString>;
1560
- design: z.ZodOptional<z.ZodString>;
1561
- intro: z.ZodOptional<z.ZodString>;
1562
- dataEstimation: z.ZodOptional<z.ZodString>;
1563
- sharding: z.ZodOptional<z.ZodString>;
1564
- designIdea: z.ZodOptional<z.ZodString>;
1565
- implementation: z.ZodOptional<z.ZodString>;
1566
- }, "strip", z.ZodTypeAny, {
1567
- design?: string | undefined;
1568
- constraint?: string | undefined;
1569
- useCase?: string | undefined;
1570
- intro?: string | undefined;
1571
- dataEstimation?: string | undefined;
1572
- sharding?: string | undefined;
1573
- designIdea?: string | undefined;
1574
- implementation?: string | undefined;
1575
- }, {
1576
- design?: string | undefined;
1577
- constraint?: string | undefined;
1578
- useCase?: string | undefined;
1579
- intro?: string | undefined;
1580
- dataEstimation?: string | undefined;
1581
- sharding?: string | undefined;
1582
- designIdea?: string | undefined;
1583
- implementation?: string | undefined;
1584
- }>>;
1585
- distributedTransaction: z.ZodOptional<z.ZodObject<{
1586
- constraint: z.ZodOptional<z.ZodString>;
1587
- useCase: z.ZodOptional<z.ZodString>;
1588
- design: z.ZodOptional<z.ZodString>;
1589
- intro: z.ZodOptional<z.ZodString>;
1590
- dataEstimation: z.ZodOptional<z.ZodString>;
1591
- sharding: z.ZodOptional<z.ZodString>;
1592
- designIdea: z.ZodOptional<z.ZodString>;
1593
- implementation: z.ZodOptional<z.ZodString>;
1594
- }, "strip", z.ZodTypeAny, {
1595
- design?: string | undefined;
1596
- constraint?: string | undefined;
1597
- useCase?: string | undefined;
1598
- intro?: string | undefined;
1599
- dataEstimation?: string | undefined;
1600
- sharding?: string | undefined;
1601
- designIdea?: string | undefined;
1602
- implementation?: string | undefined;
1603
- }, {
1604
- design?: string | undefined;
1605
- constraint?: string | undefined;
1606
- useCase?: string | undefined;
1607
- intro?: string | undefined;
1608
- dataEstimation?: string | undefined;
1609
- sharding?: string | undefined;
1610
- designIdea?: string | undefined;
1611
- implementation?: string | undefined;
1612
- }>>;
1613
- distributedLock: z.ZodOptional<z.ZodObject<{
1614
- constraint: z.ZodOptional<z.ZodString>;
1615
- useCase: z.ZodOptional<z.ZodString>;
1616
- design: z.ZodOptional<z.ZodString>;
1617
- intro: z.ZodOptional<z.ZodString>;
1618
- dataEstimation: z.ZodOptional<z.ZodString>;
1619
- sharding: z.ZodOptional<z.ZodString>;
1620
- designIdea: z.ZodOptional<z.ZodString>;
1621
- implementation: z.ZodOptional<z.ZodString>;
1622
- }, "strip", z.ZodTypeAny, {
1623
- design?: string | undefined;
1624
- constraint?: string | undefined;
1625
- useCase?: string | undefined;
1626
- intro?: string | undefined;
1627
- dataEstimation?: string | undefined;
1628
- sharding?: string | undefined;
1629
- designIdea?: string | undefined;
1630
- implementation?: string | undefined;
1631
- }, {
1632
- design?: string | undefined;
1633
- constraint?: string | undefined;
1634
- useCase?: string | undefined;
1635
- intro?: string | undefined;
1636
- dataEstimation?: string | undefined;
1637
- sharding?: string | undefined;
1638
- designIdea?: string | undefined;
1639
- implementation?: string | undefined;
1640
- }>>;
1641
- scheduledTask: z.ZodOptional<z.ZodObject<{
1642
- constraint: z.ZodOptional<z.ZodString>;
1643
- useCase: z.ZodOptional<z.ZodString>;
1644
- design: z.ZodOptional<z.ZodString>;
1645
- intro: z.ZodOptional<z.ZodString>;
1646
- dataEstimation: z.ZodOptional<z.ZodString>;
1647
- sharding: z.ZodOptional<z.ZodString>;
1648
- designIdea: z.ZodOptional<z.ZodString>;
1649
- implementation: z.ZodOptional<z.ZodString>;
1650
- }, "strip", z.ZodTypeAny, {
1651
- design?: string | undefined;
1652
- constraint?: string | undefined;
1653
- useCase?: string | undefined;
1654
- intro?: string | undefined;
1655
- dataEstimation?: string | undefined;
1656
- sharding?: string | undefined;
1657
- designIdea?: string | undefined;
1658
- implementation?: string | undefined;
1659
- }, {
1660
- design?: string | undefined;
1661
- constraint?: string | undefined;
1662
- useCase?: string | undefined;
1663
- intro?: string | undefined;
1664
- dataEstimation?: string | undefined;
1665
- sharding?: string | undefined;
1666
- designIdea?: string | undefined;
1667
- implementation?: string | undefined;
1668
- }>>;
1669
- delayTask: z.ZodOptional<z.ZodObject<{
1670
- constraint: z.ZodOptional<z.ZodString>;
1671
- useCase: z.ZodOptional<z.ZodString>;
1672
- design: z.ZodOptional<z.ZodString>;
1673
- intro: z.ZodOptional<z.ZodString>;
1674
- dataEstimation: z.ZodOptional<z.ZodString>;
1675
- sharding: z.ZodOptional<z.ZodString>;
1676
- designIdea: z.ZodOptional<z.ZodString>;
1677
- implementation: z.ZodOptional<z.ZodString>;
1678
- }, "strip", z.ZodTypeAny, {
1679
- design?: string | undefined;
1680
- constraint?: string | undefined;
1681
- useCase?: string | undefined;
1682
- intro?: string | undefined;
1683
- dataEstimation?: string | undefined;
1684
- sharding?: string | undefined;
1685
- designIdea?: string | undefined;
1686
- implementation?: string | undefined;
1687
- }, {
1688
- design?: string | undefined;
1689
- constraint?: string | undefined;
1690
- useCase?: string | undefined;
1691
- intro?: string | undefined;
1692
- dataEstimation?: string | undefined;
1693
- sharding?: string | undefined;
1694
- designIdea?: string | undefined;
1695
- implementation?: string | undefined;
1696
- }>>;
1697
- cacheDesign: z.ZodOptional<z.ZodObject<{
1698
- constraint: z.ZodOptional<z.ZodString>;
1699
- useCase: z.ZodOptional<z.ZodString>;
1700
- design: z.ZodOptional<z.ZodString>;
1701
- intro: z.ZodOptional<z.ZodString>;
1702
- dataEstimation: z.ZodOptional<z.ZodString>;
1703
- sharding: z.ZodOptional<z.ZodString>;
1704
- designIdea: z.ZodOptional<z.ZodString>;
1705
- implementation: z.ZodOptional<z.ZodString>;
1706
- }, "strip", z.ZodTypeAny, {
1707
- design?: string | undefined;
1708
- constraint?: string | undefined;
1709
- useCase?: string | undefined;
1710
- intro?: string | undefined;
1711
- dataEstimation?: string | undefined;
1712
- sharding?: string | undefined;
1713
- designIdea?: string | undefined;
1714
- implementation?: string | undefined;
1715
- }, {
1716
- design?: string | undefined;
1717
- constraint?: string | undefined;
1718
- useCase?: string | undefined;
1719
- intro?: string | undefined;
1720
- dataEstimation?: string | undefined;
1721
- sharding?: string | undefined;
1722
- designIdea?: string | undefined;
1723
- implementation?: string | undefined;
1724
- }>>;
1725
- }, "strip", z.ZodTypeAny, {
1726
- content?: string | undefined;
1727
- messageQueue?: {
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
- } | undefined;
1737
- databaseSplit?: {
1738
- design?: string | undefined;
1739
- constraint?: string | undefined;
1740
- useCase?: string | undefined;
1741
- intro?: string | undefined;
1742
- dataEstimation?: string | undefined;
1743
- sharding?: string | undefined;
1744
- designIdea?: string | undefined;
1745
- implementation?: string | undefined;
1746
- } | undefined;
1747
- distributedTransaction?: {
1748
- design?: string | undefined;
1749
- constraint?: string | undefined;
1750
- useCase?: string | undefined;
1751
- intro?: string | undefined;
1752
- dataEstimation?: string | undefined;
1753
- sharding?: string | undefined;
1754
- designIdea?: string | undefined;
1755
- implementation?: string | undefined;
1756
- } | undefined;
1757
- distributedLock?: {
1758
- design?: string | undefined;
1759
- constraint?: string | undefined;
1760
- useCase?: string | undefined;
1761
- intro?: string | undefined;
1762
- dataEstimation?: string | undefined;
1763
- sharding?: string | undefined;
1764
- designIdea?: string | undefined;
1765
- implementation?: string | undefined;
1766
- } | undefined;
1767
- scheduledTask?: {
1768
- design?: string | undefined;
1769
- constraint?: string | undefined;
1770
- useCase?: string | undefined;
1771
- intro?: string | undefined;
1772
- dataEstimation?: string | undefined;
1773
- sharding?: string | undefined;
1774
- designIdea?: string | undefined;
1775
- implementation?: string | undefined;
1776
- } | undefined;
1777
- delayTask?: {
1778
- design?: string | undefined;
1779
- constraint?: string | undefined;
1780
- useCase?: string | undefined;
1781
- intro?: string | undefined;
1782
- dataEstimation?: string | undefined;
1783
- sharding?: string | undefined;
1784
- designIdea?: string | undefined;
1785
- implementation?: string | undefined;
1786
- } | undefined;
1787
- cacheDesign?: {
1788
- design?: string | undefined;
1789
- constraint?: string | undefined;
1790
- useCase?: string | undefined;
1791
- intro?: string | undefined;
1792
- dataEstimation?: string | undefined;
1793
- sharding?: string | undefined;
1794
- designIdea?: string | undefined;
1795
- implementation?: string | undefined;
1796
- } | undefined;
1797
- trafficEstimation?: string | undefined;
1798
- }, {
1799
- content?: string | undefined;
1800
- messageQueue?: {
1801
- design?: string | undefined;
1802
- constraint?: string | undefined;
1803
- useCase?: string | undefined;
1804
- intro?: string | undefined;
1805
- dataEstimation?: string | undefined;
1806
- sharding?: string | undefined;
1807
- designIdea?: string | undefined;
1808
- implementation?: string | undefined;
1809
- } | undefined;
1810
- databaseSplit?: {
1811
- design?: string | undefined;
1812
- constraint?: string | undefined;
1813
- useCase?: string | undefined;
1814
- intro?: string | undefined;
1815
- dataEstimation?: string | undefined;
1816
- sharding?: string | undefined;
1817
- designIdea?: string | undefined;
1818
- implementation?: string | undefined;
1819
- } | undefined;
1820
- distributedTransaction?: {
1821
- design?: string | undefined;
1822
- constraint?: string | undefined;
1823
- useCase?: string | undefined;
1824
- intro?: string | undefined;
1825
- dataEstimation?: string | undefined;
1826
- sharding?: string | undefined;
1827
- designIdea?: string | undefined;
1828
- implementation?: string | undefined;
1829
- } | undefined;
1830
- distributedLock?: {
1831
- design?: string | undefined;
1832
- constraint?: string | undefined;
1833
- useCase?: string | undefined;
1834
- intro?: string | undefined;
1835
- dataEstimation?: string | undefined;
1836
- sharding?: string | undefined;
1837
- designIdea?: string | undefined;
1838
- implementation?: string | undefined;
1839
- } | undefined;
1840
- scheduledTask?: {
1841
- design?: string | undefined;
1842
- constraint?: string | undefined;
1843
- useCase?: string | undefined;
1844
- intro?: string | undefined;
1845
- dataEstimation?: string | undefined;
1846
- sharding?: string | undefined;
1847
- designIdea?: string | undefined;
1848
- implementation?: string | undefined;
1849
- } | undefined;
1850
- delayTask?: {
1851
- design?: string | undefined;
1852
- constraint?: string | undefined;
1853
- useCase?: string | undefined;
1854
- intro?: string | undefined;
1855
- dataEstimation?: string | undefined;
1856
- sharding?: string | undefined;
1857
- designIdea?: string | undefined;
1858
- implementation?: string | undefined;
1859
- } | undefined;
1860
- cacheDesign?: {
1861
- design?: string | undefined;
1862
- constraint?: string | undefined;
1863
- useCase?: string | undefined;
1864
- intro?: string | undefined;
1865
- dataEstimation?: string | undefined;
1866
- sharding?: string | undefined;
1867
- designIdea?: string | undefined;
1868
- implementation?: string | undefined;
1869
- } | undefined;
1870
- trafficEstimation?: string | undefined;
1871
- }>>;
1872
- businessException: z.ZodOptional<z.ZodObject<{
1873
- content: z.ZodString;
1874
- }, "strip", z.ZodTypeAny, {
1875
- content: string;
1876
- }, {
1877
- content: string;
1878
- }>>;
1879
- appendix: z.ZodOptional<z.ZodObject<{
1880
- content: z.ZodOptional<z.ZodString>;
1881
- exceptionCodeList: z.ZodOptional<z.ZodArray<z.ZodObject<{
1882
- id: z.ZodOptional<z.ZodString>;
1883
- exceptionCode: z.ZodString;
1884
- exceptionDescription: z.ZodString;
1885
- }, "strip", z.ZodTypeAny, {
1886
- exceptionCode: string;
1887
- exceptionDescription: string;
1888
- id?: string | undefined;
1889
- }, {
1890
- exceptionCode: string;
1891
- exceptionDescription: string;
1892
- id?: string | undefined;
1893
- }>, "many">>;
1894
- codeValueList: z.ZodOptional<z.ZodArray<z.ZodObject<{
1895
- id: z.ZodOptional<z.ZodString>;
1896
- propertyName: z.ZodString;
1897
- codeValue: z.ZodString;
1898
- }, "strip", z.ZodTypeAny, {
1899
- propertyName: string;
1900
- codeValue: string;
1901
- id?: string | undefined;
1902
- }, {
1903
- propertyName: string;
1904
- codeValue: string;
1905
- id?: string | undefined;
1906
- }>, "many">>;
1907
- }, "strip", z.ZodTypeAny, {
1908
- content?: string | undefined;
1909
- exceptionCodeList?: {
1910
- exceptionCode: string;
1911
- exceptionDescription: string;
1912
- id?: string | undefined;
1913
- }[] | undefined;
1914
- codeValueList?: {
1915
- propertyName: string;
1916
- codeValue: string;
1917
- id?: string | undefined;
1918
- }[] | undefined;
1919
- }, {
1920
- content?: string | undefined;
1921
- exceptionCodeList?: {
1922
- exceptionCode: string;
1923
- exceptionDescription: string;
1924
- id?: string | undefined;
1925
- }[] | undefined;
1926
- codeValueList?: {
1927
- propertyName: string;
1928
- codeValue: string;
1929
- id?: string | undefined;
1930
- }[] | undefined;
1931
- }>>;
1932
- dtoDefinitions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
1933
- name: z.ZodOptional<z.ZodString>;
1934
- type: z.ZodOptional<z.ZodString>;
1935
- required: z.ZodOptional<z.ZodString>;
1936
- description: z.ZodOptional<z.ZodString>;
1937
- }, "strip", z.ZodTypeAny, {
1938
- type?: string | undefined;
1939
- name?: string | undefined;
1940
- description?: string | undefined;
1941
- required?: string | undefined;
1942
- }, {
1943
- type?: string | undefined;
1944
- name?: string | undefined;
1945
- description?: string | undefined;
1946
- required?: string | undefined;
1947
- }>, "many">>>;
1948
- }, "strip", z.ZodTypeAny, {
1949
- projectName: string;
1950
- moduleName: string;
1951
- serviceInterfaceList: {
1952
- id: string;
1953
- serviceType: string;
1954
- serviceEnglishName: string;
1955
- serviceChineseName: string;
1956
- serviceDescription: string;
1957
- interfaceDetailList: {
1958
- id: string;
1959
- methodName: string;
1960
- serviceName: string;
1961
- functionDescription: string;
1962
- }[];
1963
- }[];
1964
- designDetailList: {
1965
- serviceName: string;
1966
- serviceDesc: string;
1967
- interfaceDesignDetailList: {
1968
- functionName: string;
1969
- interfaceDesc: string;
1970
- className: string;
1971
- methodName: string;
1972
- parameterList: {
1973
- id: string;
1974
- propertyType: string;
1975
- propertyName: string;
1976
- required: string;
1977
- propertyDesc: string;
1978
- }[];
1979
- returnResultList: {
1980
- id: string;
1981
- propertyType: string;
1982
- propertyName: string;
1983
- propertyDesc: string;
1984
- }[];
1985
- implementLogic: string;
1986
- }[];
1987
- }[];
1988
- tableInfoList: {
1989
- id: string;
1990
- tableName: string;
1991
- entityName: string;
1992
- tableDescription: string;
1993
- tableDetailList: {
1994
- id: string;
1995
- fieldName: string;
1996
- fieldType: string;
1997
- fieldDescription: string;
1998
- fieldLength: string;
1999
- }[];
2000
- }[];
2001
- techSolution?: {
2002
- content?: string | undefined;
2003
- messageQueue?: {
2004
- design?: string | undefined;
2005
- constraint?: string | undefined;
2006
- useCase?: string | undefined;
2007
- intro?: string | undefined;
2008
- dataEstimation?: string | undefined;
2009
- sharding?: string | undefined;
2010
- designIdea?: string | undefined;
2011
- implementation?: string | undefined;
2012
- } | undefined;
2013
- databaseSplit?: {
2014
- design?: string | undefined;
2015
- constraint?: string | undefined;
2016
- useCase?: string | undefined;
2017
- intro?: string | undefined;
2018
- dataEstimation?: string | undefined;
2019
- sharding?: string | undefined;
2020
- designIdea?: string | undefined;
2021
- implementation?: string | undefined;
2022
- } | undefined;
2023
- distributedTransaction?: {
2024
- design?: string | undefined;
2025
- constraint?: string | undefined;
2026
- useCase?: string | undefined;
2027
- intro?: string | undefined;
2028
- dataEstimation?: string | undefined;
2029
- sharding?: string | undefined;
2030
- designIdea?: string | undefined;
2031
- implementation?: string | undefined;
2032
- } | undefined;
2033
- distributedLock?: {
2034
- design?: string | undefined;
2035
- constraint?: string | undefined;
2036
- useCase?: string | undefined;
2037
- intro?: string | undefined;
2038
- dataEstimation?: string | undefined;
2039
- sharding?: string | undefined;
2040
- designIdea?: string | undefined;
2041
- implementation?: string | undefined;
2042
- } | undefined;
2043
- scheduledTask?: {
2044
- design?: string | undefined;
2045
- constraint?: string | undefined;
2046
- useCase?: string | undefined;
2047
- intro?: string | undefined;
2048
- dataEstimation?: string | undefined;
2049
- sharding?: string | undefined;
2050
- designIdea?: string | undefined;
2051
- implementation?: string | undefined;
2052
- } | undefined;
2053
- delayTask?: {
2054
- design?: string | undefined;
2055
- constraint?: string | undefined;
2056
- useCase?: string | undefined;
2057
- intro?: string | undefined;
2058
- dataEstimation?: string | undefined;
2059
- sharding?: string | undefined;
2060
- designIdea?: string | undefined;
2061
- implementation?: string | undefined;
2062
- } | undefined;
2063
- cacheDesign?: {
2064
- design?: string | undefined;
2065
- constraint?: string | undefined;
2066
- useCase?: string | undefined;
2067
- intro?: string | undefined;
2068
- dataEstimation?: string | undefined;
2069
- sharding?: string | undefined;
2070
- designIdea?: string | undefined;
2071
- implementation?: string | undefined;
2072
- } | undefined;
2073
- trafficEstimation?: string | undefined;
2074
- } | undefined;
2075
- year?: string | undefined;
2076
- month?: string | undefined;
2077
- referDoc?: string | undefined;
2078
- appendix?: {
2079
- content?: string | undefined;
2080
- exceptionCodeList?: {
2081
- exceptionCode: string;
2082
- exceptionDescription: string;
2083
- id?: string | undefined;
2084
- }[] | undefined;
2085
- codeValueList?: {
2086
- propertyName: string;
2087
- codeValue: string;
2088
- id?: string | undefined;
2089
- }[] | undefined;
2090
- } | undefined;
2091
- businessException?: {
2092
- content: string;
2093
- } | undefined;
2094
- dtoDefinitions?: Record<string, {
2095
- type?: string | undefined;
2096
- name?: string | undefined;
2097
- description?: string | undefined;
2098
- required?: string | undefined;
2099
- }[]> | undefined;
2100
- }, {
2101
- projectName: string;
2102
- moduleName: string;
2103
- techSolution?: {
2104
- content?: string | undefined;
2105
- messageQueue?: {
2106
- design?: string | undefined;
2107
- constraint?: string | undefined;
2108
- useCase?: string | undefined;
2109
- intro?: string | undefined;
2110
- dataEstimation?: string | undefined;
2111
- sharding?: string | undefined;
2112
- designIdea?: string | undefined;
2113
- implementation?: string | undefined;
2114
- } | undefined;
2115
- databaseSplit?: {
2116
- design?: string | undefined;
2117
- constraint?: string | undefined;
2118
- useCase?: string | undefined;
2119
- intro?: string | undefined;
2120
- dataEstimation?: string | undefined;
2121
- sharding?: string | undefined;
2122
- designIdea?: string | undefined;
2123
- implementation?: string | undefined;
2124
- } | undefined;
2125
- distributedTransaction?: {
2126
- design?: string | undefined;
2127
- constraint?: string | undefined;
2128
- useCase?: string | undefined;
2129
- intro?: string | undefined;
2130
- dataEstimation?: string | undefined;
2131
- sharding?: string | undefined;
2132
- designIdea?: string | undefined;
2133
- implementation?: string | undefined;
2134
- } | undefined;
2135
- distributedLock?: {
2136
- design?: string | undefined;
2137
- constraint?: string | undefined;
2138
- useCase?: string | undefined;
2139
- intro?: string | undefined;
2140
- dataEstimation?: string | undefined;
2141
- sharding?: string | undefined;
2142
- designIdea?: string | undefined;
2143
- implementation?: string | undefined;
2144
- } | undefined;
2145
- scheduledTask?: {
2146
- design?: string | undefined;
2147
- constraint?: string | undefined;
2148
- useCase?: string | undefined;
2149
- intro?: string | undefined;
2150
- dataEstimation?: string | undefined;
2151
- sharding?: string | undefined;
2152
- designIdea?: string | undefined;
2153
- implementation?: string | undefined;
2154
- } | undefined;
2155
- delayTask?: {
2156
- design?: string | undefined;
2157
- constraint?: string | undefined;
2158
- useCase?: string | undefined;
2159
- intro?: string | undefined;
2160
- dataEstimation?: string | undefined;
2161
- sharding?: string | undefined;
2162
- designIdea?: string | undefined;
2163
- implementation?: string | undefined;
2164
- } | undefined;
2165
- cacheDesign?: {
2166
- design?: string | undefined;
2167
- constraint?: string | undefined;
2168
- useCase?: string | undefined;
2169
- intro?: string | undefined;
2170
- dataEstimation?: string | undefined;
2171
- sharding?: string | undefined;
2172
- designIdea?: string | undefined;
2173
- implementation?: string | undefined;
2174
- } | undefined;
2175
- trafficEstimation?: string | undefined;
2176
- } | undefined;
2177
- year?: string | undefined;
2178
- month?: string | undefined;
2179
- referDoc?: string | undefined;
2180
- serviceInterfaceList?: {
2181
- id: string;
2182
- serviceType: string;
2183
- serviceEnglishName: string;
2184
- serviceChineseName: string;
2185
- serviceDescription: string;
2186
- interfaceDetailList?: {
2187
- id: string;
2188
- methodName: string;
2189
- serviceName: string;
2190
- functionDescription: string;
2191
- }[] | undefined;
2192
- }[] | undefined;
2193
- designDetailList?: {
2194
- serviceName: string;
2195
- serviceDesc: string;
2196
- interfaceDesignDetailList?: {
2197
- functionName: string;
2198
- interfaceDesc: string;
2199
- className: string;
2200
- methodName: string;
2201
- implementLogic: string;
2202
- parameterList?: {
2203
- id: string;
2204
- propertyType: string;
2205
- propertyName: string;
2206
- required: string;
2207
- propertyDesc: string;
2208
- }[] | undefined;
2209
- returnResultList?: {
2210
- id: string;
2211
- propertyType: string;
2212
- propertyName: string;
2213
- propertyDesc: string;
2214
- }[] | undefined;
2215
- }[] | undefined;
2216
- }[] | undefined;
2217
- tableInfoList?: {
2218
- id: string;
2219
- tableName: string;
2220
- entityName: string;
2221
- tableDescription: string;
2222
- tableDetailList?: {
2223
- id: string;
2224
- fieldName: string;
2225
- fieldType: string;
2226
- fieldDescription: string;
2227
- fieldLength: string;
2228
- }[] | undefined;
2229
- }[] | undefined;
2230
- appendix?: {
2231
- content?: string | undefined;
2232
- exceptionCodeList?: {
2233
- exceptionCode: string;
2234
- exceptionDescription: string;
2235
- id?: string | undefined;
2236
- }[] | undefined;
2237
- codeValueList?: {
2238
- propertyName: string;
2239
- codeValue: string;
2240
- id?: string | undefined;
2241
- }[] | undefined;
2242
- } | undefined;
2243
- businessException?: {
2244
- content: string;
2245
- } | undefined;
2246
- dtoDefinitions?: Record<string, {
2247
- type?: string | undefined;
2248
- name?: string | undefined;
2249
- description?: string | undefined;
2250
- required?: string | undefined;
2251
- }[]> | undefined;
2252
- }>;
69
+ projectPath: import("zod").ZodString;
70
+ projectName: import("zod").ZodString;
71
+ moduleName: import("zod").ZodString;
2253
72
  };
2254
73
  handler: (args: any) => Promise<{
2255
74
  content: {