@nestr/mcp 0.1.44 → 0.1.45

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.
@@ -526,7 +526,13 @@ export declare const schemas: {
526
526
  nestIds: string[];
527
527
  }>;
528
528
  getDailyPlan: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;
529
- getMe: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;
529
+ getMe: z.ZodObject<{
530
+ fullWorkspaces: z.ZodOptional<z.ZodBoolean>;
531
+ }, "strip", z.ZodTypeAny, {
532
+ fullWorkspaces?: boolean | undefined;
533
+ }, {
534
+ fullWorkspaces?: boolean | undefined;
535
+ }>;
530
536
  listMyTensions: z.ZodObject<{
531
537
  context: z.ZodOptional<z.ZodString>;
532
538
  }, "strip", z.ZodTypeAny, {
@@ -541,6 +547,26 @@ export declare const schemas: {
541
547
  }, {
542
548
  context?: string | undefined;
543
549
  }>;
550
+ listNotifications: z.ZodObject<{
551
+ type: z.ZodOptional<z.ZodEnum<["all", "me", "relevant"]>>;
552
+ limit: z.ZodOptional<z.ZodNumber>;
553
+ skip: z.ZodOptional<z.ZodNumber>;
554
+ showRead: z.ZodOptional<z.ZodBoolean>;
555
+ group: z.ZodOptional<z.ZodString>;
556
+ }, "strip", z.ZodTypeAny, {
557
+ limit?: number | undefined;
558
+ type?: "all" | "me" | "relevant" | undefined;
559
+ skip?: number | undefined;
560
+ showRead?: boolean | undefined;
561
+ group?: string | undefined;
562
+ }, {
563
+ limit?: number | undefined;
564
+ type?: "all" | "me" | "relevant" | undefined;
565
+ skip?: number | undefined;
566
+ showRead?: boolean | undefined;
567
+ group?: string | undefined;
568
+ }>;
569
+ markNotificationsRead: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;
544
570
  createTension: z.ZodObject<{
545
571
  nestId: z.ZodString;
546
572
  title: z.ZodString;
@@ -831,7 +857,11 @@ export declare const toolDefinitions: ({
831
857
  relatedNestId?: undefined;
832
858
  color?: undefined;
833
859
  icon?: undefined;
860
+ fullWorkspaces?: undefined;
834
861
  context?: undefined;
862
+ skip?: undefined;
863
+ showRead?: undefined;
864
+ group?: undefined;
835
865
  feeling?: undefined;
836
866
  needs?: undefined;
837
867
  tensionId?: undefined;
@@ -904,7 +934,11 @@ export declare const toolDefinitions: ({
904
934
  relatedNestId?: undefined;
905
935
  color?: undefined;
906
936
  icon?: undefined;
937
+ fullWorkspaces?: undefined;
907
938
  context?: undefined;
939
+ skip?: undefined;
940
+ showRead?: undefined;
941
+ group?: undefined;
908
942
  feeling?: undefined;
909
943
  needs?: undefined;
910
944
  tensionId?: undefined;
@@ -1000,7 +1034,11 @@ export declare const toolDefinitions: ({
1000
1034
  relatedNestId?: undefined;
1001
1035
  color?: undefined;
1002
1036
  icon?: undefined;
1037
+ fullWorkspaces?: undefined;
1003
1038
  context?: undefined;
1039
+ skip?: undefined;
1040
+ showRead?: undefined;
1041
+ group?: undefined;
1004
1042
  feeling?: undefined;
1005
1043
  needs?: undefined;
1006
1044
  tensionId?: undefined;
@@ -1085,7 +1123,11 @@ export declare const toolDefinitions: ({
1085
1123
  relatedNestId?: undefined;
1086
1124
  color?: undefined;
1087
1125
  icon?: undefined;
1126
+ fullWorkspaces?: undefined;
1088
1127
  context?: undefined;
1128
+ skip?: undefined;
1129
+ showRead?: undefined;
1130
+ group?: undefined;
1089
1131
  feeling?: undefined;
1090
1132
  needs?: undefined;
1091
1133
  tensionId?: undefined;
@@ -1166,7 +1208,11 @@ export declare const toolDefinitions: ({
1166
1208
  relatedNestId?: undefined;
1167
1209
  color?: undefined;
1168
1210
  icon?: undefined;
1211
+ fullWorkspaces?: undefined;
1169
1212
  context?: undefined;
1213
+ skip?: undefined;
1214
+ showRead?: undefined;
1215
+ group?: undefined;
1170
1216
  feeling?: undefined;
1171
1217
  needs?: undefined;
1172
1218
  tensionId?: undefined;
@@ -1248,7 +1294,11 @@ export declare const toolDefinitions: ({
1248
1294
  relatedNestId?: undefined;
1249
1295
  color?: undefined;
1250
1296
  icon?: undefined;
1297
+ fullWorkspaces?: undefined;
1251
1298
  context?: undefined;
1299
+ skip?: undefined;
1300
+ showRead?: undefined;
1301
+ group?: undefined;
1252
1302
  feeling?: undefined;
1253
1303
  needs?: undefined;
1254
1304
  tensionId?: undefined;
@@ -1359,7 +1409,11 @@ export declare const toolDefinitions: ({
1359
1409
  relatedNestId?: undefined;
1360
1410
  color?: undefined;
1361
1411
  icon?: undefined;
1412
+ fullWorkspaces?: undefined;
1362
1413
  context?: undefined;
1414
+ skip?: undefined;
1415
+ showRead?: undefined;
1416
+ group?: undefined;
1363
1417
  feeling?: undefined;
1364
1418
  needs?: undefined;
1365
1419
  tensionId?: undefined;
@@ -1480,7 +1534,11 @@ export declare const toolDefinitions: ({
1480
1534
  relatedNestId?: undefined;
1481
1535
  color?: undefined;
1482
1536
  icon?: undefined;
1537
+ fullWorkspaces?: undefined;
1483
1538
  context?: undefined;
1539
+ skip?: undefined;
1540
+ showRead?: undefined;
1541
+ group?: undefined;
1484
1542
  feeling?: undefined;
1485
1543
  needs?: undefined;
1486
1544
  tensionId?: undefined;
@@ -1550,7 +1608,11 @@ export declare const toolDefinitions: ({
1550
1608
  relatedNestId?: undefined;
1551
1609
  color?: undefined;
1552
1610
  icon?: undefined;
1611
+ fullWorkspaces?: undefined;
1553
1612
  context?: undefined;
1613
+ skip?: undefined;
1614
+ showRead?: undefined;
1615
+ group?: undefined;
1554
1616
  feeling?: undefined;
1555
1617
  needs?: undefined;
1556
1618
  tensionId?: undefined;
@@ -1623,7 +1685,11 @@ export declare const toolDefinitions: ({
1623
1685
  relatedNestId?: undefined;
1624
1686
  color?: undefined;
1625
1687
  icon?: undefined;
1688
+ fullWorkspaces?: undefined;
1626
1689
  context?: undefined;
1690
+ skip?: undefined;
1691
+ showRead?: undefined;
1692
+ group?: undefined;
1627
1693
  feeling?: undefined;
1628
1694
  needs?: undefined;
1629
1695
  tensionId?: undefined;
@@ -1696,7 +1762,11 @@ export declare const toolDefinitions: ({
1696
1762
  relatedNestId?: undefined;
1697
1763
  color?: undefined;
1698
1764
  icon?: undefined;
1765
+ fullWorkspaces?: undefined;
1699
1766
  context?: undefined;
1767
+ skip?: undefined;
1768
+ showRead?: undefined;
1769
+ group?: undefined;
1700
1770
  feeling?: undefined;
1701
1771
  needs?: undefined;
1702
1772
  tensionId?: undefined;
@@ -1766,7 +1836,11 @@ export declare const toolDefinitions: ({
1766
1836
  relatedNestId?: undefined;
1767
1837
  color?: undefined;
1768
1838
  icon?: undefined;
1839
+ fullWorkspaces?: undefined;
1769
1840
  context?: undefined;
1841
+ skip?: undefined;
1842
+ showRead?: undefined;
1843
+ group?: undefined;
1770
1844
  feeling?: undefined;
1771
1845
  needs?: undefined;
1772
1846
  tensionId?: undefined;
@@ -1845,7 +1919,11 @@ export declare const toolDefinitions: ({
1845
1919
  relatedNestId?: undefined;
1846
1920
  color?: undefined;
1847
1921
  icon?: undefined;
1922
+ fullWorkspaces?: undefined;
1848
1923
  context?: undefined;
1924
+ skip?: undefined;
1925
+ showRead?: undefined;
1926
+ group?: undefined;
1849
1927
  feeling?: undefined;
1850
1928
  needs?: undefined;
1851
1929
  tensionId?: undefined;
@@ -1927,7 +2005,11 @@ export declare const toolDefinitions: ({
1927
2005
  relatedNestId?: undefined;
1928
2006
  color?: undefined;
1929
2007
  icon?: undefined;
2008
+ fullWorkspaces?: undefined;
1930
2009
  context?: undefined;
2010
+ skip?: undefined;
2011
+ showRead?: undefined;
2012
+ group?: undefined;
1931
2013
  feeling?: undefined;
1932
2014
  needs?: undefined;
1933
2015
  tensionId?: undefined;
@@ -2000,7 +2082,11 @@ export declare const toolDefinitions: ({
2000
2082
  relatedNestId?: undefined;
2001
2083
  color?: undefined;
2002
2084
  icon?: undefined;
2085
+ fullWorkspaces?: undefined;
2003
2086
  context?: undefined;
2087
+ skip?: undefined;
2088
+ showRead?: undefined;
2089
+ group?: undefined;
2004
2090
  feeling?: undefined;
2005
2091
  needs?: undefined;
2006
2092
  tensionId?: undefined;
@@ -2079,7 +2165,11 @@ export declare const toolDefinitions: ({
2079
2165
  relatedNestId?: undefined;
2080
2166
  color?: undefined;
2081
2167
  icon?: undefined;
2168
+ fullWorkspaces?: undefined;
2082
2169
  context?: undefined;
2170
+ skip?: undefined;
2171
+ showRead?: undefined;
2172
+ group?: undefined;
2083
2173
  feeling?: undefined;
2084
2174
  needs?: undefined;
2085
2175
  tensionId?: undefined;
@@ -2161,7 +2251,11 @@ export declare const toolDefinitions: ({
2161
2251
  relatedNestId?: undefined;
2162
2252
  color?: undefined;
2163
2253
  icon?: undefined;
2254
+ fullWorkspaces?: undefined;
2164
2255
  context?: undefined;
2256
+ skip?: undefined;
2257
+ showRead?: undefined;
2258
+ group?: undefined;
2165
2259
  feeling?: undefined;
2166
2260
  needs?: undefined;
2167
2261
  tensionId?: undefined;
@@ -2239,7 +2333,11 @@ export declare const toolDefinitions: ({
2239
2333
  relatedNestId?: undefined;
2240
2334
  color?: undefined;
2241
2335
  icon?: undefined;
2336
+ fullWorkspaces?: undefined;
2242
2337
  context?: undefined;
2338
+ skip?: undefined;
2339
+ showRead?: undefined;
2340
+ group?: undefined;
2243
2341
  feeling?: undefined;
2244
2342
  needs?: undefined;
2245
2343
  tensionId?: undefined;
@@ -2315,7 +2413,11 @@ export declare const toolDefinitions: ({
2315
2413
  relatedNestId?: undefined;
2316
2414
  color?: undefined;
2317
2415
  icon?: undefined;
2416
+ fullWorkspaces?: undefined;
2318
2417
  context?: undefined;
2418
+ skip?: undefined;
2419
+ showRead?: undefined;
2420
+ group?: undefined;
2319
2421
  feeling?: undefined;
2320
2422
  needs?: undefined;
2321
2423
  tensionId?: undefined;
@@ -2388,7 +2490,11 @@ export declare const toolDefinitions: ({
2388
2490
  relatedNestId?: undefined;
2389
2491
  color?: undefined;
2390
2492
  icon?: undefined;
2493
+ fullWorkspaces?: undefined;
2391
2494
  context?: undefined;
2495
+ skip?: undefined;
2496
+ showRead?: undefined;
2497
+ group?: undefined;
2392
2498
  feeling?: undefined;
2393
2499
  needs?: undefined;
2394
2500
  tensionId?: undefined;
@@ -2467,7 +2573,11 @@ export declare const toolDefinitions: ({
2467
2573
  relatedNestId?: undefined;
2468
2574
  color?: undefined;
2469
2575
  icon?: undefined;
2576
+ fullWorkspaces?: undefined;
2470
2577
  context?: undefined;
2578
+ skip?: undefined;
2579
+ showRead?: undefined;
2580
+ group?: undefined;
2471
2581
  feeling?: undefined;
2472
2582
  needs?: undefined;
2473
2583
  tensionId?: undefined;
@@ -2540,7 +2650,11 @@ export declare const toolDefinitions: ({
2540
2650
  relatedNestId?: undefined;
2541
2651
  color?: undefined;
2542
2652
  icon?: undefined;
2653
+ fullWorkspaces?: undefined;
2543
2654
  context?: undefined;
2655
+ skip?: undefined;
2656
+ showRead?: undefined;
2657
+ group?: undefined;
2544
2658
  feeling?: undefined;
2545
2659
  needs?: undefined;
2546
2660
  tensionId?: undefined;
@@ -2622,7 +2736,11 @@ export declare const toolDefinitions: ({
2622
2736
  relatedNestId?: undefined;
2623
2737
  color?: undefined;
2624
2738
  icon?: undefined;
2739
+ fullWorkspaces?: undefined;
2625
2740
  context?: undefined;
2741
+ skip?: undefined;
2742
+ showRead?: undefined;
2743
+ group?: undefined;
2626
2744
  feeling?: undefined;
2627
2745
  needs?: undefined;
2628
2746
  tensionId?: undefined;
@@ -2692,7 +2810,11 @@ export declare const toolDefinitions: ({
2692
2810
  relatedNestId?: undefined;
2693
2811
  color?: undefined;
2694
2812
  icon?: undefined;
2813
+ fullWorkspaces?: undefined;
2695
2814
  context?: undefined;
2815
+ skip?: undefined;
2816
+ showRead?: undefined;
2817
+ group?: undefined;
2696
2818
  feeling?: undefined;
2697
2819
  needs?: undefined;
2698
2820
  tensionId?: undefined;
@@ -2765,7 +2887,11 @@ export declare const toolDefinitions: ({
2765
2887
  relatedNestId?: undefined;
2766
2888
  color?: undefined;
2767
2889
  icon?: undefined;
2890
+ fullWorkspaces?: undefined;
2768
2891
  context?: undefined;
2892
+ skip?: undefined;
2893
+ showRead?: undefined;
2894
+ group?: undefined;
2769
2895
  feeling?: undefined;
2770
2896
  needs?: undefined;
2771
2897
  tensionId?: undefined;
@@ -2843,7 +2969,11 @@ export declare const toolDefinitions: ({
2843
2969
  relatedNestId?: undefined;
2844
2970
  color?: undefined;
2845
2971
  icon?: undefined;
2972
+ fullWorkspaces?: undefined;
2846
2973
  context?: undefined;
2974
+ skip?: undefined;
2975
+ showRead?: undefined;
2976
+ group?: undefined;
2847
2977
  feeling?: undefined;
2848
2978
  needs?: undefined;
2849
2979
  tensionId?: undefined;
@@ -2916,7 +3046,11 @@ export declare const toolDefinitions: ({
2916
3046
  relatedNestId?: undefined;
2917
3047
  color?: undefined;
2918
3048
  icon?: undefined;
3049
+ fullWorkspaces?: undefined;
2919
3050
  context?: undefined;
3051
+ skip?: undefined;
3052
+ showRead?: undefined;
3053
+ group?: undefined;
2920
3054
  feeling?: undefined;
2921
3055
  needs?: undefined;
2922
3056
  tensionId?: undefined;
@@ -2998,7 +3132,11 @@ export declare const toolDefinitions: ({
2998
3132
  relatedNestId?: undefined;
2999
3133
  color?: undefined;
3000
3134
  icon?: undefined;
3135
+ fullWorkspaces?: undefined;
3001
3136
  context?: undefined;
3137
+ skip?: undefined;
3138
+ showRead?: undefined;
3139
+ group?: undefined;
3002
3140
  feeling?: undefined;
3003
3141
  needs?: undefined;
3004
3142
  tensionId?: undefined;
@@ -3071,7 +3209,11 @@ export declare const toolDefinitions: ({
3071
3209
  relatedNestId?: undefined;
3072
3210
  color?: undefined;
3073
3211
  icon?: undefined;
3212
+ fullWorkspaces?: undefined;
3074
3213
  context?: undefined;
3214
+ skip?: undefined;
3215
+ showRead?: undefined;
3216
+ group?: undefined;
3075
3217
  feeling?: undefined;
3076
3218
  needs?: undefined;
3077
3219
  tensionId?: undefined;
@@ -3148,7 +3290,11 @@ export declare const toolDefinitions: ({
3148
3290
  nestIds?: undefined;
3149
3291
  color?: undefined;
3150
3292
  icon?: undefined;
3293
+ fullWorkspaces?: undefined;
3151
3294
  context?: undefined;
3295
+ skip?: undefined;
3296
+ showRead?: undefined;
3297
+ group?: undefined;
3152
3298
  feeling?: undefined;
3153
3299
  needs?: undefined;
3154
3300
  tensionId?: undefined;
@@ -3215,7 +3361,11 @@ export declare const toolDefinitions: ({
3215
3361
  relatedNestId?: undefined;
3216
3362
  color?: undefined;
3217
3363
  icon?: undefined;
3364
+ fullWorkspaces?: undefined;
3218
3365
  context?: undefined;
3366
+ skip?: undefined;
3367
+ showRead?: undefined;
3368
+ group?: undefined;
3219
3369
  feeling?: undefined;
3220
3370
  needs?: undefined;
3221
3371
  tensionId?: undefined;
@@ -3294,7 +3444,11 @@ export declare const toolDefinitions: ({
3294
3444
  nestIds?: undefined;
3295
3445
  position?: undefined;
3296
3446
  relatedNestId?: undefined;
3447
+ fullWorkspaces?: undefined;
3297
3448
  context?: undefined;
3449
+ skip?: undefined;
3450
+ showRead?: undefined;
3451
+ group?: undefined;
3298
3452
  feeling?: undefined;
3299
3453
  needs?: undefined;
3300
3454
  tensionId?: undefined;
@@ -3370,7 +3524,11 @@ export declare const toolDefinitions: ({
3370
3524
  relatedNestId?: undefined;
3371
3525
  color?: undefined;
3372
3526
  icon?: undefined;
3527
+ fullWorkspaces?: undefined;
3373
3528
  context?: undefined;
3529
+ skip?: undefined;
3530
+ showRead?: undefined;
3531
+ group?: undefined;
3374
3532
  feeling?: undefined;
3375
3533
  needs?: undefined;
3376
3534
  tensionId?: undefined;
@@ -3440,7 +3598,11 @@ export declare const toolDefinitions: ({
3440
3598
  relatedNestId?: undefined;
3441
3599
  color?: undefined;
3442
3600
  icon?: undefined;
3601
+ fullWorkspaces?: undefined;
3443
3602
  context?: undefined;
3603
+ skip?: undefined;
3604
+ showRead?: undefined;
3605
+ group?: undefined;
3444
3606
  feeling?: undefined;
3445
3607
  needs?: undefined;
3446
3608
  tensionId?: undefined;
@@ -3518,7 +3680,11 @@ export declare const toolDefinitions: ({
3518
3680
  relatedNestId?: undefined;
3519
3681
  color?: undefined;
3520
3682
  icon?: undefined;
3683
+ fullWorkspaces?: undefined;
3521
3684
  context?: undefined;
3685
+ skip?: undefined;
3686
+ showRead?: undefined;
3687
+ group?: undefined;
3522
3688
  feeling?: undefined;
3523
3689
  needs?: undefined;
3524
3690
  tensionId?: undefined;
@@ -3530,6 +3696,80 @@ export declare const toolDefinitions: ({
3530
3696
  };
3531
3697
  required: string[];
3532
3698
  };
3699
+ } | {
3700
+ annotations: {
3701
+ readOnlyHint: boolean;
3702
+ destructiveHint: boolean;
3703
+ };
3704
+ name: string;
3705
+ description: string;
3706
+ inputSchema: {
3707
+ type: "object";
3708
+ properties: {
3709
+ fullWorkspaces: {
3710
+ type: string;
3711
+ description: string;
3712
+ };
3713
+ search?: undefined;
3714
+ limit?: undefined;
3715
+ page?: undefined;
3716
+ stripDescription?: undefined;
3717
+ workspaceId?: undefined;
3718
+ title?: undefined;
3719
+ purpose?: undefined;
3720
+ type?: undefined;
3721
+ governance?: undefined;
3722
+ plan?: undefined;
3723
+ apps?: undefined;
3724
+ layout?: undefined;
3725
+ query?: undefined;
3726
+ _listTitle?: undefined;
3727
+ nestId?: undefined;
3728
+ fieldsMetaData?: undefined;
3729
+ parentId?: undefined;
3730
+ description?: undefined;
3731
+ labels?: undefined;
3732
+ users?: undefined;
3733
+ accountabilities?: undefined;
3734
+ domains?: undefined;
3735
+ fields?: undefined;
3736
+ data?: undefined;
3737
+ due?: undefined;
3738
+ completed?: undefined;
3739
+ body?: undefined;
3740
+ commentId?: undefined;
3741
+ circleId?: undefined;
3742
+ includeSubCircles?: undefined;
3743
+ depth?: undefined;
3744
+ userId?: undefined;
3745
+ username?: undefined;
3746
+ fullName?: undefined;
3747
+ language?: undefined;
3748
+ labelId?: undefined;
3749
+ metricId?: undefined;
3750
+ from?: undefined;
3751
+ to?: undefined;
3752
+ completedAfter?: undefined;
3753
+ nestIds?: undefined;
3754
+ position?: undefined;
3755
+ relatedNestId?: undefined;
3756
+ color?: undefined;
3757
+ icon?: undefined;
3758
+ context?: undefined;
3759
+ skip?: undefined;
3760
+ showRead?: undefined;
3761
+ group?: undefined;
3762
+ feeling?: undefined;
3763
+ needs?: undefined;
3764
+ tensionId?: undefined;
3765
+ order?: undefined;
3766
+ _id?: undefined;
3767
+ removeNest?: undefined;
3768
+ partId?: undefined;
3769
+ status?: undefined;
3770
+ };
3771
+ required?: undefined;
3772
+ };
3533
3773
  } | {
3534
3774
  annotations: {
3535
3775
  readOnlyHint: boolean;
@@ -3589,6 +3829,97 @@ export declare const toolDefinitions: ({
3589
3829
  relatedNestId?: undefined;
3590
3830
  color?: undefined;
3591
3831
  icon?: undefined;
3832
+ fullWorkspaces?: undefined;
3833
+ skip?: undefined;
3834
+ showRead?: undefined;
3835
+ group?: undefined;
3836
+ feeling?: undefined;
3837
+ needs?: undefined;
3838
+ tensionId?: undefined;
3839
+ order?: undefined;
3840
+ _id?: undefined;
3841
+ removeNest?: undefined;
3842
+ partId?: undefined;
3843
+ status?: undefined;
3844
+ };
3845
+ required?: undefined;
3846
+ };
3847
+ } | {
3848
+ annotations: {
3849
+ readOnlyHint: boolean;
3850
+ destructiveHint: boolean;
3851
+ };
3852
+ name: string;
3853
+ description: string;
3854
+ inputSchema: {
3855
+ type: "object";
3856
+ properties: {
3857
+ type: {
3858
+ type: string;
3859
+ enum: string[];
3860
+ description: string;
3861
+ };
3862
+ limit: {
3863
+ type: string;
3864
+ description: string;
3865
+ };
3866
+ skip: {
3867
+ type: string;
3868
+ description: string;
3869
+ };
3870
+ showRead: {
3871
+ type: string;
3872
+ description: string;
3873
+ };
3874
+ group: {
3875
+ type: string;
3876
+ description: string;
3877
+ };
3878
+ search?: undefined;
3879
+ page?: undefined;
3880
+ stripDescription?: undefined;
3881
+ workspaceId?: undefined;
3882
+ title?: undefined;
3883
+ purpose?: undefined;
3884
+ governance?: undefined;
3885
+ plan?: undefined;
3886
+ apps?: undefined;
3887
+ layout?: undefined;
3888
+ query?: undefined;
3889
+ _listTitle?: undefined;
3890
+ nestId?: undefined;
3891
+ fieldsMetaData?: undefined;
3892
+ parentId?: undefined;
3893
+ description?: undefined;
3894
+ labels?: undefined;
3895
+ users?: undefined;
3896
+ accountabilities?: undefined;
3897
+ domains?: undefined;
3898
+ fields?: undefined;
3899
+ data?: undefined;
3900
+ due?: undefined;
3901
+ completed?: undefined;
3902
+ body?: undefined;
3903
+ commentId?: undefined;
3904
+ circleId?: undefined;
3905
+ includeSubCircles?: undefined;
3906
+ depth?: undefined;
3907
+ userId?: undefined;
3908
+ username?: undefined;
3909
+ fullName?: undefined;
3910
+ language?: undefined;
3911
+ labelId?: undefined;
3912
+ metricId?: undefined;
3913
+ from?: undefined;
3914
+ to?: undefined;
3915
+ completedAfter?: undefined;
3916
+ nestIds?: undefined;
3917
+ position?: undefined;
3918
+ relatedNestId?: undefined;
3919
+ color?: undefined;
3920
+ icon?: undefined;
3921
+ fullWorkspaces?: undefined;
3922
+ context?: undefined;
3592
3923
  feeling?: undefined;
3593
3924
  needs?: undefined;
3594
3925
  tensionId?: undefined;
@@ -3672,7 +4003,11 @@ export declare const toolDefinitions: ({
3672
4003
  relatedNestId?: undefined;
3673
4004
  color?: undefined;
3674
4005
  icon?: undefined;
4006
+ fullWorkspaces?: undefined;
3675
4007
  context?: undefined;
4008
+ skip?: undefined;
4009
+ showRead?: undefined;
4010
+ group?: undefined;
3676
4011
  tensionId?: undefined;
3677
4012
  order?: undefined;
3678
4013
  _id?: undefined;
@@ -3744,7 +4079,11 @@ export declare const toolDefinitions: ({
3744
4079
  relatedNestId?: undefined;
3745
4080
  color?: undefined;
3746
4081
  icon?: undefined;
4082
+ fullWorkspaces?: undefined;
3747
4083
  context?: undefined;
4084
+ skip?: undefined;
4085
+ showRead?: undefined;
4086
+ group?: undefined;
3748
4087
  feeling?: undefined;
3749
4088
  needs?: undefined;
3750
4089
  order?: undefined;
@@ -3823,7 +4162,11 @@ export declare const toolDefinitions: ({
3823
4162
  relatedNestId?: undefined;
3824
4163
  color?: undefined;
3825
4164
  icon?: undefined;
4165
+ fullWorkspaces?: undefined;
3826
4166
  context?: undefined;
4167
+ skip?: undefined;
4168
+ showRead?: undefined;
4169
+ group?: undefined;
3827
4170
  feeling?: undefined;
3828
4171
  needs?: undefined;
3829
4172
  tensionId?: undefined;
@@ -3910,7 +4253,11 @@ export declare const toolDefinitions: ({
3910
4253
  relatedNestId?: undefined;
3911
4254
  color?: undefined;
3912
4255
  icon?: undefined;
4256
+ fullWorkspaces?: undefined;
3913
4257
  context?: undefined;
4258
+ skip?: undefined;
4259
+ showRead?: undefined;
4260
+ group?: undefined;
3914
4261
  order?: undefined;
3915
4262
  _id?: undefined;
3916
4263
  removeNest?: undefined;
@@ -4028,7 +4375,11 @@ export declare const toolDefinitions: ({
4028
4375
  relatedNestId?: undefined;
4029
4376
  color?: undefined;
4030
4377
  icon?: undefined;
4378
+ fullWorkspaces?: undefined;
4031
4379
  context?: undefined;
4380
+ skip?: undefined;
4381
+ showRead?: undefined;
4382
+ group?: undefined;
4032
4383
  feeling?: undefined;
4033
4384
  needs?: undefined;
4034
4385
  order?: undefined;
@@ -4146,7 +4497,11 @@ export declare const toolDefinitions: ({
4146
4497
  relatedNestId?: undefined;
4147
4498
  color?: undefined;
4148
4499
  icon?: undefined;
4500
+ fullWorkspaces?: undefined;
4149
4501
  context?: undefined;
4502
+ skip?: undefined;
4503
+ showRead?: undefined;
4504
+ group?: undefined;
4150
4505
  feeling?: undefined;
4151
4506
  needs?: undefined;
4152
4507
  order?: undefined;
@@ -4221,7 +4576,11 @@ export declare const toolDefinitions: ({
4221
4576
  relatedNestId?: undefined;
4222
4577
  color?: undefined;
4223
4578
  icon?: undefined;
4579
+ fullWorkspaces?: undefined;
4224
4580
  context?: undefined;
4581
+ skip?: undefined;
4582
+ showRead?: undefined;
4583
+ group?: undefined;
4225
4584
  feeling?: undefined;
4226
4585
  needs?: undefined;
4227
4586
  order?: undefined;
@@ -4298,7 +4657,11 @@ export declare const toolDefinitions: ({
4298
4657
  relatedNestId?: undefined;
4299
4658
  color?: undefined;
4300
4659
  icon?: undefined;
4660
+ fullWorkspaces?: undefined;
4301
4661
  context?: undefined;
4662
+ skip?: undefined;
4663
+ showRead?: undefined;
4664
+ group?: undefined;
4302
4665
  feeling?: undefined;
4303
4666
  needs?: undefined;
4304
4667
  order?: undefined;