@nestr/mcp 0.1.35 → 0.1.36

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.
@@ -171,6 +171,23 @@ export declare const schemas: {
171
171
  nestId: string;
172
172
  body: string;
173
173
  }>;
174
+ updateComment: z.ZodObject<{
175
+ commentId: z.ZodString;
176
+ body: z.ZodString;
177
+ }, "strip", z.ZodTypeAny, {
178
+ body: string;
179
+ commentId: string;
180
+ }, {
181
+ body: string;
182
+ commentId: string;
183
+ }>;
184
+ deleteComment: z.ZodObject<{
185
+ commentId: z.ZodString;
186
+ }, "strip", z.ZodTypeAny, {
187
+ commentId: string;
188
+ }, {
189
+ commentId: string;
190
+ }>;
174
191
  listCircles: z.ZodObject<{
175
192
  workspaceId: z.ZodString;
176
193
  limit: z.ZodOptional<z.ZodNumber>;
@@ -301,6 +318,22 @@ export declare const schemas: {
301
318
  userId: string;
302
319
  workspaceId: string;
303
320
  }>;
321
+ addWorkspaceUser: z.ZodObject<{
322
+ workspaceId: z.ZodString;
323
+ username: z.ZodString;
324
+ fullName: z.ZodOptional<z.ZodString>;
325
+ language: z.ZodOptional<z.ZodString>;
326
+ }, "strip", z.ZodTypeAny, {
327
+ username: string;
328
+ workspaceId: string;
329
+ fullName?: string | undefined;
330
+ language?: string | undefined;
331
+ }, {
332
+ username: string;
333
+ workspaceId: string;
334
+ fullName?: string | undefined;
335
+ language?: string | undefined;
336
+ }>;
304
337
  getLabel: z.ZodObject<{
305
338
  workspaceId: z.ZodString;
306
339
  labelId: z.ZodString;
@@ -441,6 +474,243 @@ export declare const schemas: {
441
474
  nestIds: string[];
442
475
  }>;
443
476
  getDailyPlan: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;
477
+ getMe: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;
478
+ listMyTensions: z.ZodObject<{
479
+ context: z.ZodOptional<z.ZodString>;
480
+ }, "strip", z.ZodTypeAny, {
481
+ context?: string | undefined;
482
+ }, {
483
+ context?: string | undefined;
484
+ }>;
485
+ listTensionsAwaitingConsent: z.ZodObject<{
486
+ context: z.ZodOptional<z.ZodString>;
487
+ }, "strip", z.ZodTypeAny, {
488
+ context?: string | undefined;
489
+ }, {
490
+ context?: string | undefined;
491
+ }>;
492
+ createTension: z.ZodObject<{
493
+ nestId: z.ZodString;
494
+ title: z.ZodString;
495
+ description: z.ZodOptional<z.ZodString>;
496
+ feeling: z.ZodOptional<z.ZodString>;
497
+ needs: z.ZodOptional<z.ZodString>;
498
+ }, "strip", z.ZodTypeAny, {
499
+ title: string;
500
+ nestId: string;
501
+ description?: string | undefined;
502
+ feeling?: string | undefined;
503
+ needs?: string | undefined;
504
+ }, {
505
+ title: string;
506
+ nestId: string;
507
+ description?: string | undefined;
508
+ feeling?: string | undefined;
509
+ needs?: string | undefined;
510
+ }>;
511
+ getTension: z.ZodObject<{
512
+ nestId: z.ZodString;
513
+ tensionId: z.ZodString;
514
+ }, "strip", z.ZodTypeAny, {
515
+ nestId: string;
516
+ tensionId: string;
517
+ }, {
518
+ nestId: string;
519
+ tensionId: string;
520
+ }>;
521
+ listTensions: z.ZodObject<{
522
+ nestId: z.ZodString;
523
+ search: z.ZodOptional<z.ZodString>;
524
+ limit: z.ZodOptional<z.ZodNumber>;
525
+ order: z.ZodOptional<z.ZodString>;
526
+ }, "strip", z.ZodTypeAny, {
527
+ nestId: string;
528
+ search?: string | undefined;
529
+ limit?: number | undefined;
530
+ order?: string | undefined;
531
+ }, {
532
+ nestId: string;
533
+ search?: string | undefined;
534
+ limit?: number | undefined;
535
+ order?: string | undefined;
536
+ }>;
537
+ updateTension: z.ZodObject<{
538
+ nestId: z.ZodString;
539
+ tensionId: z.ZodString;
540
+ title: z.ZodOptional<z.ZodString>;
541
+ description: z.ZodOptional<z.ZodString>;
542
+ feeling: z.ZodOptional<z.ZodString>;
543
+ needs: z.ZodOptional<z.ZodString>;
544
+ }, "strip", z.ZodTypeAny, {
545
+ nestId: string;
546
+ tensionId: string;
547
+ title?: string | undefined;
548
+ description?: string | undefined;
549
+ feeling?: string | undefined;
550
+ needs?: string | undefined;
551
+ }, {
552
+ nestId: string;
553
+ tensionId: string;
554
+ title?: string | undefined;
555
+ description?: string | undefined;
556
+ feeling?: string | undefined;
557
+ needs?: string | undefined;
558
+ }>;
559
+ deleteTension: z.ZodObject<{
560
+ nestId: z.ZodString;
561
+ tensionId: z.ZodString;
562
+ }, "strip", z.ZodTypeAny, {
563
+ nestId: string;
564
+ tensionId: string;
565
+ }, {
566
+ nestId: string;
567
+ tensionId: string;
568
+ }>;
569
+ getTensionParts: z.ZodObject<{
570
+ nestId: z.ZodString;
571
+ tensionId: z.ZodString;
572
+ }, "strip", z.ZodTypeAny, {
573
+ nestId: string;
574
+ tensionId: string;
575
+ }, {
576
+ nestId: string;
577
+ tensionId: string;
578
+ }>;
579
+ addTensionPart: z.ZodObject<{
580
+ nestId: z.ZodString;
581
+ tensionId: z.ZodString;
582
+ _id: z.ZodOptional<z.ZodString>;
583
+ title: z.ZodOptional<z.ZodString>;
584
+ labels: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
585
+ purpose: z.ZodOptional<z.ZodString>;
586
+ description: z.ZodOptional<z.ZodString>;
587
+ parentId: z.ZodOptional<z.ZodString>;
588
+ users: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
589
+ due: z.ZodOptional<z.ZodString>;
590
+ accountabilities: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
591
+ domains: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
592
+ removeNest: z.ZodOptional<z.ZodBoolean>;
593
+ }, "strip", z.ZodTypeAny, {
594
+ nestId: string;
595
+ tensionId: string;
596
+ _id?: string | undefined;
597
+ title?: string | undefined;
598
+ purpose?: string | undefined;
599
+ description?: string | undefined;
600
+ parentId?: string | undefined;
601
+ labels?: string[] | undefined;
602
+ due?: string | undefined;
603
+ users?: string[] | undefined;
604
+ accountabilities?: string[] | undefined;
605
+ domains?: string[] | undefined;
606
+ removeNest?: boolean | undefined;
607
+ }, {
608
+ nestId: string;
609
+ tensionId: string;
610
+ _id?: string | undefined;
611
+ title?: string | undefined;
612
+ purpose?: string | undefined;
613
+ description?: string | undefined;
614
+ parentId?: string | undefined;
615
+ labels?: string[] | undefined;
616
+ due?: string | undefined;
617
+ users?: string[] | undefined;
618
+ accountabilities?: string[] | undefined;
619
+ domains?: string[] | undefined;
620
+ removeNest?: boolean | undefined;
621
+ }>;
622
+ modifyTensionPart: z.ZodObject<{
623
+ nestId: z.ZodString;
624
+ tensionId: z.ZodString;
625
+ partId: z.ZodString;
626
+ title: z.ZodOptional<z.ZodString>;
627
+ purpose: z.ZodOptional<z.ZodString>;
628
+ description: z.ZodOptional<z.ZodString>;
629
+ labels: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
630
+ parentId: z.ZodOptional<z.ZodString>;
631
+ users: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
632
+ due: z.ZodOptional<z.ZodString>;
633
+ removeNest: z.ZodOptional<z.ZodBoolean>;
634
+ accountabilities: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
635
+ domains: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
636
+ }, "strip", z.ZodTypeAny, {
637
+ nestId: string;
638
+ tensionId: string;
639
+ partId: string;
640
+ title?: string | undefined;
641
+ purpose?: string | undefined;
642
+ description?: string | undefined;
643
+ parentId?: string | undefined;
644
+ labels?: string[] | undefined;
645
+ due?: string | undefined;
646
+ users?: string[] | undefined;
647
+ accountabilities?: string[] | undefined;
648
+ domains?: string[] | undefined;
649
+ removeNest?: boolean | undefined;
650
+ }, {
651
+ nestId: string;
652
+ tensionId: string;
653
+ partId: string;
654
+ title?: string | undefined;
655
+ purpose?: string | undefined;
656
+ description?: string | undefined;
657
+ parentId?: string | undefined;
658
+ labels?: string[] | undefined;
659
+ due?: string | undefined;
660
+ users?: string[] | undefined;
661
+ accountabilities?: string[] | undefined;
662
+ domains?: string[] | undefined;
663
+ removeNest?: boolean | undefined;
664
+ }>;
665
+ removeTensionPart: z.ZodObject<{
666
+ nestId: z.ZodString;
667
+ tensionId: z.ZodString;
668
+ partId: z.ZodString;
669
+ }, "strip", z.ZodTypeAny, {
670
+ nestId: string;
671
+ tensionId: string;
672
+ partId: string;
673
+ }, {
674
+ nestId: string;
675
+ tensionId: string;
676
+ partId: string;
677
+ }>;
678
+ getTensionChanges: z.ZodObject<{
679
+ nestId: z.ZodString;
680
+ tensionId: z.ZodString;
681
+ partId: z.ZodString;
682
+ }, "strip", z.ZodTypeAny, {
683
+ nestId: string;
684
+ tensionId: string;
685
+ partId: string;
686
+ }, {
687
+ nestId: string;
688
+ tensionId: string;
689
+ partId: string;
690
+ }>;
691
+ getTensionStatus: z.ZodObject<{
692
+ nestId: z.ZodString;
693
+ tensionId: z.ZodString;
694
+ }, "strip", z.ZodTypeAny, {
695
+ nestId: string;
696
+ tensionId: string;
697
+ }, {
698
+ nestId: string;
699
+ tensionId: string;
700
+ }>;
701
+ updateTensionStatus: z.ZodObject<{
702
+ nestId: z.ZodString;
703
+ tensionId: z.ZodString;
704
+ status: z.ZodEnum<["proposed", "draft"]>;
705
+ }, "strip", z.ZodTypeAny, {
706
+ status: "draft" | "proposed";
707
+ nestId: string;
708
+ tensionId: string;
709
+ }, {
710
+ status: "draft" | "proposed";
711
+ nestId: string;
712
+ tensionId: string;
713
+ }>;
444
714
  };
445
715
  export declare const toolDefinitions: ({
446
716
  name: string;
@@ -485,10 +755,14 @@ export declare const toolDefinitions: ({
485
755
  due?: undefined;
486
756
  completed?: undefined;
487
757
  body?: undefined;
758
+ commentId?: undefined;
488
759
  circleId?: undefined;
489
760
  includeSubCircles?: undefined;
490
761
  depth?: undefined;
491
762
  userId?: undefined;
763
+ username?: undefined;
764
+ fullName?: undefined;
765
+ language?: undefined;
492
766
  labelId?: undefined;
493
767
  metricId?: undefined;
494
768
  from?: undefined;
@@ -499,6 +773,17 @@ export declare const toolDefinitions: ({
499
773
  relatedNestId?: undefined;
500
774
  color?: undefined;
501
775
  icon?: undefined;
776
+ context?: undefined;
777
+ feeling?: undefined;
778
+ needs?: undefined;
779
+ tensionId?: undefined;
780
+ order?: undefined;
781
+ _id?: undefined;
782
+ accountabilities?: undefined;
783
+ domains?: undefined;
784
+ removeNest?: undefined;
785
+ partId?: undefined;
786
+ status?: undefined;
502
787
  };
503
788
  required?: undefined;
504
789
  };
@@ -540,10 +825,14 @@ export declare const toolDefinitions: ({
540
825
  due?: undefined;
541
826
  completed?: undefined;
542
827
  body?: undefined;
828
+ commentId?: undefined;
543
829
  circleId?: undefined;
544
830
  includeSubCircles?: undefined;
545
831
  depth?: undefined;
546
832
  userId?: undefined;
833
+ username?: undefined;
834
+ fullName?: undefined;
835
+ language?: undefined;
547
836
  labelId?: undefined;
548
837
  metricId?: undefined;
549
838
  from?: undefined;
@@ -554,6 +843,17 @@ export declare const toolDefinitions: ({
554
843
  relatedNestId?: undefined;
555
844
  color?: undefined;
556
845
  icon?: undefined;
846
+ context?: undefined;
847
+ feeling?: undefined;
848
+ needs?: undefined;
849
+ tensionId?: undefined;
850
+ order?: undefined;
851
+ _id?: undefined;
852
+ accountabilities?: undefined;
853
+ domains?: undefined;
854
+ removeNest?: undefined;
855
+ partId?: undefined;
856
+ status?: undefined;
557
857
  };
558
858
  required: string[];
559
859
  };
@@ -618,10 +918,14 @@ export declare const toolDefinitions: ({
618
918
  due?: undefined;
619
919
  completed?: undefined;
620
920
  body?: undefined;
921
+ commentId?: undefined;
621
922
  circleId?: undefined;
622
923
  includeSubCircles?: undefined;
623
924
  depth?: undefined;
624
925
  userId?: undefined;
926
+ username?: undefined;
927
+ fullName?: undefined;
928
+ language?: undefined;
625
929
  labelId?: undefined;
626
930
  metricId?: undefined;
627
931
  from?: undefined;
@@ -632,6 +936,17 @@ export declare const toolDefinitions: ({
632
936
  relatedNestId?: undefined;
633
937
  color?: undefined;
634
938
  icon?: undefined;
939
+ context?: undefined;
940
+ feeling?: undefined;
941
+ needs?: undefined;
942
+ tensionId?: undefined;
943
+ order?: undefined;
944
+ _id?: undefined;
945
+ accountabilities?: undefined;
946
+ domains?: undefined;
947
+ removeNest?: undefined;
948
+ partId?: undefined;
949
+ status?: undefined;
635
950
  };
636
951
  required: string[];
637
952
  };
@@ -685,10 +1000,14 @@ export declare const toolDefinitions: ({
685
1000
  due?: undefined;
686
1001
  completed?: undefined;
687
1002
  body?: undefined;
1003
+ commentId?: undefined;
688
1004
  circleId?: undefined;
689
1005
  includeSubCircles?: undefined;
690
1006
  depth?: undefined;
691
1007
  userId?: undefined;
1008
+ username?: undefined;
1009
+ fullName?: undefined;
1010
+ language?: undefined;
692
1011
  labelId?: undefined;
693
1012
  metricId?: undefined;
694
1013
  from?: undefined;
@@ -699,6 +1018,17 @@ export declare const toolDefinitions: ({
699
1018
  relatedNestId?: undefined;
700
1019
  color?: undefined;
701
1020
  icon?: undefined;
1021
+ context?: undefined;
1022
+ feeling?: undefined;
1023
+ needs?: undefined;
1024
+ tensionId?: undefined;
1025
+ order?: undefined;
1026
+ _id?: undefined;
1027
+ accountabilities?: undefined;
1028
+ domains?: undefined;
1029
+ removeNest?: undefined;
1030
+ partId?: undefined;
1031
+ status?: undefined;
702
1032
  };
703
1033
  required: string[];
704
1034
  };
@@ -747,10 +1077,14 @@ export declare const toolDefinitions: ({
747
1077
  due?: undefined;
748
1078
  completed?: undefined;
749
1079
  body?: undefined;
1080
+ commentId?: undefined;
750
1081
  circleId?: undefined;
751
1082
  includeSubCircles?: undefined;
752
1083
  depth?: undefined;
753
1084
  userId?: undefined;
1085
+ username?: undefined;
1086
+ fullName?: undefined;
1087
+ language?: undefined;
754
1088
  labelId?: undefined;
755
1089
  metricId?: undefined;
756
1090
  from?: undefined;
@@ -761,6 +1095,17 @@ export declare const toolDefinitions: ({
761
1095
  relatedNestId?: undefined;
762
1096
  color?: undefined;
763
1097
  icon?: undefined;
1098
+ context?: undefined;
1099
+ feeling?: undefined;
1100
+ needs?: undefined;
1101
+ tensionId?: undefined;
1102
+ order?: undefined;
1103
+ _id?: undefined;
1104
+ accountabilities?: undefined;
1105
+ domains?: undefined;
1106
+ removeNest?: undefined;
1107
+ partId?: undefined;
1108
+ status?: undefined;
764
1109
  };
765
1110
  required: string[];
766
1111
  };
@@ -811,10 +1156,14 @@ export declare const toolDefinitions: ({
811
1156
  due?: undefined;
812
1157
  completed?: undefined;
813
1158
  body?: undefined;
1159
+ commentId?: undefined;
814
1160
  circleId?: undefined;
815
1161
  includeSubCircles?: undefined;
816
1162
  depth?: undefined;
817
1163
  userId?: undefined;
1164
+ username?: undefined;
1165
+ fullName?: undefined;
1166
+ language?: undefined;
818
1167
  labelId?: undefined;
819
1168
  metricId?: undefined;
820
1169
  from?: undefined;
@@ -825,6 +1174,17 @@ export declare const toolDefinitions: ({
825
1174
  relatedNestId?: undefined;
826
1175
  color?: undefined;
827
1176
  icon?: undefined;
1177
+ context?: undefined;
1178
+ feeling?: undefined;
1179
+ needs?: undefined;
1180
+ tensionId?: undefined;
1181
+ order?: undefined;
1182
+ _id?: undefined;
1183
+ accountabilities?: undefined;
1184
+ domains?: undefined;
1185
+ removeNest?: undefined;
1186
+ partId?: undefined;
1187
+ status?: undefined;
828
1188
  };
829
1189
  required: string[];
830
1190
  };
@@ -888,10 +1248,14 @@ export declare const toolDefinitions: ({
888
1248
  due?: undefined;
889
1249
  completed?: undefined;
890
1250
  body?: undefined;
1251
+ commentId?: undefined;
891
1252
  circleId?: undefined;
892
1253
  includeSubCircles?: undefined;
893
1254
  depth?: undefined;
894
1255
  userId?: undefined;
1256
+ username?: undefined;
1257
+ fullName?: undefined;
1258
+ language?: undefined;
895
1259
  labelId?: undefined;
896
1260
  metricId?: undefined;
897
1261
  from?: undefined;
@@ -902,6 +1266,17 @@ export declare const toolDefinitions: ({
902
1266
  relatedNestId?: undefined;
903
1267
  color?: undefined;
904
1268
  icon?: undefined;
1269
+ context?: undefined;
1270
+ feeling?: undefined;
1271
+ needs?: undefined;
1272
+ tensionId?: undefined;
1273
+ order?: undefined;
1274
+ _id?: undefined;
1275
+ accountabilities?: undefined;
1276
+ domains?: undefined;
1277
+ removeNest?: undefined;
1278
+ partId?: undefined;
1279
+ status?: undefined;
905
1280
  };
906
1281
  required: string[];
907
1282
  };
@@ -976,10 +1351,14 @@ export declare const toolDefinitions: ({
976
1351
  _listTitle?: undefined;
977
1352
  fieldsMetaData?: undefined;
978
1353
  body?: undefined;
1354
+ commentId?: undefined;
979
1355
  circleId?: undefined;
980
1356
  includeSubCircles?: undefined;
981
1357
  depth?: undefined;
982
1358
  userId?: undefined;
1359
+ username?: undefined;
1360
+ fullName?: undefined;
1361
+ language?: undefined;
983
1362
  labelId?: undefined;
984
1363
  metricId?: undefined;
985
1364
  from?: undefined;
@@ -990,6 +1369,17 @@ export declare const toolDefinitions: ({
990
1369
  relatedNestId?: undefined;
991
1370
  color?: undefined;
992
1371
  icon?: undefined;
1372
+ context?: undefined;
1373
+ feeling?: undefined;
1374
+ needs?: undefined;
1375
+ tensionId?: undefined;
1376
+ order?: undefined;
1377
+ _id?: undefined;
1378
+ accountabilities?: undefined;
1379
+ domains?: undefined;
1380
+ removeNest?: undefined;
1381
+ partId?: undefined;
1382
+ status?: undefined;
993
1383
  };
994
1384
  required: string[];
995
1385
  };
@@ -1028,10 +1418,14 @@ export declare const toolDefinitions: ({
1028
1418
  due?: undefined;
1029
1419
  completed?: undefined;
1030
1420
  body?: undefined;
1421
+ commentId?: undefined;
1031
1422
  circleId?: undefined;
1032
1423
  includeSubCircles?: undefined;
1033
1424
  depth?: undefined;
1034
1425
  userId?: undefined;
1426
+ username?: undefined;
1427
+ fullName?: undefined;
1428
+ language?: undefined;
1035
1429
  labelId?: undefined;
1036
1430
  metricId?: undefined;
1037
1431
  from?: undefined;
@@ -1042,6 +1436,17 @@ export declare const toolDefinitions: ({
1042
1436
  relatedNestId?: undefined;
1043
1437
  color?: undefined;
1044
1438
  icon?: undefined;
1439
+ context?: undefined;
1440
+ feeling?: undefined;
1441
+ needs?: undefined;
1442
+ tensionId?: undefined;
1443
+ order?: undefined;
1444
+ _id?: undefined;
1445
+ accountabilities?: undefined;
1446
+ domains?: undefined;
1447
+ removeNest?: undefined;
1448
+ partId?: undefined;
1449
+ status?: undefined;
1045
1450
  };
1046
1451
  required: string[];
1047
1452
  };
@@ -1083,10 +1488,14 @@ export declare const toolDefinitions: ({
1083
1488
  data?: undefined;
1084
1489
  due?: undefined;
1085
1490
  completed?: undefined;
1491
+ commentId?: undefined;
1086
1492
  circleId?: undefined;
1087
1493
  includeSubCircles?: undefined;
1088
1494
  depth?: undefined;
1089
1495
  userId?: undefined;
1496
+ username?: undefined;
1497
+ fullName?: undefined;
1498
+ language?: undefined;
1090
1499
  labelId?: undefined;
1091
1500
  metricId?: undefined;
1092
1501
  from?: undefined;
@@ -1097,6 +1506,17 @@ export declare const toolDefinitions: ({
1097
1506
  relatedNestId?: undefined;
1098
1507
  color?: undefined;
1099
1508
  icon?: undefined;
1509
+ context?: undefined;
1510
+ feeling?: undefined;
1511
+ needs?: undefined;
1512
+ tensionId?: undefined;
1513
+ order?: undefined;
1514
+ _id?: undefined;
1515
+ accountabilities?: undefined;
1516
+ domains?: undefined;
1517
+ removeNest?: undefined;
1518
+ partId?: undefined;
1519
+ status?: undefined;
1100
1520
  };
1101
1521
  required: string[];
1102
1522
  };
@@ -1107,23 +1527,19 @@ export declare const toolDefinitions: ({
1107
1527
  inputSchema: {
1108
1528
  type: "object";
1109
1529
  properties: {
1110
- workspaceId: {
1111
- type: string;
1112
- description: string;
1113
- };
1114
- limit: {
1115
- type: string;
1116
- description: string;
1117
- };
1118
- page: {
1530
+ commentId: {
1119
1531
  type: string;
1120
1532
  description: string;
1121
1533
  };
1122
- stripDescription: {
1534
+ body: {
1123
1535
  type: string;
1124
1536
  description: string;
1125
1537
  };
1126
1538
  search?: undefined;
1539
+ limit?: undefined;
1540
+ page?: undefined;
1541
+ stripDescription?: undefined;
1542
+ workspaceId?: undefined;
1127
1543
  title?: undefined;
1128
1544
  purpose?: undefined;
1129
1545
  type?: undefined;
@@ -1143,11 +1559,13 @@ export declare const toolDefinitions: ({
1143
1559
  data?: undefined;
1144
1560
  due?: undefined;
1145
1561
  completed?: undefined;
1146
- body?: undefined;
1147
1562
  circleId?: undefined;
1148
1563
  includeSubCircles?: undefined;
1149
1564
  depth?: undefined;
1150
1565
  userId?: undefined;
1566
+ username?: undefined;
1567
+ fullName?: undefined;
1568
+ language?: undefined;
1151
1569
  labelId?: undefined;
1152
1570
  metricId?: undefined;
1153
1571
  from?: undefined;
@@ -1158,6 +1576,17 @@ export declare const toolDefinitions: ({
1158
1576
  relatedNestId?: undefined;
1159
1577
  color?: undefined;
1160
1578
  icon?: undefined;
1579
+ context?: undefined;
1580
+ feeling?: undefined;
1581
+ needs?: undefined;
1582
+ tensionId?: undefined;
1583
+ order?: undefined;
1584
+ _id?: undefined;
1585
+ accountabilities?: undefined;
1586
+ domains?: undefined;
1587
+ removeNest?: undefined;
1588
+ partId?: undefined;
1589
+ status?: undefined;
1161
1590
  };
1162
1591
  required: string[];
1163
1592
  };
@@ -1168,27 +1597,15 @@ export declare const toolDefinitions: ({
1168
1597
  inputSchema: {
1169
1598
  type: "object";
1170
1599
  properties: {
1171
- workspaceId: {
1172
- type: string;
1173
- description: string;
1174
- };
1175
- circleId: {
1176
- type: string;
1177
- description: string;
1178
- };
1179
- limit: {
1180
- type: string;
1181
- description: string;
1182
- };
1183
- page: {
1184
- type: string;
1185
- description: string;
1186
- };
1187
- stripDescription: {
1600
+ commentId: {
1188
1601
  type: string;
1189
1602
  description: string;
1190
1603
  };
1191
1604
  search?: undefined;
1605
+ limit?: undefined;
1606
+ page?: undefined;
1607
+ stripDescription?: undefined;
1608
+ workspaceId?: undefined;
1192
1609
  title?: undefined;
1193
1610
  purpose?: undefined;
1194
1611
  type?: undefined;
@@ -1209,9 +1626,13 @@ export declare const toolDefinitions: ({
1209
1626
  due?: undefined;
1210
1627
  completed?: undefined;
1211
1628
  body?: undefined;
1629
+ circleId?: undefined;
1212
1630
  includeSubCircles?: undefined;
1213
1631
  depth?: undefined;
1214
1632
  userId?: undefined;
1633
+ username?: undefined;
1634
+ fullName?: undefined;
1635
+ language?: undefined;
1215
1636
  labelId?: undefined;
1216
1637
  metricId?: undefined;
1217
1638
  from?: undefined;
@@ -1222,6 +1643,17 @@ export declare const toolDefinitions: ({
1222
1643
  relatedNestId?: undefined;
1223
1644
  color?: undefined;
1224
1645
  icon?: undefined;
1646
+ context?: undefined;
1647
+ feeling?: undefined;
1648
+ needs?: undefined;
1649
+ tensionId?: undefined;
1650
+ order?: undefined;
1651
+ _id?: undefined;
1652
+ accountabilities?: undefined;
1653
+ domains?: undefined;
1654
+ removeNest?: undefined;
1655
+ partId?: undefined;
1656
+ status?: undefined;
1225
1657
  };
1226
1658
  required: string[];
1227
1659
  };
@@ -1236,14 +1668,19 @@ export declare const toolDefinitions: ({
1236
1668
  type: string;
1237
1669
  description: string;
1238
1670
  };
1239
- includeSubCircles: {
1671
+ limit: {
1672
+ type: string;
1673
+ description: string;
1674
+ };
1675
+ page: {
1676
+ type: string;
1677
+ description: string;
1678
+ };
1679
+ stripDescription: {
1240
1680
  type: string;
1241
1681
  description: string;
1242
1682
  };
1243
1683
  search?: undefined;
1244
- limit?: undefined;
1245
- page?: undefined;
1246
- stripDescription?: undefined;
1247
1684
  title?: undefined;
1248
1685
  purpose?: undefined;
1249
1686
  type?: undefined;
@@ -1264,9 +1701,14 @@ export declare const toolDefinitions: ({
1264
1701
  due?: undefined;
1265
1702
  completed?: undefined;
1266
1703
  body?: undefined;
1704
+ commentId?: undefined;
1267
1705
  circleId?: undefined;
1706
+ includeSubCircles?: undefined;
1268
1707
  depth?: undefined;
1269
1708
  userId?: undefined;
1709
+ username?: undefined;
1710
+ fullName?: undefined;
1711
+ language?: undefined;
1270
1712
  labelId?: undefined;
1271
1713
  metricId?: undefined;
1272
1714
  from?: undefined;
@@ -1277,6 +1719,17 @@ export declare const toolDefinitions: ({
1277
1719
  relatedNestId?: undefined;
1278
1720
  color?: undefined;
1279
1721
  icon?: undefined;
1722
+ context?: undefined;
1723
+ feeling?: undefined;
1724
+ needs?: undefined;
1725
+ tensionId?: undefined;
1726
+ order?: undefined;
1727
+ _id?: undefined;
1728
+ accountabilities?: undefined;
1729
+ domains?: undefined;
1730
+ removeNest?: undefined;
1731
+ partId?: undefined;
1732
+ status?: undefined;
1280
1733
  };
1281
1734
  required: string[];
1282
1735
  };
@@ -1291,7 +1744,7 @@ export declare const toolDefinitions: ({
1291
1744
  type: string;
1292
1745
  description: string;
1293
1746
  };
1294
- search: {
1747
+ circleId: {
1295
1748
  type: string;
1296
1749
  description: string;
1297
1750
  };
@@ -1303,7 +1756,11 @@ export declare const toolDefinitions: ({
1303
1756
  type: string;
1304
1757
  description: string;
1305
1758
  };
1306
- stripDescription?: undefined;
1759
+ stripDescription: {
1760
+ type: string;
1761
+ description: string;
1762
+ };
1763
+ search?: undefined;
1307
1764
  title?: undefined;
1308
1765
  purpose?: undefined;
1309
1766
  type?: undefined;
@@ -1324,10 +1781,13 @@ export declare const toolDefinitions: ({
1324
1781
  due?: undefined;
1325
1782
  completed?: undefined;
1326
1783
  body?: undefined;
1327
- circleId?: undefined;
1784
+ commentId?: undefined;
1328
1785
  includeSubCircles?: undefined;
1329
1786
  depth?: undefined;
1330
1787
  userId?: undefined;
1788
+ username?: undefined;
1789
+ fullName?: undefined;
1790
+ language?: undefined;
1331
1791
  labelId?: undefined;
1332
1792
  metricId?: undefined;
1333
1793
  from?: undefined;
@@ -1338,6 +1798,17 @@ export declare const toolDefinitions: ({
1338
1798
  relatedNestId?: undefined;
1339
1799
  color?: undefined;
1340
1800
  icon?: undefined;
1801
+ context?: undefined;
1802
+ feeling?: undefined;
1803
+ needs?: undefined;
1804
+ tensionId?: undefined;
1805
+ order?: undefined;
1806
+ _id?: undefined;
1807
+ accountabilities?: undefined;
1808
+ domains?: undefined;
1809
+ removeNest?: undefined;
1810
+ partId?: undefined;
1811
+ status?: undefined;
1341
1812
  };
1342
1813
  required: string[];
1343
1814
  };
@@ -1352,23 +1823,14 @@ export declare const toolDefinitions: ({
1352
1823
  type: string;
1353
1824
  description: string;
1354
1825
  };
1355
- limit: {
1356
- type: string;
1357
- description: string;
1358
- };
1359
- page: {
1360
- type: string;
1361
- description: string;
1362
- };
1363
- stripDescription: {
1364
- type: string;
1365
- description: string;
1366
- };
1367
- _listTitle: {
1826
+ includeSubCircles: {
1368
1827
  type: string;
1369
1828
  description: string;
1370
1829
  };
1371
1830
  search?: undefined;
1831
+ limit?: undefined;
1832
+ page?: undefined;
1833
+ stripDescription?: undefined;
1372
1834
  title?: undefined;
1373
1835
  purpose?: undefined;
1374
1836
  type?: undefined;
@@ -1377,6 +1839,7 @@ export declare const toolDefinitions: ({
1377
1839
  apps?: undefined;
1378
1840
  layout?: undefined;
1379
1841
  query?: undefined;
1842
+ _listTitle?: undefined;
1380
1843
  nestId?: undefined;
1381
1844
  fieldsMetaData?: undefined;
1382
1845
  parentId?: undefined;
@@ -1388,10 +1851,13 @@ export declare const toolDefinitions: ({
1388
1851
  due?: undefined;
1389
1852
  completed?: undefined;
1390
1853
  body?: undefined;
1854
+ commentId?: undefined;
1391
1855
  circleId?: undefined;
1392
- includeSubCircles?: undefined;
1393
1856
  depth?: undefined;
1394
1857
  userId?: undefined;
1858
+ username?: undefined;
1859
+ fullName?: undefined;
1860
+ language?: undefined;
1395
1861
  labelId?: undefined;
1396
1862
  metricId?: undefined;
1397
1863
  from?: undefined;
@@ -1402,33 +1868,44 @@ export declare const toolDefinitions: ({
1402
1868
  relatedNestId?: undefined;
1403
1869
  color?: undefined;
1404
1870
  icon?: undefined;
1871
+ context?: undefined;
1872
+ feeling?: undefined;
1873
+ needs?: undefined;
1874
+ tensionId?: undefined;
1875
+ order?: undefined;
1876
+ _id?: undefined;
1877
+ accountabilities?: undefined;
1878
+ domains?: undefined;
1879
+ removeNest?: undefined;
1880
+ partId?: undefined;
1881
+ status?: undefined;
1405
1882
  };
1406
1883
  required: string[];
1407
1884
  };
1408
- _meta: {
1409
- ui: {
1410
- resourceUri: string;
1411
- };
1412
- };
1885
+ _meta?: undefined;
1413
1886
  } | {
1414
1887
  name: string;
1415
1888
  description: string;
1416
1889
  inputSchema: {
1417
1890
  type: "object";
1418
1891
  properties: {
1419
- nestId: {
1892
+ workspaceId: {
1420
1893
  type: string;
1421
1894
  description: string;
1422
1895
  };
1423
- depth: {
1896
+ search: {
1897
+ type: string;
1898
+ description: string;
1899
+ };
1900
+ limit: {
1901
+ type: string;
1902
+ description: string;
1903
+ };
1904
+ page: {
1424
1905
  type: string;
1425
1906
  description: string;
1426
1907
  };
1427
- search?: undefined;
1428
- limit?: undefined;
1429
- page?: undefined;
1430
1908
  stripDescription?: undefined;
1431
- workspaceId?: undefined;
1432
1909
  title?: undefined;
1433
1910
  purpose?: undefined;
1434
1911
  type?: undefined;
@@ -1438,6 +1915,7 @@ export declare const toolDefinitions: ({
1438
1915
  layout?: undefined;
1439
1916
  query?: undefined;
1440
1917
  _listTitle?: undefined;
1918
+ nestId?: undefined;
1441
1919
  fieldsMetaData?: undefined;
1442
1920
  parentId?: undefined;
1443
1921
  description?: undefined;
@@ -1448,9 +1926,167 @@ export declare const toolDefinitions: ({
1448
1926
  due?: undefined;
1449
1927
  completed?: undefined;
1450
1928
  body?: undefined;
1929
+ commentId?: undefined;
1930
+ circleId?: undefined;
1931
+ includeSubCircles?: undefined;
1932
+ depth?: undefined;
1933
+ userId?: undefined;
1934
+ username?: undefined;
1935
+ fullName?: undefined;
1936
+ language?: undefined;
1937
+ labelId?: undefined;
1938
+ metricId?: undefined;
1939
+ from?: undefined;
1940
+ to?: undefined;
1941
+ completedAfter?: undefined;
1942
+ nestIds?: undefined;
1943
+ position?: undefined;
1944
+ relatedNestId?: undefined;
1945
+ color?: undefined;
1946
+ icon?: undefined;
1947
+ context?: undefined;
1948
+ feeling?: undefined;
1949
+ needs?: undefined;
1950
+ tensionId?: undefined;
1951
+ order?: undefined;
1952
+ _id?: undefined;
1953
+ accountabilities?: undefined;
1954
+ domains?: undefined;
1955
+ removeNest?: undefined;
1956
+ partId?: undefined;
1957
+ status?: undefined;
1958
+ };
1959
+ required: string[];
1960
+ };
1961
+ _meta?: undefined;
1962
+ } | {
1963
+ name: string;
1964
+ description: string;
1965
+ inputSchema: {
1966
+ type: "object";
1967
+ properties: {
1968
+ workspaceId: {
1969
+ type: string;
1970
+ description: string;
1971
+ };
1972
+ limit: {
1973
+ type: string;
1974
+ description: string;
1975
+ };
1976
+ page: {
1977
+ type: string;
1978
+ description: string;
1979
+ };
1980
+ stripDescription: {
1981
+ type: string;
1982
+ description: string;
1983
+ };
1984
+ _listTitle: {
1985
+ type: string;
1986
+ description: string;
1987
+ };
1988
+ search?: undefined;
1989
+ title?: undefined;
1990
+ purpose?: undefined;
1991
+ type?: undefined;
1992
+ governance?: undefined;
1993
+ plan?: undefined;
1994
+ apps?: undefined;
1995
+ layout?: undefined;
1996
+ query?: undefined;
1997
+ nestId?: undefined;
1998
+ fieldsMetaData?: undefined;
1999
+ parentId?: undefined;
2000
+ description?: undefined;
2001
+ labels?: undefined;
2002
+ users?: undefined;
2003
+ fields?: undefined;
2004
+ data?: undefined;
2005
+ due?: undefined;
2006
+ completed?: undefined;
2007
+ body?: undefined;
2008
+ commentId?: undefined;
2009
+ circleId?: undefined;
2010
+ includeSubCircles?: undefined;
2011
+ depth?: undefined;
2012
+ userId?: undefined;
2013
+ username?: undefined;
2014
+ fullName?: undefined;
2015
+ language?: undefined;
2016
+ labelId?: undefined;
2017
+ metricId?: undefined;
2018
+ from?: undefined;
2019
+ to?: undefined;
2020
+ completedAfter?: undefined;
2021
+ nestIds?: undefined;
2022
+ position?: undefined;
2023
+ relatedNestId?: undefined;
2024
+ color?: undefined;
2025
+ icon?: undefined;
2026
+ context?: undefined;
2027
+ feeling?: undefined;
2028
+ needs?: undefined;
2029
+ tensionId?: undefined;
2030
+ order?: undefined;
2031
+ _id?: undefined;
2032
+ accountabilities?: undefined;
2033
+ domains?: undefined;
2034
+ removeNest?: undefined;
2035
+ partId?: undefined;
2036
+ status?: undefined;
2037
+ };
2038
+ required: string[];
2039
+ };
2040
+ _meta: {
2041
+ ui: {
2042
+ resourceUri: string;
2043
+ };
2044
+ };
2045
+ } | {
2046
+ name: string;
2047
+ description: string;
2048
+ inputSchema: {
2049
+ type: "object";
2050
+ properties: {
2051
+ nestId: {
2052
+ type: string;
2053
+ description: string;
2054
+ };
2055
+ depth: {
2056
+ type: string;
2057
+ description: string;
2058
+ };
2059
+ search?: undefined;
2060
+ limit?: undefined;
2061
+ page?: undefined;
2062
+ stripDescription?: undefined;
2063
+ workspaceId?: undefined;
2064
+ title?: undefined;
2065
+ purpose?: undefined;
2066
+ type?: undefined;
2067
+ governance?: undefined;
2068
+ plan?: undefined;
2069
+ apps?: undefined;
2070
+ layout?: undefined;
2071
+ query?: undefined;
2072
+ _listTitle?: undefined;
2073
+ fieldsMetaData?: undefined;
2074
+ parentId?: undefined;
2075
+ description?: undefined;
2076
+ labels?: undefined;
2077
+ users?: undefined;
2078
+ fields?: undefined;
2079
+ data?: undefined;
2080
+ due?: undefined;
2081
+ completed?: undefined;
2082
+ body?: undefined;
2083
+ commentId?: undefined;
1451
2084
  circleId?: undefined;
1452
2085
  includeSubCircles?: undefined;
1453
2086
  userId?: undefined;
2087
+ username?: undefined;
2088
+ fullName?: undefined;
2089
+ language?: undefined;
1454
2090
  labelId?: undefined;
1455
2091
  metricId?: undefined;
1456
2092
  from?: undefined;
@@ -1461,6 +2097,17 @@ export declare const toolDefinitions: ({
1461
2097
  relatedNestId?: undefined;
1462
2098
  color?: undefined;
1463
2099
  icon?: undefined;
2100
+ context?: undefined;
2101
+ feeling?: undefined;
2102
+ needs?: undefined;
2103
+ tensionId?: undefined;
2104
+ order?: undefined;
2105
+ _id?: undefined;
2106
+ accountabilities?: undefined;
2107
+ domains?: undefined;
2108
+ removeNest?: undefined;
2109
+ partId?: undefined;
2110
+ status?: undefined;
1464
2111
  };
1465
2112
  required: string[];
1466
2113
  };
@@ -1506,9 +2153,13 @@ export declare const toolDefinitions: ({
1506
2153
  due?: undefined;
1507
2154
  completed?: undefined;
1508
2155
  body?: undefined;
2156
+ commentId?: undefined;
1509
2157
  includeSubCircles?: undefined;
1510
2158
  depth?: undefined;
1511
2159
  userId?: undefined;
2160
+ username?: undefined;
2161
+ fullName?: undefined;
2162
+ language?: undefined;
1512
2163
  labelId?: undefined;
1513
2164
  metricId?: undefined;
1514
2165
  from?: undefined;
@@ -1519,6 +2170,17 @@ export declare const toolDefinitions: ({
1519
2170
  relatedNestId?: undefined;
1520
2171
  color?: undefined;
1521
2172
  icon?: undefined;
2173
+ context?: undefined;
2174
+ feeling?: undefined;
2175
+ needs?: undefined;
2176
+ tensionId?: undefined;
2177
+ order?: undefined;
2178
+ _id?: undefined;
2179
+ accountabilities?: undefined;
2180
+ domains?: undefined;
2181
+ removeNest?: undefined;
2182
+ partId?: undefined;
2183
+ status?: undefined;
1522
2184
  };
1523
2185
  required: string[];
1524
2186
  };
@@ -1561,9 +2223,89 @@ export declare const toolDefinitions: ({
1561
2223
  due?: undefined;
1562
2224
  completed?: undefined;
1563
2225
  body?: undefined;
2226
+ commentId?: undefined;
2227
+ circleId?: undefined;
2228
+ includeSubCircles?: undefined;
2229
+ depth?: undefined;
2230
+ username?: undefined;
2231
+ fullName?: undefined;
2232
+ language?: undefined;
2233
+ labelId?: undefined;
2234
+ metricId?: undefined;
2235
+ from?: undefined;
2236
+ to?: undefined;
2237
+ completedAfter?: undefined;
2238
+ nestIds?: undefined;
2239
+ position?: undefined;
2240
+ relatedNestId?: undefined;
2241
+ color?: undefined;
2242
+ icon?: undefined;
2243
+ context?: undefined;
2244
+ feeling?: undefined;
2245
+ needs?: undefined;
2246
+ tensionId?: undefined;
2247
+ order?: undefined;
2248
+ _id?: undefined;
2249
+ accountabilities?: undefined;
2250
+ domains?: undefined;
2251
+ removeNest?: undefined;
2252
+ partId?: undefined;
2253
+ status?: undefined;
2254
+ };
2255
+ required: string[];
2256
+ };
2257
+ _meta?: undefined;
2258
+ } | {
2259
+ name: string;
2260
+ description: string;
2261
+ inputSchema: {
2262
+ type: "object";
2263
+ properties: {
2264
+ workspaceId: {
2265
+ type: string;
2266
+ description: string;
2267
+ };
2268
+ username: {
2269
+ type: string;
2270
+ description: string;
2271
+ };
2272
+ fullName: {
2273
+ type: string;
2274
+ description: string;
2275
+ };
2276
+ language: {
2277
+ type: string;
2278
+ description: string;
2279
+ };
2280
+ search?: undefined;
2281
+ limit?: undefined;
2282
+ page?: undefined;
2283
+ stripDescription?: undefined;
2284
+ title?: undefined;
2285
+ purpose?: undefined;
2286
+ type?: undefined;
2287
+ governance?: undefined;
2288
+ plan?: undefined;
2289
+ apps?: undefined;
2290
+ layout?: undefined;
2291
+ query?: undefined;
2292
+ _listTitle?: undefined;
2293
+ nestId?: undefined;
2294
+ fieldsMetaData?: undefined;
2295
+ parentId?: undefined;
2296
+ description?: undefined;
2297
+ labels?: undefined;
2298
+ users?: undefined;
2299
+ fields?: undefined;
2300
+ data?: undefined;
2301
+ due?: undefined;
2302
+ completed?: undefined;
2303
+ body?: undefined;
2304
+ commentId?: undefined;
1564
2305
  circleId?: undefined;
1565
2306
  includeSubCircles?: undefined;
1566
2307
  depth?: undefined;
2308
+ userId?: undefined;
1567
2309
  labelId?: undefined;
1568
2310
  metricId?: undefined;
1569
2311
  from?: undefined;
@@ -1574,6 +2316,17 @@ export declare const toolDefinitions: ({
1574
2316
  relatedNestId?: undefined;
1575
2317
  color?: undefined;
1576
2318
  icon?: undefined;
2319
+ context?: undefined;
2320
+ feeling?: undefined;
2321
+ needs?: undefined;
2322
+ tensionId?: undefined;
2323
+ order?: undefined;
2324
+ _id?: undefined;
2325
+ accountabilities?: undefined;
2326
+ domains?: undefined;
2327
+ removeNest?: undefined;
2328
+ partId?: undefined;
2329
+ status?: undefined;
1577
2330
  };
1578
2331
  required: string[];
1579
2332
  };
@@ -1616,10 +2369,14 @@ export declare const toolDefinitions: ({
1616
2369
  due?: undefined;
1617
2370
  completed?: undefined;
1618
2371
  body?: undefined;
2372
+ commentId?: undefined;
1619
2373
  circleId?: undefined;
1620
2374
  includeSubCircles?: undefined;
1621
2375
  depth?: undefined;
1622
2376
  userId?: undefined;
2377
+ username?: undefined;
2378
+ fullName?: undefined;
2379
+ language?: undefined;
1623
2380
  metricId?: undefined;
1624
2381
  from?: undefined;
1625
2382
  to?: undefined;
@@ -1629,6 +2386,17 @@ export declare const toolDefinitions: ({
1629
2386
  relatedNestId?: undefined;
1630
2387
  color?: undefined;
1631
2388
  icon?: undefined;
2389
+ context?: undefined;
2390
+ feeling?: undefined;
2391
+ needs?: undefined;
2392
+ tensionId?: undefined;
2393
+ order?: undefined;
2394
+ _id?: undefined;
2395
+ accountabilities?: undefined;
2396
+ domains?: undefined;
2397
+ removeNest?: undefined;
2398
+ partId?: undefined;
2399
+ status?: undefined;
1632
2400
  };
1633
2401
  required: string[];
1634
2402
  };
@@ -1682,10 +2450,14 @@ export declare const toolDefinitions: ({
1682
2450
  due?: undefined;
1683
2451
  completed?: undefined;
1684
2452
  body?: undefined;
2453
+ commentId?: undefined;
1685
2454
  circleId?: undefined;
1686
2455
  includeSubCircles?: undefined;
1687
2456
  depth?: undefined;
1688
2457
  userId?: undefined;
2458
+ username?: undefined;
2459
+ fullName?: undefined;
2460
+ language?: undefined;
1689
2461
  labelId?: undefined;
1690
2462
  completedAfter?: undefined;
1691
2463
  nestIds?: undefined;
@@ -1693,6 +2465,17 @@ export declare const toolDefinitions: ({
1693
2465
  relatedNestId?: undefined;
1694
2466
  color?: undefined;
1695
2467
  icon?: undefined;
2468
+ context?: undefined;
2469
+ feeling?: undefined;
2470
+ needs?: undefined;
2471
+ tensionId?: undefined;
2472
+ order?: undefined;
2473
+ _id?: undefined;
2474
+ accountabilities?: undefined;
2475
+ domains?: undefined;
2476
+ removeNest?: undefined;
2477
+ partId?: undefined;
2478
+ status?: undefined;
1696
2479
  };
1697
2480
  required: string[];
1698
2481
  };
@@ -1731,10 +2514,14 @@ export declare const toolDefinitions: ({
1731
2514
  due?: undefined;
1732
2515
  completed?: undefined;
1733
2516
  body?: undefined;
2517
+ commentId?: undefined;
1734
2518
  circleId?: undefined;
1735
2519
  includeSubCircles?: undefined;
1736
2520
  depth?: undefined;
1737
2521
  userId?: undefined;
2522
+ username?: undefined;
2523
+ fullName?: undefined;
2524
+ language?: undefined;
1738
2525
  labelId?: undefined;
1739
2526
  metricId?: undefined;
1740
2527
  from?: undefined;
@@ -1745,6 +2532,17 @@ export declare const toolDefinitions: ({
1745
2532
  relatedNestId?: undefined;
1746
2533
  color?: undefined;
1747
2534
  icon?: undefined;
2535
+ context?: undefined;
2536
+ feeling?: undefined;
2537
+ needs?: undefined;
2538
+ tensionId?: undefined;
2539
+ order?: undefined;
2540
+ _id?: undefined;
2541
+ accountabilities?: undefined;
2542
+ domains?: undefined;
2543
+ removeNest?: undefined;
2544
+ partId?: undefined;
2545
+ status?: undefined;
1748
2546
  };
1749
2547
  required: string[];
1750
2548
  };
@@ -1787,10 +2585,14 @@ export declare const toolDefinitions: ({
1787
2585
  due?: undefined;
1788
2586
  completed?: undefined;
1789
2587
  body?: undefined;
2588
+ commentId?: undefined;
1790
2589
  circleId?: undefined;
1791
2590
  includeSubCircles?: undefined;
1792
2591
  depth?: undefined;
1793
2592
  userId?: undefined;
2593
+ username?: undefined;
2594
+ fullName?: undefined;
2595
+ language?: undefined;
1794
2596
  labelId?: undefined;
1795
2597
  metricId?: undefined;
1796
2598
  from?: undefined;
@@ -1800,6 +2602,17 @@ export declare const toolDefinitions: ({
1800
2602
  relatedNestId?: undefined;
1801
2603
  color?: undefined;
1802
2604
  icon?: undefined;
2605
+ context?: undefined;
2606
+ feeling?: undefined;
2607
+ needs?: undefined;
2608
+ tensionId?: undefined;
2609
+ order?: undefined;
2610
+ _id?: undefined;
2611
+ accountabilities?: undefined;
2612
+ domains?: undefined;
2613
+ removeNest?: undefined;
2614
+ partId?: undefined;
2615
+ status?: undefined;
1803
2616
  };
1804
2617
  required?: undefined;
1805
2618
  };
@@ -1845,10 +2658,14 @@ export declare const toolDefinitions: ({
1845
2658
  due?: undefined;
1846
2659
  completed?: undefined;
1847
2660
  body?: undefined;
2661
+ commentId?: undefined;
1848
2662
  circleId?: undefined;
1849
2663
  includeSubCircles?: undefined;
1850
2664
  depth?: undefined;
1851
2665
  userId?: undefined;
2666
+ username?: undefined;
2667
+ fullName?: undefined;
2668
+ language?: undefined;
1852
2669
  labelId?: undefined;
1853
2670
  metricId?: undefined;
1854
2671
  from?: undefined;
@@ -1859,6 +2676,17 @@ export declare const toolDefinitions: ({
1859
2676
  relatedNestId?: undefined;
1860
2677
  color?: undefined;
1861
2678
  icon?: undefined;
2679
+ context?: undefined;
2680
+ feeling?: undefined;
2681
+ needs?: undefined;
2682
+ tensionId?: undefined;
2683
+ order?: undefined;
2684
+ _id?: undefined;
2685
+ accountabilities?: undefined;
2686
+ domains?: undefined;
2687
+ removeNest?: undefined;
2688
+ partId?: undefined;
2689
+ status?: undefined;
1862
2690
  };
1863
2691
  required: string[];
1864
2692
  };
@@ -1900,10 +2728,14 @@ export declare const toolDefinitions: ({
1900
2728
  due?: undefined;
1901
2729
  completed?: undefined;
1902
2730
  body?: undefined;
2731
+ commentId?: undefined;
1903
2732
  circleId?: undefined;
1904
2733
  includeSubCircles?: undefined;
1905
2734
  depth?: undefined;
1906
2735
  userId?: undefined;
2736
+ username?: undefined;
2737
+ fullName?: undefined;
2738
+ language?: undefined;
1907
2739
  labelId?: undefined;
1908
2740
  metricId?: undefined;
1909
2741
  from?: undefined;
@@ -1914,6 +2746,17 @@ export declare const toolDefinitions: ({
1914
2746
  relatedNestId?: undefined;
1915
2747
  color?: undefined;
1916
2748
  icon?: undefined;
2749
+ context?: undefined;
2750
+ feeling?: undefined;
2751
+ needs?: undefined;
2752
+ tensionId?: undefined;
2753
+ order?: undefined;
2754
+ _id?: undefined;
2755
+ accountabilities?: undefined;
2756
+ domains?: undefined;
2757
+ removeNest?: undefined;
2758
+ partId?: undefined;
2759
+ status?: undefined;
1917
2760
  };
1918
2761
  required: string[];
1919
2762
  };
@@ -1964,10 +2807,14 @@ export declare const toolDefinitions: ({
1964
2807
  fields?: undefined;
1965
2808
  due?: undefined;
1966
2809
  body?: undefined;
2810
+ commentId?: undefined;
1967
2811
  circleId?: undefined;
1968
2812
  includeSubCircles?: undefined;
1969
2813
  depth?: undefined;
1970
2814
  userId?: undefined;
2815
+ username?: undefined;
2816
+ fullName?: undefined;
2817
+ language?: undefined;
1971
2818
  labelId?: undefined;
1972
2819
  metricId?: undefined;
1973
2820
  from?: undefined;
@@ -1978,6 +2825,17 @@ export declare const toolDefinitions: ({
1978
2825
  relatedNestId?: undefined;
1979
2826
  color?: undefined;
1980
2827
  icon?: undefined;
2828
+ context?: undefined;
2829
+ feeling?: undefined;
2830
+ needs?: undefined;
2831
+ tensionId?: undefined;
2832
+ order?: undefined;
2833
+ _id?: undefined;
2834
+ accountabilities?: undefined;
2835
+ domains?: undefined;
2836
+ removeNest?: undefined;
2837
+ partId?: undefined;
2838
+ status?: undefined;
1981
2839
  };
1982
2840
  required: string[];
1983
2841
  };
@@ -2020,10 +2878,14 @@ export declare const toolDefinitions: ({
2020
2878
  due?: undefined;
2021
2879
  completed?: undefined;
2022
2880
  body?: undefined;
2881
+ commentId?: undefined;
2023
2882
  circleId?: undefined;
2024
2883
  includeSubCircles?: undefined;
2025
2884
  depth?: undefined;
2026
2885
  userId?: undefined;
2886
+ username?: undefined;
2887
+ fullName?: undefined;
2888
+ language?: undefined;
2027
2889
  labelId?: undefined;
2028
2890
  metricId?: undefined;
2029
2891
  from?: undefined;
@@ -2033,6 +2895,17 @@ export declare const toolDefinitions: ({
2033
2895
  relatedNestId?: undefined;
2034
2896
  color?: undefined;
2035
2897
  icon?: undefined;
2898
+ context?: undefined;
2899
+ feeling?: undefined;
2900
+ needs?: undefined;
2901
+ tensionId?: undefined;
2902
+ order?: undefined;
2903
+ _id?: undefined;
2904
+ accountabilities?: undefined;
2905
+ domains?: undefined;
2906
+ removeNest?: undefined;
2907
+ partId?: undefined;
2908
+ status?: undefined;
2036
2909
  };
2037
2910
  required: string[];
2038
2911
  };
@@ -2080,10 +2953,14 @@ export declare const toolDefinitions: ({
2080
2953
  due?: undefined;
2081
2954
  completed?: undefined;
2082
2955
  body?: undefined;
2956
+ commentId?: undefined;
2083
2957
  circleId?: undefined;
2084
2958
  includeSubCircles?: undefined;
2085
2959
  depth?: undefined;
2086
2960
  userId?: undefined;
2961
+ username?: undefined;
2962
+ fullName?: undefined;
2963
+ language?: undefined;
2087
2964
  labelId?: undefined;
2088
2965
  metricId?: undefined;
2089
2966
  from?: undefined;
@@ -2092,6 +2969,17 @@ export declare const toolDefinitions: ({
2092
2969
  nestIds?: undefined;
2093
2970
  color?: undefined;
2094
2971
  icon?: undefined;
2972
+ context?: undefined;
2973
+ feeling?: undefined;
2974
+ needs?: undefined;
2975
+ tensionId?: undefined;
2976
+ order?: undefined;
2977
+ _id?: undefined;
2978
+ accountabilities?: undefined;
2979
+ domains?: undefined;
2980
+ removeNest?: undefined;
2981
+ partId?: undefined;
2982
+ status?: undefined;
2095
2983
  };
2096
2984
  required: string[];
2097
2985
  };
@@ -2127,10 +3015,14 @@ export declare const toolDefinitions: ({
2127
3015
  due?: undefined;
2128
3016
  completed?: undefined;
2129
3017
  body?: undefined;
3018
+ commentId?: undefined;
2130
3019
  circleId?: undefined;
2131
3020
  includeSubCircles?: undefined;
2132
3021
  depth?: undefined;
2133
3022
  userId?: undefined;
3023
+ username?: undefined;
3024
+ fullName?: undefined;
3025
+ language?: undefined;
2134
3026
  labelId?: undefined;
2135
3027
  metricId?: undefined;
2136
3028
  from?: undefined;
@@ -2141,6 +3033,17 @@ export declare const toolDefinitions: ({
2141
3033
  relatedNestId?: undefined;
2142
3034
  color?: undefined;
2143
3035
  icon?: undefined;
3036
+ context?: undefined;
3037
+ feeling?: undefined;
3038
+ needs?: undefined;
3039
+ tensionId?: undefined;
3040
+ order?: undefined;
3041
+ _id?: undefined;
3042
+ accountabilities?: undefined;
3043
+ domains?: undefined;
3044
+ removeNest?: undefined;
3045
+ partId?: undefined;
3046
+ status?: undefined;
2144
3047
  };
2145
3048
  required?: undefined;
2146
3049
  };
@@ -2190,10 +3093,14 @@ export declare const toolDefinitions: ({
2190
3093
  due?: undefined;
2191
3094
  completed?: undefined;
2192
3095
  body?: undefined;
3096
+ commentId?: undefined;
2193
3097
  circleId?: undefined;
2194
3098
  includeSubCircles?: undefined;
2195
3099
  depth?: undefined;
2196
3100
  userId?: undefined;
3101
+ username?: undefined;
3102
+ fullName?: undefined;
3103
+ language?: undefined;
2197
3104
  labelId?: undefined;
2198
3105
  metricId?: undefined;
2199
3106
  from?: undefined;
@@ -2202,6 +3109,17 @@ export declare const toolDefinitions: ({
2202
3109
  nestIds?: undefined;
2203
3110
  position?: undefined;
2204
3111
  relatedNestId?: undefined;
3112
+ context?: undefined;
3113
+ feeling?: undefined;
3114
+ needs?: undefined;
3115
+ tensionId?: undefined;
3116
+ order?: undefined;
3117
+ _id?: undefined;
3118
+ accountabilities?: undefined;
3119
+ domains?: undefined;
3120
+ removeNest?: undefined;
3121
+ partId?: undefined;
3122
+ status?: undefined;
2205
3123
  };
2206
3124
  required: string[];
2207
3125
  };
@@ -2247,10 +3165,14 @@ export declare const toolDefinitions: ({
2247
3165
  due?: undefined;
2248
3166
  completed?: undefined;
2249
3167
  body?: undefined;
3168
+ commentId?: undefined;
2250
3169
  circleId?: undefined;
2251
3170
  includeSubCircles?: undefined;
2252
3171
  depth?: undefined;
2253
3172
  userId?: undefined;
3173
+ username?: undefined;
3174
+ fullName?: undefined;
3175
+ language?: undefined;
2254
3176
  labelId?: undefined;
2255
3177
  metricId?: undefined;
2256
3178
  from?: undefined;
@@ -2260,6 +3182,17 @@ export declare const toolDefinitions: ({
2260
3182
  relatedNestId?: undefined;
2261
3183
  color?: undefined;
2262
3184
  icon?: undefined;
3185
+ context?: undefined;
3186
+ feeling?: undefined;
3187
+ needs?: undefined;
3188
+ tensionId?: undefined;
3189
+ order?: undefined;
3190
+ _id?: undefined;
3191
+ accountabilities?: undefined;
3192
+ domains?: undefined;
3193
+ removeNest?: undefined;
3194
+ partId?: undefined;
3195
+ status?: undefined;
2263
3196
  };
2264
3197
  required: string[];
2265
3198
  };
@@ -2298,10 +3231,14 @@ export declare const toolDefinitions: ({
2298
3231
  due?: undefined;
2299
3232
  completed?: undefined;
2300
3233
  body?: undefined;
3234
+ commentId?: undefined;
2301
3235
  circleId?: undefined;
2302
3236
  includeSubCircles?: undefined;
2303
3237
  depth?: undefined;
2304
3238
  userId?: undefined;
3239
+ username?: undefined;
3240
+ fullName?: undefined;
3241
+ language?: undefined;
2305
3242
  labelId?: undefined;
2306
3243
  metricId?: undefined;
2307
3244
  from?: undefined;
@@ -2312,6 +3249,17 @@ export declare const toolDefinitions: ({
2312
3249
  relatedNestId?: undefined;
2313
3250
  color?: undefined;
2314
3251
  icon?: undefined;
3252
+ context?: undefined;
3253
+ feeling?: undefined;
3254
+ needs?: undefined;
3255
+ tensionId?: undefined;
3256
+ order?: undefined;
3257
+ _id?: undefined;
3258
+ accountabilities?: undefined;
3259
+ domains?: undefined;
3260
+ removeNest?: undefined;
3261
+ partId?: undefined;
3262
+ status?: undefined;
2315
3263
  };
2316
3264
  required?: undefined;
2317
3265
  };
@@ -2320,6 +3268,757 @@ export declare const toolDefinitions: ({
2320
3268
  resourceUri: string;
2321
3269
  };
2322
3270
  };
3271
+ } | {
3272
+ name: string;
3273
+ description: string;
3274
+ inputSchema: {
3275
+ type: "object";
3276
+ properties: {
3277
+ context: {
3278
+ type: string;
3279
+ description: string;
3280
+ };
3281
+ search?: undefined;
3282
+ limit?: undefined;
3283
+ page?: undefined;
3284
+ stripDescription?: undefined;
3285
+ workspaceId?: undefined;
3286
+ title?: undefined;
3287
+ purpose?: undefined;
3288
+ type?: undefined;
3289
+ governance?: undefined;
3290
+ plan?: undefined;
3291
+ apps?: undefined;
3292
+ layout?: undefined;
3293
+ query?: undefined;
3294
+ _listTitle?: undefined;
3295
+ nestId?: undefined;
3296
+ fieldsMetaData?: undefined;
3297
+ parentId?: undefined;
3298
+ description?: undefined;
3299
+ labels?: undefined;
3300
+ users?: undefined;
3301
+ fields?: undefined;
3302
+ data?: undefined;
3303
+ due?: undefined;
3304
+ completed?: undefined;
3305
+ body?: undefined;
3306
+ commentId?: undefined;
3307
+ circleId?: undefined;
3308
+ includeSubCircles?: undefined;
3309
+ depth?: undefined;
3310
+ userId?: undefined;
3311
+ username?: undefined;
3312
+ fullName?: undefined;
3313
+ language?: undefined;
3314
+ labelId?: undefined;
3315
+ metricId?: undefined;
3316
+ from?: undefined;
3317
+ to?: undefined;
3318
+ completedAfter?: undefined;
3319
+ nestIds?: undefined;
3320
+ position?: undefined;
3321
+ relatedNestId?: undefined;
3322
+ color?: undefined;
3323
+ icon?: undefined;
3324
+ feeling?: undefined;
3325
+ needs?: undefined;
3326
+ tensionId?: undefined;
3327
+ order?: undefined;
3328
+ _id?: undefined;
3329
+ accountabilities?: undefined;
3330
+ domains?: undefined;
3331
+ removeNest?: undefined;
3332
+ partId?: undefined;
3333
+ status?: undefined;
3334
+ };
3335
+ required?: undefined;
3336
+ };
3337
+ _meta?: undefined;
3338
+ } | {
3339
+ name: string;
3340
+ description: string;
3341
+ inputSchema: {
3342
+ type: "object";
3343
+ properties: {
3344
+ nestId: {
3345
+ type: string;
3346
+ description: string;
3347
+ };
3348
+ title: {
3349
+ type: string;
3350
+ description: string;
3351
+ };
3352
+ description: {
3353
+ type: string;
3354
+ description: string;
3355
+ };
3356
+ feeling: {
3357
+ type: string;
3358
+ description: string;
3359
+ };
3360
+ needs: {
3361
+ type: string;
3362
+ description: string;
3363
+ };
3364
+ search?: undefined;
3365
+ limit?: undefined;
3366
+ page?: undefined;
3367
+ stripDescription?: undefined;
3368
+ workspaceId?: undefined;
3369
+ purpose?: undefined;
3370
+ type?: undefined;
3371
+ governance?: undefined;
3372
+ plan?: undefined;
3373
+ apps?: undefined;
3374
+ layout?: undefined;
3375
+ query?: undefined;
3376
+ _listTitle?: undefined;
3377
+ fieldsMetaData?: undefined;
3378
+ parentId?: undefined;
3379
+ labels?: undefined;
3380
+ users?: undefined;
3381
+ fields?: undefined;
3382
+ data?: undefined;
3383
+ due?: undefined;
3384
+ completed?: undefined;
3385
+ body?: undefined;
3386
+ commentId?: undefined;
3387
+ circleId?: undefined;
3388
+ includeSubCircles?: undefined;
3389
+ depth?: undefined;
3390
+ userId?: undefined;
3391
+ username?: undefined;
3392
+ fullName?: undefined;
3393
+ language?: undefined;
3394
+ labelId?: undefined;
3395
+ metricId?: undefined;
3396
+ from?: undefined;
3397
+ to?: undefined;
3398
+ completedAfter?: undefined;
3399
+ nestIds?: undefined;
3400
+ position?: undefined;
3401
+ relatedNestId?: undefined;
3402
+ color?: undefined;
3403
+ icon?: undefined;
3404
+ context?: undefined;
3405
+ tensionId?: undefined;
3406
+ order?: undefined;
3407
+ _id?: undefined;
3408
+ accountabilities?: undefined;
3409
+ domains?: undefined;
3410
+ removeNest?: undefined;
3411
+ partId?: undefined;
3412
+ status?: undefined;
3413
+ };
3414
+ required: string[];
3415
+ };
3416
+ _meta?: undefined;
3417
+ } | {
3418
+ name: string;
3419
+ description: string;
3420
+ inputSchema: {
3421
+ type: "object";
3422
+ properties: {
3423
+ nestId: {
3424
+ type: string;
3425
+ description: string;
3426
+ };
3427
+ tensionId: {
3428
+ type: string;
3429
+ description: string;
3430
+ };
3431
+ search?: undefined;
3432
+ limit?: undefined;
3433
+ page?: undefined;
3434
+ stripDescription?: undefined;
3435
+ workspaceId?: undefined;
3436
+ title?: undefined;
3437
+ purpose?: undefined;
3438
+ type?: undefined;
3439
+ governance?: undefined;
3440
+ plan?: undefined;
3441
+ apps?: undefined;
3442
+ layout?: undefined;
3443
+ query?: undefined;
3444
+ _listTitle?: undefined;
3445
+ fieldsMetaData?: undefined;
3446
+ parentId?: undefined;
3447
+ description?: undefined;
3448
+ labels?: undefined;
3449
+ users?: undefined;
3450
+ fields?: undefined;
3451
+ data?: undefined;
3452
+ due?: undefined;
3453
+ completed?: undefined;
3454
+ body?: undefined;
3455
+ commentId?: undefined;
3456
+ circleId?: undefined;
3457
+ includeSubCircles?: undefined;
3458
+ depth?: undefined;
3459
+ userId?: undefined;
3460
+ username?: undefined;
3461
+ fullName?: undefined;
3462
+ language?: undefined;
3463
+ labelId?: undefined;
3464
+ metricId?: undefined;
3465
+ from?: undefined;
3466
+ to?: undefined;
3467
+ completedAfter?: undefined;
3468
+ nestIds?: undefined;
3469
+ position?: undefined;
3470
+ relatedNestId?: undefined;
3471
+ color?: undefined;
3472
+ icon?: undefined;
3473
+ context?: undefined;
3474
+ feeling?: undefined;
3475
+ needs?: undefined;
3476
+ order?: undefined;
3477
+ _id?: undefined;
3478
+ accountabilities?: undefined;
3479
+ domains?: undefined;
3480
+ removeNest?: undefined;
3481
+ partId?: undefined;
3482
+ status?: undefined;
3483
+ };
3484
+ required: string[];
3485
+ };
3486
+ _meta?: undefined;
3487
+ } | {
3488
+ name: string;
3489
+ description: string;
3490
+ inputSchema: {
3491
+ type: "object";
3492
+ properties: {
3493
+ nestId: {
3494
+ type: string;
3495
+ description: string;
3496
+ };
3497
+ search: {
3498
+ type: string;
3499
+ description: string;
3500
+ };
3501
+ limit: {
3502
+ type: string;
3503
+ description: string;
3504
+ };
3505
+ order: {
3506
+ type: string;
3507
+ description: string;
3508
+ };
3509
+ page?: undefined;
3510
+ stripDescription?: undefined;
3511
+ workspaceId?: undefined;
3512
+ title?: undefined;
3513
+ purpose?: undefined;
3514
+ type?: undefined;
3515
+ governance?: undefined;
3516
+ plan?: undefined;
3517
+ apps?: undefined;
3518
+ layout?: undefined;
3519
+ query?: undefined;
3520
+ _listTitle?: undefined;
3521
+ fieldsMetaData?: undefined;
3522
+ parentId?: undefined;
3523
+ description?: undefined;
3524
+ labels?: undefined;
3525
+ users?: undefined;
3526
+ fields?: undefined;
3527
+ data?: undefined;
3528
+ due?: undefined;
3529
+ completed?: undefined;
3530
+ body?: undefined;
3531
+ commentId?: undefined;
3532
+ circleId?: undefined;
3533
+ includeSubCircles?: undefined;
3534
+ depth?: undefined;
3535
+ userId?: undefined;
3536
+ username?: undefined;
3537
+ fullName?: undefined;
3538
+ language?: undefined;
3539
+ labelId?: undefined;
3540
+ metricId?: undefined;
3541
+ from?: undefined;
3542
+ to?: undefined;
3543
+ completedAfter?: undefined;
3544
+ nestIds?: undefined;
3545
+ position?: undefined;
3546
+ relatedNestId?: undefined;
3547
+ color?: undefined;
3548
+ icon?: undefined;
3549
+ context?: undefined;
3550
+ feeling?: undefined;
3551
+ needs?: undefined;
3552
+ tensionId?: undefined;
3553
+ _id?: undefined;
3554
+ accountabilities?: undefined;
3555
+ domains?: undefined;
3556
+ removeNest?: undefined;
3557
+ partId?: undefined;
3558
+ status?: undefined;
3559
+ };
3560
+ required: string[];
3561
+ };
3562
+ _meta?: undefined;
3563
+ } | {
3564
+ name: string;
3565
+ description: string;
3566
+ inputSchema: {
3567
+ type: "object";
3568
+ properties: {
3569
+ nestId: {
3570
+ type: string;
3571
+ description: string;
3572
+ };
3573
+ tensionId: {
3574
+ type: string;
3575
+ description: string;
3576
+ };
3577
+ title: {
3578
+ type: string;
3579
+ description: string;
3580
+ };
3581
+ description: {
3582
+ type: string;
3583
+ description: string;
3584
+ };
3585
+ feeling: {
3586
+ type: string;
3587
+ description: string;
3588
+ };
3589
+ needs: {
3590
+ type: string;
3591
+ description: string;
3592
+ };
3593
+ search?: undefined;
3594
+ limit?: undefined;
3595
+ page?: undefined;
3596
+ stripDescription?: undefined;
3597
+ workspaceId?: undefined;
3598
+ purpose?: undefined;
3599
+ type?: undefined;
3600
+ governance?: undefined;
3601
+ plan?: undefined;
3602
+ apps?: undefined;
3603
+ layout?: undefined;
3604
+ query?: undefined;
3605
+ _listTitle?: undefined;
3606
+ fieldsMetaData?: undefined;
3607
+ parentId?: undefined;
3608
+ labels?: undefined;
3609
+ users?: undefined;
3610
+ fields?: undefined;
3611
+ data?: undefined;
3612
+ due?: undefined;
3613
+ completed?: undefined;
3614
+ body?: undefined;
3615
+ commentId?: undefined;
3616
+ circleId?: undefined;
3617
+ includeSubCircles?: undefined;
3618
+ depth?: undefined;
3619
+ userId?: undefined;
3620
+ username?: undefined;
3621
+ fullName?: undefined;
3622
+ language?: undefined;
3623
+ labelId?: undefined;
3624
+ metricId?: undefined;
3625
+ from?: undefined;
3626
+ to?: undefined;
3627
+ completedAfter?: undefined;
3628
+ nestIds?: undefined;
3629
+ position?: undefined;
3630
+ relatedNestId?: undefined;
3631
+ color?: undefined;
3632
+ icon?: undefined;
3633
+ context?: undefined;
3634
+ order?: undefined;
3635
+ _id?: undefined;
3636
+ accountabilities?: undefined;
3637
+ domains?: undefined;
3638
+ removeNest?: undefined;
3639
+ partId?: undefined;
3640
+ status?: undefined;
3641
+ };
3642
+ required: string[];
3643
+ };
3644
+ _meta?: undefined;
3645
+ } | {
3646
+ name: string;
3647
+ description: string;
3648
+ inputSchema: {
3649
+ type: "object";
3650
+ properties: {
3651
+ nestId: {
3652
+ type: string;
3653
+ description: string;
3654
+ };
3655
+ tensionId: {
3656
+ type: string;
3657
+ description: string;
3658
+ };
3659
+ _id: {
3660
+ type: string;
3661
+ description: string;
3662
+ };
3663
+ title: {
3664
+ type: string;
3665
+ description: string;
3666
+ };
3667
+ labels: {
3668
+ type: string;
3669
+ items: {
3670
+ type: string;
3671
+ };
3672
+ description: string;
3673
+ };
3674
+ purpose: {
3675
+ type: string;
3676
+ description: string;
3677
+ };
3678
+ description: {
3679
+ type: string;
3680
+ description: string;
3681
+ };
3682
+ parentId: {
3683
+ type: string;
3684
+ description: string;
3685
+ };
3686
+ users: {
3687
+ type: string;
3688
+ items: {
3689
+ type: string;
3690
+ };
3691
+ description: string;
3692
+ };
3693
+ due: {
3694
+ type: string;
3695
+ description: string;
3696
+ };
3697
+ accountabilities: {
3698
+ type: string;
3699
+ items: {
3700
+ type: string;
3701
+ };
3702
+ description: string;
3703
+ };
3704
+ domains: {
3705
+ type: string;
3706
+ items: {
3707
+ type: string;
3708
+ };
3709
+ description: string;
3710
+ };
3711
+ removeNest: {
3712
+ type: string;
3713
+ description: string;
3714
+ };
3715
+ search?: undefined;
3716
+ limit?: undefined;
3717
+ page?: undefined;
3718
+ stripDescription?: undefined;
3719
+ workspaceId?: undefined;
3720
+ type?: undefined;
3721
+ governance?: undefined;
3722
+ plan?: undefined;
3723
+ apps?: undefined;
3724
+ layout?: undefined;
3725
+ query?: undefined;
3726
+ _listTitle?: undefined;
3727
+ fieldsMetaData?: undefined;
3728
+ fields?: undefined;
3729
+ data?: undefined;
3730
+ completed?: undefined;
3731
+ body?: undefined;
3732
+ commentId?: undefined;
3733
+ circleId?: undefined;
3734
+ includeSubCircles?: undefined;
3735
+ depth?: undefined;
3736
+ userId?: undefined;
3737
+ username?: undefined;
3738
+ fullName?: undefined;
3739
+ language?: undefined;
3740
+ labelId?: undefined;
3741
+ metricId?: undefined;
3742
+ from?: undefined;
3743
+ to?: undefined;
3744
+ completedAfter?: undefined;
3745
+ nestIds?: undefined;
3746
+ position?: undefined;
3747
+ relatedNestId?: undefined;
3748
+ color?: undefined;
3749
+ icon?: undefined;
3750
+ context?: undefined;
3751
+ feeling?: undefined;
3752
+ needs?: undefined;
3753
+ order?: undefined;
3754
+ partId?: undefined;
3755
+ status?: undefined;
3756
+ };
3757
+ required: string[];
3758
+ };
3759
+ _meta?: undefined;
3760
+ } | {
3761
+ name: string;
3762
+ description: string;
3763
+ inputSchema: {
3764
+ type: "object";
3765
+ properties: {
3766
+ nestId: {
3767
+ type: string;
3768
+ description: string;
3769
+ };
3770
+ tensionId: {
3771
+ type: string;
3772
+ description: string;
3773
+ };
3774
+ partId: {
3775
+ type: string;
3776
+ description: string;
3777
+ };
3778
+ title: {
3779
+ type: string;
3780
+ description: string;
3781
+ };
3782
+ purpose: {
3783
+ type: string;
3784
+ description: string;
3785
+ };
3786
+ description: {
3787
+ type: string;
3788
+ description: string;
3789
+ };
3790
+ labels: {
3791
+ type: string;
3792
+ items: {
3793
+ type: string;
3794
+ };
3795
+ description: string;
3796
+ };
3797
+ parentId: {
3798
+ type: string;
3799
+ description: string;
3800
+ };
3801
+ users: {
3802
+ type: string;
3803
+ items: {
3804
+ type: string;
3805
+ };
3806
+ description: string;
3807
+ };
3808
+ due: {
3809
+ type: string;
3810
+ description: string;
3811
+ };
3812
+ removeNest: {
3813
+ type: string;
3814
+ description: string;
3815
+ };
3816
+ accountabilities: {
3817
+ type: string;
3818
+ items: {
3819
+ type: string;
3820
+ };
3821
+ description: string;
3822
+ };
3823
+ domains: {
3824
+ type: string;
3825
+ items: {
3826
+ type: string;
3827
+ };
3828
+ description: string;
3829
+ };
3830
+ search?: undefined;
3831
+ limit?: undefined;
3832
+ page?: undefined;
3833
+ stripDescription?: undefined;
3834
+ workspaceId?: undefined;
3835
+ type?: undefined;
3836
+ governance?: undefined;
3837
+ plan?: undefined;
3838
+ apps?: undefined;
3839
+ layout?: undefined;
3840
+ query?: undefined;
3841
+ _listTitle?: undefined;
3842
+ fieldsMetaData?: undefined;
3843
+ fields?: undefined;
3844
+ data?: undefined;
3845
+ completed?: undefined;
3846
+ body?: undefined;
3847
+ commentId?: undefined;
3848
+ circleId?: undefined;
3849
+ includeSubCircles?: undefined;
3850
+ depth?: undefined;
3851
+ userId?: undefined;
3852
+ username?: undefined;
3853
+ fullName?: undefined;
3854
+ language?: undefined;
3855
+ labelId?: undefined;
3856
+ metricId?: undefined;
3857
+ from?: undefined;
3858
+ to?: undefined;
3859
+ completedAfter?: undefined;
3860
+ nestIds?: undefined;
3861
+ position?: undefined;
3862
+ relatedNestId?: undefined;
3863
+ color?: undefined;
3864
+ icon?: undefined;
3865
+ context?: undefined;
3866
+ feeling?: undefined;
3867
+ needs?: undefined;
3868
+ order?: undefined;
3869
+ _id?: undefined;
3870
+ status?: undefined;
3871
+ };
3872
+ required: string[];
3873
+ };
3874
+ _meta?: undefined;
3875
+ } | {
3876
+ name: string;
3877
+ description: string;
3878
+ inputSchema: {
3879
+ type: "object";
3880
+ properties: {
3881
+ nestId: {
3882
+ type: string;
3883
+ description: string;
3884
+ };
3885
+ tensionId: {
3886
+ type: string;
3887
+ description: string;
3888
+ };
3889
+ partId: {
3890
+ type: string;
3891
+ description: string;
3892
+ };
3893
+ search?: undefined;
3894
+ limit?: undefined;
3895
+ page?: undefined;
3896
+ stripDescription?: undefined;
3897
+ workspaceId?: undefined;
3898
+ title?: undefined;
3899
+ purpose?: undefined;
3900
+ type?: undefined;
3901
+ governance?: undefined;
3902
+ plan?: undefined;
3903
+ apps?: undefined;
3904
+ layout?: undefined;
3905
+ query?: undefined;
3906
+ _listTitle?: undefined;
3907
+ fieldsMetaData?: undefined;
3908
+ parentId?: undefined;
3909
+ description?: undefined;
3910
+ labels?: undefined;
3911
+ users?: undefined;
3912
+ fields?: undefined;
3913
+ data?: undefined;
3914
+ due?: undefined;
3915
+ completed?: undefined;
3916
+ body?: undefined;
3917
+ commentId?: undefined;
3918
+ circleId?: undefined;
3919
+ includeSubCircles?: undefined;
3920
+ depth?: undefined;
3921
+ userId?: undefined;
3922
+ username?: undefined;
3923
+ fullName?: undefined;
3924
+ language?: undefined;
3925
+ labelId?: undefined;
3926
+ metricId?: undefined;
3927
+ from?: undefined;
3928
+ to?: undefined;
3929
+ completedAfter?: undefined;
3930
+ nestIds?: undefined;
3931
+ position?: undefined;
3932
+ relatedNestId?: undefined;
3933
+ color?: undefined;
3934
+ icon?: undefined;
3935
+ context?: undefined;
3936
+ feeling?: undefined;
3937
+ needs?: undefined;
3938
+ order?: undefined;
3939
+ _id?: undefined;
3940
+ accountabilities?: undefined;
3941
+ domains?: undefined;
3942
+ removeNest?: undefined;
3943
+ status?: undefined;
3944
+ };
3945
+ required: string[];
3946
+ };
3947
+ _meta?: undefined;
3948
+ } | {
3949
+ name: string;
3950
+ description: string;
3951
+ inputSchema: {
3952
+ type: "object";
3953
+ properties: {
3954
+ nestId: {
3955
+ type: string;
3956
+ description: string;
3957
+ };
3958
+ tensionId: {
3959
+ type: string;
3960
+ description: string;
3961
+ };
3962
+ status: {
3963
+ type: string;
3964
+ enum: string[];
3965
+ description: string;
3966
+ };
3967
+ search?: undefined;
3968
+ limit?: undefined;
3969
+ page?: undefined;
3970
+ stripDescription?: undefined;
3971
+ workspaceId?: undefined;
3972
+ title?: undefined;
3973
+ purpose?: undefined;
3974
+ type?: undefined;
3975
+ governance?: undefined;
3976
+ plan?: undefined;
3977
+ apps?: undefined;
3978
+ layout?: undefined;
3979
+ query?: undefined;
3980
+ _listTitle?: undefined;
3981
+ fieldsMetaData?: undefined;
3982
+ parentId?: undefined;
3983
+ description?: undefined;
3984
+ labels?: undefined;
3985
+ users?: undefined;
3986
+ fields?: undefined;
3987
+ data?: undefined;
3988
+ due?: undefined;
3989
+ completed?: undefined;
3990
+ body?: undefined;
3991
+ commentId?: undefined;
3992
+ circleId?: undefined;
3993
+ includeSubCircles?: undefined;
3994
+ depth?: undefined;
3995
+ userId?: undefined;
3996
+ username?: undefined;
3997
+ fullName?: undefined;
3998
+ language?: undefined;
3999
+ labelId?: undefined;
4000
+ metricId?: undefined;
4001
+ from?: undefined;
4002
+ to?: undefined;
4003
+ completedAfter?: undefined;
4004
+ nestIds?: undefined;
4005
+ position?: undefined;
4006
+ relatedNestId?: undefined;
4007
+ color?: undefined;
4008
+ icon?: undefined;
4009
+ context?: undefined;
4010
+ feeling?: undefined;
4011
+ needs?: undefined;
4012
+ order?: undefined;
4013
+ _id?: undefined;
4014
+ accountabilities?: undefined;
4015
+ domains?: undefined;
4016
+ removeNest?: undefined;
4017
+ partId?: undefined;
4018
+ };
4019
+ required: string[];
4020
+ };
4021
+ _meta?: undefined;
2323
4022
  })[];
2324
4023
  export type ToolResult = {
2325
4024
  content: Array<{