@nestr/mcp 0.1.105 → 0.1.106

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.
@@ -56,6 +56,39 @@ export declare function commentPlacementNote(requestedNestId: string, post: {
56
56
  parentId?: string;
57
57
  } | null | undefined): string | null;
58
58
  export declare function nestrWebBase(apiBase?: string): string;
59
+ /**
60
+ * Turn the tool-level `hints` argument into what the API should be sent.
61
+ *
62
+ * `false` means none. A level passes through. `undefined` and `true` both take the
63
+ * caller-appropriate default, which differs by call shape on purpose: a single read
64
+ * wants the teaching prose, a listing wants it once from nestr_help rather than once
65
+ * per row.
66
+ */
67
+ export declare function resolveHintLevel(value: boolean | "full" | "summary" | undefined, fallback: "full" | "summary"): "full" | "summary" | false;
68
+ /**
69
+ * Append `strict:true` unless the caller already asked for it.
70
+ *
71
+ * Without it an unrecognised operator, label or field filter is silently dropped and the
72
+ * search returns a broader result that looks like a real answer. That is fine for
73
+ * browsing and wrong for counting, so the tool exposes it as a flag rather than making
74
+ * every caller remember the operator.
75
+ */
76
+ export declare function withStrict(query: string, strict?: boolean): string;
77
+ interface ApiSpecFilter {
78
+ search?: string;
79
+ path?: string;
80
+ }
81
+ /**
82
+ * Reduce an OpenAPI document to something a model can read.
83
+ *
84
+ * The whole document is far too large to return, and returning nothing useful is how a
85
+ * caller ends up guessing whether an endpoint exists. So: an operation index by default,
86
+ * one operation in full when asked for by path, and a keyword filter in between. The
87
+ * counts matter as much as the rows — "0 of 94 operations match 'duration'" is the
88
+ * answer to "does the API store meeting duration", and it is a real negative rather than
89
+ * a failed search.
90
+ */
91
+ export declare function summariseApiSpec(spec: Record<string, unknown>, filter?: ApiSpecFilter): unknown;
59
92
  export declare function enrichHints<T>(data: T): T;
60
93
  export declare function containingTabHash(labels: unknown): string | undefined;
61
94
  export declare function addNestUrls<T>(data: T): T;
@@ -217,6 +250,8 @@ export declare const schemas: {
217
250
  search: z.ZodObject<{
218
251
  workspaceId: z.ZodString;
219
252
  query: z.ZodString;
253
+ strict: z.ZodOptional<z.ZodBoolean>;
254
+ linkedUsers: z.ZodOptional<z.ZodBoolean>;
220
255
  sort: z.ZodOptional<z.ZodString>;
221
256
  limit: z.ZodOptional<z.ZodNumber>;
222
257
  page: z.ZodOptional<z.ZodNumber>;
@@ -227,6 +262,8 @@ export declare const schemas: {
227
262
  sort?: string | undefined;
228
263
  limit?: number | undefined;
229
264
  page?: number | undefined;
265
+ linkedUsers?: boolean | undefined;
266
+ strict?: boolean | undefined;
230
267
  _listTitle?: string | undefined;
231
268
  }, {
232
269
  workspaceId: string;
@@ -234,20 +271,26 @@ export declare const schemas: {
234
271
  sort?: string | undefined;
235
272
  limit?: number | undefined;
236
273
  page?: number | undefined;
274
+ linkedUsers?: boolean | undefined;
275
+ strict?: boolean | undefined;
237
276
  _listTitle?: string | undefined;
238
277
  }>;
239
278
  getNest: z.ZodObject<{
240
- nestId: z.ZodString;
241
- fieldsMetaData: z.ZodOptional<z.ZodBoolean>;
242
- hints: z.ZodOptional<z.ZodBoolean>;
243
279
  provenance: z.ZodOptional<z.ZodBoolean>;
244
280
  rights: z.ZodOptional<z.ZodBoolean>;
245
281
  forUser: z.ZodOptional<z.ZodString>;
246
282
  whoCan: z.ZodOptional<z.ZodString>;
283
+ hintTypes: z.ZodOptional<z.ZodEffects<z.ZodArray<z.ZodString, "many">, string[], unknown>>;
284
+ minSeverity: z.ZodOptional<z.ZodEnum<["info", "suggestion", "warning", "alert"]>>;
285
+ nestId: z.ZodString;
286
+ fieldsMetaData: z.ZodOptional<z.ZodBoolean>;
287
+ hints: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodEnum<["full", "summary"]>]>>;
247
288
  }, "strip", z.ZodTypeAny, {
248
289
  nestId: string;
249
290
  fieldsMetaData?: boolean | undefined;
250
- hints?: boolean | undefined;
291
+ hints?: boolean | "full" | "summary" | undefined;
292
+ hintTypes?: string[] | undefined;
293
+ minSeverity?: "info" | "suggestion" | "warning" | "alert" | undefined;
251
294
  provenance?: boolean | undefined;
252
295
  rights?: boolean | undefined;
253
296
  forUser?: string | undefined;
@@ -255,7 +298,9 @@ export declare const schemas: {
255
298
  }, {
256
299
  nestId: string;
257
300
  fieldsMetaData?: boolean | undefined;
258
- hints?: boolean | undefined;
301
+ hints?: boolean | "full" | "summary" | undefined;
302
+ hintTypes?: unknown;
303
+ minSeverity?: "info" | "suggestion" | "warning" | "alert" | undefined;
259
304
  provenance?: boolean | undefined;
260
305
  rights?: boolean | undefined;
261
306
  forUser?: string | undefined;
@@ -275,27 +320,65 @@ export declare const schemas: {
275
320
  whoCan?: string | undefined;
276
321
  }>;
277
322
  getNestChildren: z.ZodObject<{
323
+ linkedUsers: z.ZodOptional<z.ZodBoolean>;
324
+ _listTitle: z.ZodOptional<z.ZodString>;
325
+ hintTypes: z.ZodOptional<z.ZodEffects<z.ZodArray<z.ZodString, "many">, string[], unknown>>;
326
+ minSeverity: z.ZodOptional<z.ZodEnum<["info", "suggestion", "warning", "alert"]>>;
278
327
  nestId: z.ZodString;
328
+ search: z.ZodOptional<z.ZodString>;
279
329
  sort: z.ZodOptional<z.ZodString>;
280
330
  limit: z.ZodOptional<z.ZodNumber>;
281
331
  page: z.ZodOptional<z.ZodNumber>;
282
- hints: z.ZodOptional<z.ZodBoolean>;
283
- _listTitle: z.ZodOptional<z.ZodString>;
332
+ hints: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodEnum<["full", "summary"]>]>>;
284
333
  }, "strip", z.ZodTypeAny, {
285
334
  nestId: string;
335
+ search?: string | undefined;
286
336
  sort?: string | undefined;
287
337
  limit?: number | undefined;
288
338
  page?: number | undefined;
289
- hints?: boolean | undefined;
339
+ hints?: boolean | "full" | "summary" | undefined;
340
+ hintTypes?: string[] | undefined;
341
+ minSeverity?: "info" | "suggestion" | "warning" | "alert" | undefined;
342
+ linkedUsers?: boolean | undefined;
290
343
  _listTitle?: string | undefined;
291
344
  }, {
292
345
  nestId: string;
346
+ search?: string | undefined;
293
347
  sort?: string | undefined;
294
348
  limit?: number | undefined;
295
349
  page?: number | undefined;
296
- hints?: boolean | undefined;
350
+ hints?: boolean | "full" | "summary" | undefined;
351
+ hintTypes?: unknown;
352
+ minSeverity?: "info" | "suggestion" | "warning" | "alert" | undefined;
353
+ linkedUsers?: boolean | undefined;
297
354
  _listTitle?: string | undefined;
298
355
  }>;
356
+ hintsRollup: z.ZodObject<{
357
+ nestId: z.ZodString;
358
+ hintTypes: z.ZodOptional<z.ZodEffects<z.ZodArray<z.ZodString, "many">, string[], unknown>>;
359
+ minSeverity: z.ZodOptional<z.ZodEnum<["info", "suggestion", "warning", "alert"]>>;
360
+ sampleSize: z.ZodOptional<z.ZodNumber>;
361
+ }, "strip", z.ZodTypeAny, {
362
+ nestId: string;
363
+ hintTypes?: string[] | undefined;
364
+ minSeverity?: "info" | "suggestion" | "warning" | "alert" | undefined;
365
+ sampleSize?: number | undefined;
366
+ }, {
367
+ nestId: string;
368
+ hintTypes?: unknown;
369
+ minSeverity?: "info" | "suggestion" | "warning" | "alert" | undefined;
370
+ sampleSize?: number | undefined;
371
+ }>;
372
+ apiSpec: z.ZodObject<{
373
+ search: z.ZodOptional<z.ZodString>;
374
+ path: z.ZodOptional<z.ZodString>;
375
+ }, "strip", z.ZodTypeAny, {
376
+ search?: string | undefined;
377
+ path?: string | undefined;
378
+ }, {
379
+ search?: string | undefined;
380
+ path?: string | undefined;
381
+ }>;
299
382
  createNest: z.ZodObject<{
300
383
  parentId: z.ZodString;
301
384
  title: z.ZodString;
@@ -459,16 +542,19 @@ export declare const schemas: {
459
542
  sort: z.ZodOptional<z.ZodString>;
460
543
  limit: z.ZodOptional<z.ZodNumber>;
461
544
  page: z.ZodOptional<z.ZodNumber>;
545
+ linkedUsers: z.ZodOptional<z.ZodBoolean>;
462
546
  }, "strip", z.ZodTypeAny, {
463
547
  workspaceId: string;
464
548
  sort?: string | undefined;
465
549
  limit?: number | undefined;
466
550
  page?: number | undefined;
551
+ linkedUsers?: boolean | undefined;
467
552
  }, {
468
553
  workspaceId: string;
469
554
  sort?: string | undefined;
470
555
  limit?: number | undefined;
471
556
  page?: number | undefined;
557
+ linkedUsers?: boolean | undefined;
472
558
  }>;
473
559
  listUserRoles: z.ZodObject<{
474
560
  userId: z.ZodOptional<z.ZodString>;
@@ -549,18 +635,21 @@ export declare const schemas: {
549
635
  sort: z.ZodOptional<z.ZodString>;
550
636
  limit: z.ZodOptional<z.ZodNumber>;
551
637
  page: z.ZodOptional<z.ZodNumber>;
638
+ linkedUsers: z.ZodOptional<z.ZodBoolean>;
552
639
  _listTitle: z.ZodOptional<z.ZodString>;
553
640
  }, "strip", z.ZodTypeAny, {
554
641
  workspaceId: string;
555
642
  sort?: string | undefined;
556
643
  limit?: number | undefined;
557
644
  page?: number | undefined;
645
+ linkedUsers?: boolean | undefined;
558
646
  _listTitle?: string | undefined;
559
647
  }, {
560
648
  workspaceId: string;
561
649
  sort?: string | undefined;
562
650
  limit?: number | undefined;
563
651
  page?: number | undefined;
652
+ linkedUsers?: boolean | undefined;
564
653
  _listTitle?: string | undefined;
565
654
  }>;
566
655
  getComments: z.ZodObject<{
@@ -882,21 +971,18 @@ export declare const schemas: {
882
971
  sort: z.ZodOptional<z.ZodString>;
883
972
  limit: z.ZodOptional<z.ZodNumber>;
884
973
  page: z.ZodOptional<z.ZodNumber>;
885
- order: z.ZodOptional<z.ZodString>;
886
974
  }, "strip", z.ZodTypeAny, {
887
975
  nestId: string;
888
976
  search?: string | undefined;
889
977
  sort?: string | undefined;
890
978
  limit?: number | undefined;
891
979
  page?: number | undefined;
892
- order?: string | undefined;
893
980
  }, {
894
981
  nestId: string;
895
982
  search?: string | undefined;
896
983
  sort?: string | undefined;
897
984
  limit?: number | undefined;
898
985
  page?: number | undefined;
899
- order?: string | undefined;
900
986
  }>;
901
987
  updateTension: z.ZodObject<{
902
988
  nestId: z.ZodString;
@@ -1612,14 +1698,20 @@ export declare const toolDefinitions: ({
1612
1698
  apps?: undefined;
1613
1699
  layout?: undefined;
1614
1700
  query?: undefined;
1701
+ strict?: undefined;
1702
+ linkedUsers?: undefined;
1615
1703
  _listTitle?: undefined;
1616
1704
  nestId?: undefined;
1617
1705
  fieldsMetaData?: undefined;
1618
1706
  hints?: undefined;
1707
+ hintTypes?: undefined;
1708
+ minSeverity?: undefined;
1619
1709
  provenance?: undefined;
1620
1710
  rights?: undefined;
1621
1711
  forUser?: undefined;
1622
1712
  whoCan?: undefined;
1713
+ sampleSize?: undefined;
1714
+ path?: undefined;
1623
1715
  parentId?: undefined;
1624
1716
  description?: undefined;
1625
1717
  labels?: undefined;
@@ -1728,14 +1820,20 @@ export declare const toolDefinitions: ({
1728
1820
  apps?: undefined;
1729
1821
  layout?: undefined;
1730
1822
  query?: undefined;
1823
+ strict?: undefined;
1824
+ linkedUsers?: undefined;
1731
1825
  _listTitle?: undefined;
1732
1826
  nestId?: undefined;
1733
1827
  fieldsMetaData?: undefined;
1734
1828
  hints?: undefined;
1829
+ hintTypes?: undefined;
1830
+ minSeverity?: undefined;
1735
1831
  provenance?: undefined;
1736
1832
  rights?: undefined;
1737
1833
  forUser?: undefined;
1738
1834
  whoCan?: undefined;
1835
+ sampleSize?: undefined;
1836
+ path?: undefined;
1739
1837
  parentId?: undefined;
1740
1838
  description?: undefined;
1741
1839
  labels?: undefined;
@@ -1859,14 +1957,20 @@ export declare const toolDefinitions: ({
1859
1957
  apps?: undefined;
1860
1958
  layout?: undefined;
1861
1959
  query?: undefined;
1960
+ strict?: undefined;
1961
+ linkedUsers?: undefined;
1862
1962
  _listTitle?: undefined;
1863
1963
  nestId?: undefined;
1864
1964
  fieldsMetaData?: undefined;
1865
1965
  hints?: undefined;
1966
+ hintTypes?: undefined;
1967
+ minSeverity?: undefined;
1866
1968
  provenance?: undefined;
1867
1969
  rights?: undefined;
1868
1970
  forUser?: undefined;
1869
1971
  whoCan?: undefined;
1972
+ sampleSize?: undefined;
1973
+ path?: undefined;
1870
1974
  parentId?: undefined;
1871
1975
  description?: undefined;
1872
1976
  labels?: undefined;
@@ -1981,14 +2085,20 @@ export declare const toolDefinitions: ({
1981
2085
  apps?: undefined;
1982
2086
  layout?: undefined;
1983
2087
  query?: undefined;
2088
+ strict?: undefined;
2089
+ linkedUsers?: undefined;
1984
2090
  _listTitle?: undefined;
1985
2091
  nestId?: undefined;
1986
2092
  fieldsMetaData?: undefined;
1987
2093
  hints?: undefined;
2094
+ hintTypes?: undefined;
2095
+ minSeverity?: undefined;
1988
2096
  provenance?: undefined;
1989
2097
  rights?: undefined;
1990
2098
  forUser?: undefined;
1991
2099
  whoCan?: undefined;
2100
+ sampleSize?: undefined;
2101
+ path?: undefined;
1992
2102
  parentId?: undefined;
1993
2103
  description?: undefined;
1994
2104
  labels?: undefined;
@@ -2126,14 +2236,20 @@ export declare const toolDefinitions: ({
2126
2236
  stripDescription?: undefined;
2127
2237
  workspaceId?: undefined;
2128
2238
  query?: undefined;
2239
+ strict?: undefined;
2240
+ linkedUsers?: undefined;
2129
2241
  _listTitle?: undefined;
2130
2242
  nestId?: undefined;
2131
2243
  fieldsMetaData?: undefined;
2132
2244
  hints?: undefined;
2245
+ hintTypes?: undefined;
2246
+ minSeverity?: undefined;
2133
2247
  provenance?: undefined;
2134
2248
  rights?: undefined;
2135
2249
  forUser?: undefined;
2136
2250
  whoCan?: undefined;
2251
+ sampleSize?: undefined;
2252
+ path?: undefined;
2137
2253
  parentId?: undefined;
2138
2254
  description?: undefined;
2139
2255
  labels?: undefined;
@@ -2232,6 +2348,14 @@ export declare const toolDefinitions: ({
2232
2348
  type: string;
2233
2349
  description: string;
2234
2350
  };
2351
+ strict: {
2352
+ type: string;
2353
+ description: string;
2354
+ };
2355
+ linkedUsers: {
2356
+ type: string;
2357
+ description: string;
2358
+ };
2235
2359
  sort: {
2236
2360
  type: string;
2237
2361
  description: string;
@@ -2267,10 +2391,14 @@ export declare const toolDefinitions: ({
2267
2391
  nestId?: undefined;
2268
2392
  fieldsMetaData?: undefined;
2269
2393
  hints?: undefined;
2394
+ hintTypes?: undefined;
2395
+ minSeverity?: undefined;
2270
2396
  provenance?: undefined;
2271
2397
  rights?: undefined;
2272
2398
  forUser?: undefined;
2273
2399
  whoCan?: undefined;
2400
+ sampleSize?: undefined;
2401
+ path?: undefined;
2274
2402
  parentId?: undefined;
2275
2403
  description?: undefined;
2276
2404
  labels?: undefined;
@@ -2370,7 +2498,20 @@ export declare const toolDefinitions: ({
2370
2498
  description: string;
2371
2499
  };
2372
2500
  hints: {
2501
+ type: string[];
2502
+ enum: (string | boolean)[];
2503
+ description: string;
2504
+ };
2505
+ hintTypes: {
2373
2506
  type: string;
2507
+ items: {
2508
+ type: string;
2509
+ };
2510
+ description: string;
2511
+ };
2512
+ minSeverity: {
2513
+ type: string;
2514
+ enum: string[];
2374
2515
  description: string;
2375
2516
  };
2376
2517
  stripDescription: {
@@ -2410,7 +2551,11 @@ export declare const toolDefinitions: ({
2410
2551
  apps?: undefined;
2411
2552
  layout?: undefined;
2412
2553
  query?: undefined;
2554
+ strict?: undefined;
2555
+ linkedUsers?: undefined;
2413
2556
  _listTitle?: undefined;
2557
+ sampleSize?: undefined;
2558
+ path?: undefined;
2414
2559
  parentId?: undefined;
2415
2560
  description?: undefined;
2416
2561
  labels?: undefined;
@@ -2531,11 +2676,17 @@ export declare const toolDefinitions: ({
2531
2676
  apps?: undefined;
2532
2677
  layout?: undefined;
2533
2678
  query?: undefined;
2679
+ strict?: undefined;
2680
+ linkedUsers?: undefined;
2534
2681
  _listTitle?: undefined;
2535
2682
  fieldsMetaData?: undefined;
2536
2683
  hints?: undefined;
2684
+ hintTypes?: undefined;
2685
+ minSeverity?: undefined;
2537
2686
  provenance?: undefined;
2538
2687
  rights?: undefined;
2688
+ sampleSize?: undefined;
2689
+ path?: undefined;
2539
2690
  parentId?: undefined;
2540
2691
  description?: undefined;
2541
2692
  labels?: undefined;
@@ -2630,6 +2781,10 @@ export declare const toolDefinitions: ({
2630
2781
  type: string;
2631
2782
  description: string;
2632
2783
  };
2784
+ search: {
2785
+ type: string;
2786
+ description: string;
2787
+ };
2633
2788
  sort: {
2634
2789
  type: string;
2635
2790
  description: string;
@@ -2643,6 +2798,23 @@ export declare const toolDefinitions: ({
2643
2798
  description: string;
2644
2799
  };
2645
2800
  hints: {
2801
+ type: string[];
2802
+ enum: (string | boolean)[];
2803
+ description: string;
2804
+ };
2805
+ hintTypes: {
2806
+ type: string;
2807
+ items: {
2808
+ type: string;
2809
+ };
2810
+ description: string;
2811
+ };
2812
+ minSeverity: {
2813
+ type: string;
2814
+ enum: string[];
2815
+ description: string;
2816
+ };
2817
+ linkedUsers: {
2646
2818
  type: string;
2647
2819
  description: string;
2648
2820
  };
@@ -2655,10 +2827,145 @@ export declare const toolDefinitions: ({
2655
2827
  description: string;
2656
2828
  };
2657
2829
  topic?: undefined;
2830
+ includeImages?: undefined;
2831
+ imageIndexes?: undefined;
2832
+ maxImages?: undefined;
2833
+ workspaceId?: undefined;
2834
+ title?: undefined;
2835
+ purpose?: undefined;
2836
+ type?: undefined;
2837
+ governance?: undefined;
2838
+ plan?: undefined;
2839
+ apps?: undefined;
2840
+ layout?: undefined;
2841
+ query?: undefined;
2842
+ strict?: undefined;
2843
+ fieldsMetaData?: undefined;
2844
+ provenance?: undefined;
2845
+ rights?: undefined;
2846
+ forUser?: undefined;
2847
+ whoCan?: undefined;
2848
+ sampleSize?: undefined;
2849
+ path?: undefined;
2850
+ parentId?: undefined;
2851
+ description?: undefined;
2852
+ labels?: undefined;
2853
+ fields?: undefined;
2854
+ users?: undefined;
2855
+ due?: undefined;
2856
+ accountabilities?: undefined;
2857
+ domains?: undefined;
2858
+ data?: undefined;
2859
+ completed?: undefined;
2860
+ body?: undefined;
2861
+ commentId?: undefined;
2862
+ circleId?: undefined;
2863
+ userId?: undefined;
2864
+ withUser?: undefined;
2865
+ unread?: undefined;
2866
+ includeCompleted?: undefined;
2867
+ user?: undefined;
2868
+ key?: undefined;
2869
+ threadId?: undefined;
2870
+ depth?: undefined;
2871
+ postId?: undefined;
2872
+ reason?: undefined;
2873
+ includeSubCircles?: undefined;
2874
+ endDate?: undefined;
2875
+ metricId?: undefined;
2876
+ agents?: undefined;
2877
+ username?: undefined;
2878
+ fullName?: undefined;
2879
+ language?: undefined;
2880
+ labelId?: undefined;
2881
+ from?: undefined;
2882
+ to?: undefined;
2883
+ completedAfter?: undefined;
2884
+ nestIds?: undefined;
2885
+ position?: undefined;
2886
+ relatedNestId?: undefined;
2887
+ color?: undefined;
2888
+ icon?: undefined;
2889
+ fullWorkspaces?: undefined;
2890
+ context?: undefined;
2891
+ skip?: undefined;
2892
+ showRead?: undefined;
2893
+ group?: undefined;
2894
+ feeling?: undefined;
2895
+ needs?: undefined;
2896
+ tensionId?: undefined;
2897
+ _id?: undefined;
2898
+ role?: undefined;
2899
+ roleId?: undefined;
2900
+ removeNest?: undefined;
2901
+ partId?: undefined;
2902
+ childId?: undefined;
2903
+ status?: undefined;
2904
+ relation?: undefined;
2905
+ direction?: undefined;
2906
+ targetId?: undefined;
2907
+ templateId?: undefined;
2908
+ name?: undefined;
2909
+ config?: undefined;
2910
+ capabilities?: undefined;
2911
+ exposure?: undefined;
2912
+ authStrategy?: undefined;
2913
+ roleAssignable?: undefined;
2914
+ agentConfig?: undefined;
2915
+ connectorId?: undefined;
2916
+ ownerType?: undefined;
2917
+ ownerId?: undefined;
2918
+ enabled?: undefined;
2919
+ includeDisabled?: undefined;
2920
+ connectionId?: undefined;
2921
+ agentUserId?: undefined;
2922
+ message?: undefined;
2923
+ fileId?: undefined;
2924
+ contentType?: undefined;
2925
+ content?: undefined;
2926
+ dataBase64?: undefined;
2927
+ };
2928
+ required: string[];
2929
+ };
2930
+ } | {
2931
+ annotations: {
2932
+ readOnlyHint: boolean;
2933
+ destructiveHint: boolean;
2934
+ };
2935
+ name: string;
2936
+ description: string;
2937
+ inputSchema: {
2938
+ type: "object";
2939
+ properties: {
2940
+ nestId: {
2941
+ type: string;
2942
+ description: string;
2943
+ };
2944
+ hintTypes: {
2945
+ type: string;
2946
+ items: {
2947
+ type: string;
2948
+ };
2949
+ description: string;
2950
+ };
2951
+ minSeverity: {
2952
+ type: string;
2953
+ enum: string[];
2954
+ description: string;
2955
+ };
2956
+ sampleSize: {
2957
+ type: string;
2958
+ description: string;
2959
+ };
2960
+ topic?: undefined;
2658
2961
  search?: undefined;
2659
2962
  includeImages?: undefined;
2660
2963
  imageIndexes?: undefined;
2661
2964
  maxImages?: undefined;
2965
+ sort?: undefined;
2966
+ limit?: undefined;
2967
+ page?: undefined;
2968
+ stripDescription?: undefined;
2662
2969
  workspaceId?: undefined;
2663
2970
  title?: undefined;
2664
2971
  purpose?: undefined;
@@ -2668,11 +2975,16 @@ export declare const toolDefinitions: ({
2668
2975
  apps?: undefined;
2669
2976
  layout?: undefined;
2670
2977
  query?: undefined;
2978
+ strict?: undefined;
2979
+ linkedUsers?: undefined;
2980
+ _listTitle?: undefined;
2671
2981
  fieldsMetaData?: undefined;
2982
+ hints?: undefined;
2672
2983
  provenance?: undefined;
2673
2984
  rights?: undefined;
2674
2985
  forUser?: undefined;
2675
2986
  whoCan?: undefined;
2987
+ path?: undefined;
2676
2988
  parentId?: undefined;
2677
2989
  description?: undefined;
2678
2990
  labels?: undefined;
@@ -2753,6 +3065,134 @@ export declare const toolDefinitions: ({
2753
3065
  };
2754
3066
  required: string[];
2755
3067
  };
3068
+ } | {
3069
+ annotations: {
3070
+ readOnlyHint: boolean;
3071
+ destructiveHint: boolean;
3072
+ };
3073
+ name: string;
3074
+ description: string;
3075
+ inputSchema: {
3076
+ type: "object";
3077
+ properties: {
3078
+ search: {
3079
+ type: string;
3080
+ description: string;
3081
+ };
3082
+ path: {
3083
+ type: string;
3084
+ description: string;
3085
+ };
3086
+ topic?: undefined;
3087
+ includeImages?: undefined;
3088
+ imageIndexes?: undefined;
3089
+ maxImages?: undefined;
3090
+ sort?: undefined;
3091
+ limit?: undefined;
3092
+ page?: undefined;
3093
+ stripDescription?: undefined;
3094
+ workspaceId?: undefined;
3095
+ title?: undefined;
3096
+ purpose?: undefined;
3097
+ type?: undefined;
3098
+ governance?: undefined;
3099
+ plan?: undefined;
3100
+ apps?: undefined;
3101
+ layout?: undefined;
3102
+ query?: undefined;
3103
+ strict?: undefined;
3104
+ linkedUsers?: undefined;
3105
+ _listTitle?: undefined;
3106
+ nestId?: undefined;
3107
+ fieldsMetaData?: undefined;
3108
+ hints?: undefined;
3109
+ hintTypes?: undefined;
3110
+ minSeverity?: undefined;
3111
+ provenance?: undefined;
3112
+ rights?: undefined;
3113
+ forUser?: undefined;
3114
+ whoCan?: undefined;
3115
+ sampleSize?: undefined;
3116
+ parentId?: undefined;
3117
+ description?: undefined;
3118
+ labels?: undefined;
3119
+ fields?: undefined;
3120
+ users?: undefined;
3121
+ due?: undefined;
3122
+ accountabilities?: undefined;
3123
+ domains?: undefined;
3124
+ data?: undefined;
3125
+ completed?: undefined;
3126
+ body?: undefined;
3127
+ commentId?: undefined;
3128
+ circleId?: undefined;
3129
+ userId?: undefined;
3130
+ withUser?: undefined;
3131
+ unread?: undefined;
3132
+ includeCompleted?: undefined;
3133
+ user?: undefined;
3134
+ key?: undefined;
3135
+ threadId?: undefined;
3136
+ depth?: undefined;
3137
+ postId?: undefined;
3138
+ reason?: undefined;
3139
+ includeSubCircles?: undefined;
3140
+ endDate?: undefined;
3141
+ metricId?: undefined;
3142
+ agents?: undefined;
3143
+ username?: undefined;
3144
+ fullName?: undefined;
3145
+ language?: undefined;
3146
+ labelId?: undefined;
3147
+ from?: undefined;
3148
+ to?: undefined;
3149
+ completedAfter?: undefined;
3150
+ nestIds?: undefined;
3151
+ position?: undefined;
3152
+ relatedNestId?: undefined;
3153
+ color?: undefined;
3154
+ icon?: undefined;
3155
+ fullWorkspaces?: undefined;
3156
+ context?: undefined;
3157
+ skip?: undefined;
3158
+ showRead?: undefined;
3159
+ group?: undefined;
3160
+ feeling?: undefined;
3161
+ needs?: undefined;
3162
+ tensionId?: undefined;
3163
+ _id?: undefined;
3164
+ role?: undefined;
3165
+ roleId?: undefined;
3166
+ removeNest?: undefined;
3167
+ partId?: undefined;
3168
+ childId?: undefined;
3169
+ status?: undefined;
3170
+ relation?: undefined;
3171
+ direction?: undefined;
3172
+ targetId?: undefined;
3173
+ templateId?: undefined;
3174
+ name?: undefined;
3175
+ config?: undefined;
3176
+ capabilities?: undefined;
3177
+ exposure?: undefined;
3178
+ authStrategy?: undefined;
3179
+ roleAssignable?: undefined;
3180
+ agentConfig?: undefined;
3181
+ connectorId?: undefined;
3182
+ ownerType?: undefined;
3183
+ ownerId?: undefined;
3184
+ enabled?: undefined;
3185
+ includeDisabled?: undefined;
3186
+ connectionId?: undefined;
3187
+ agentUserId?: undefined;
3188
+ message?: undefined;
3189
+ fileId?: undefined;
3190
+ contentType?: undefined;
3191
+ content?: undefined;
3192
+ dataBase64?: undefined;
3193
+ };
3194
+ required?: undefined;
3195
+ };
2756
3196
  } | {
2757
3197
  annotations: {
2758
3198
  readOnlyHint: boolean;
@@ -2834,14 +3274,20 @@ export declare const toolDefinitions: ({
2834
3274
  apps?: undefined;
2835
3275
  layout?: undefined;
2836
3276
  query?: undefined;
3277
+ strict?: undefined;
3278
+ linkedUsers?: undefined;
2837
3279
  _listTitle?: undefined;
2838
3280
  nestId?: undefined;
2839
3281
  fieldsMetaData?: undefined;
2840
3282
  hints?: undefined;
3283
+ hintTypes?: undefined;
3284
+ minSeverity?: undefined;
2841
3285
  provenance?: undefined;
2842
3286
  rights?: undefined;
2843
3287
  forUser?: undefined;
2844
3288
  whoCan?: undefined;
3289
+ sampleSize?: undefined;
3290
+ path?: undefined;
2845
3291
  data?: undefined;
2846
3292
  completed?: undefined;
2847
3293
  body?: undefined;
@@ -3007,13 +3453,19 @@ export declare const toolDefinitions: ({
3007
3453
  apps?: undefined;
3008
3454
  layout?: undefined;
3009
3455
  query?: undefined;
3456
+ strict?: undefined;
3457
+ linkedUsers?: undefined;
3010
3458
  _listTitle?: undefined;
3011
3459
  fieldsMetaData?: undefined;
3012
3460
  hints?: undefined;
3461
+ hintTypes?: undefined;
3462
+ minSeverity?: undefined;
3013
3463
  provenance?: undefined;
3014
3464
  rights?: undefined;
3015
3465
  forUser?: undefined;
3016
3466
  whoCan?: undefined;
3467
+ sampleSize?: undefined;
3468
+ path?: undefined;
3017
3469
  body?: undefined;
3018
3470
  commentId?: undefined;
3019
3471
  circleId?: undefined;
@@ -3116,13 +3568,19 @@ export declare const toolDefinitions: ({
3116
3568
  apps?: undefined;
3117
3569
  layout?: undefined;
3118
3570
  query?: undefined;
3571
+ strict?: undefined;
3572
+ linkedUsers?: undefined;
3119
3573
  _listTitle?: undefined;
3120
3574
  fieldsMetaData?: undefined;
3121
3575
  hints?: undefined;
3576
+ hintTypes?: undefined;
3577
+ minSeverity?: undefined;
3122
3578
  provenance?: undefined;
3123
3579
  rights?: undefined;
3124
3580
  forUser?: undefined;
3125
3581
  whoCan?: undefined;
3582
+ sampleSize?: undefined;
3583
+ path?: undefined;
3126
3584
  parentId?: undefined;
3127
3585
  description?: undefined;
3128
3586
  labels?: undefined;
@@ -3246,13 +3704,19 @@ export declare const toolDefinitions: ({
3246
3704
  apps?: undefined;
3247
3705
  layout?: undefined;
3248
3706
  query?: undefined;
3707
+ strict?: undefined;
3708
+ linkedUsers?: undefined;
3249
3709
  _listTitle?: undefined;
3250
3710
  fieldsMetaData?: undefined;
3251
3711
  hints?: undefined;
3712
+ hintTypes?: undefined;
3713
+ minSeverity?: undefined;
3252
3714
  provenance?: undefined;
3253
3715
  rights?: undefined;
3254
3716
  forUser?: undefined;
3255
3717
  whoCan?: undefined;
3718
+ sampleSize?: undefined;
3719
+ path?: undefined;
3256
3720
  parentId?: undefined;
3257
3721
  description?: undefined;
3258
3722
  fields?: undefined;
@@ -3374,14 +3838,20 @@ export declare const toolDefinitions: ({
3374
3838
  apps?: undefined;
3375
3839
  layout?: undefined;
3376
3840
  query?: undefined;
3841
+ strict?: undefined;
3842
+ linkedUsers?: undefined;
3377
3843
  _listTitle?: undefined;
3378
3844
  nestId?: undefined;
3379
3845
  fieldsMetaData?: undefined;
3380
3846
  hints?: undefined;
3847
+ hintTypes?: undefined;
3848
+ minSeverity?: undefined;
3381
3849
  provenance?: undefined;
3382
3850
  rights?: undefined;
3383
3851
  forUser?: undefined;
3384
3852
  whoCan?: undefined;
3853
+ sampleSize?: undefined;
3854
+ path?: undefined;
3385
3855
  parentId?: undefined;
3386
3856
  description?: undefined;
3387
3857
  fields?: undefined;
@@ -3491,14 +3961,20 @@ export declare const toolDefinitions: ({
3491
3961
  apps?: undefined;
3492
3962
  layout?: undefined;
3493
3963
  query?: undefined;
3964
+ strict?: undefined;
3965
+ linkedUsers?: undefined;
3494
3966
  _listTitle?: undefined;
3495
3967
  nestId?: undefined;
3496
3968
  fieldsMetaData?: undefined;
3497
3969
  hints?: undefined;
3970
+ hintTypes?: undefined;
3971
+ minSeverity?: undefined;
3498
3972
  provenance?: undefined;
3499
3973
  rights?: undefined;
3500
3974
  forUser?: undefined;
3501
3975
  whoCan?: undefined;
3976
+ sampleSize?: undefined;
3977
+ path?: undefined;
3502
3978
  parentId?: undefined;
3503
3979
  description?: undefined;
3504
3980
  labels?: undefined;
@@ -3621,14 +4097,20 @@ export declare const toolDefinitions: ({
3621
4097
  apps?: undefined;
3622
4098
  layout?: undefined;
3623
4099
  query?: undefined;
4100
+ strict?: undefined;
4101
+ linkedUsers?: undefined;
3624
4102
  _listTitle?: undefined;
3625
4103
  nestId?: undefined;
3626
4104
  fieldsMetaData?: undefined;
3627
4105
  hints?: undefined;
4106
+ hintTypes?: undefined;
4107
+ minSeverity?: undefined;
3628
4108
  provenance?: undefined;
3629
4109
  rights?: undefined;
3630
4110
  forUser?: undefined;
3631
4111
  whoCan?: undefined;
4112
+ sampleSize?: undefined;
4113
+ path?: undefined;
3632
4114
  parentId?: undefined;
3633
4115
  description?: undefined;
3634
4116
  labels?: undefined;
@@ -3756,14 +4238,20 @@ export declare const toolDefinitions: ({
3756
4238
  apps?: undefined;
3757
4239
  layout?: undefined;
3758
4240
  query?: undefined;
4241
+ strict?: undefined;
4242
+ linkedUsers?: undefined;
3759
4243
  _listTitle?: undefined;
3760
4244
  nestId?: undefined;
3761
4245
  fieldsMetaData?: undefined;
3762
4246
  hints?: undefined;
4247
+ hintTypes?: undefined;
4248
+ minSeverity?: undefined;
3763
4249
  provenance?: undefined;
3764
4250
  rights?: undefined;
3765
4251
  forUser?: undefined;
3766
4252
  whoCan?: undefined;
4253
+ sampleSize?: undefined;
4254
+ path?: undefined;
3767
4255
  parentId?: undefined;
3768
4256
  description?: undefined;
3769
4257
  labels?: undefined;
@@ -3878,14 +4366,20 @@ export declare const toolDefinitions: ({
3878
4366
  apps?: undefined;
3879
4367
  layout?: undefined;
3880
4368
  query?: undefined;
4369
+ strict?: undefined;
4370
+ linkedUsers?: undefined;
3881
4371
  _listTitle?: undefined;
3882
4372
  nestId?: undefined;
3883
4373
  fieldsMetaData?: undefined;
3884
4374
  hints?: undefined;
4375
+ hintTypes?: undefined;
4376
+ minSeverity?: undefined;
3885
4377
  provenance?: undefined;
3886
4378
  rights?: undefined;
3887
4379
  forUser?: undefined;
3888
4380
  whoCan?: undefined;
4381
+ sampleSize?: undefined;
4382
+ path?: undefined;
3889
4383
  parentId?: undefined;
3890
4384
  description?: undefined;
3891
4385
  labels?: undefined;
@@ -3965,6 +4459,146 @@ export declare const toolDefinitions: ({
3965
4459
  };
3966
4460
  required?: undefined;
3967
4461
  };
4462
+ } | {
4463
+ annotations: {
4464
+ readOnlyHint: boolean;
4465
+ destructiveHint: boolean;
4466
+ };
4467
+ name: string;
4468
+ description: string;
4469
+ inputSchema: {
4470
+ type: "object";
4471
+ properties: {
4472
+ workspaceId: {
4473
+ type: string;
4474
+ description: string;
4475
+ };
4476
+ sort: {
4477
+ type: string;
4478
+ description: string;
4479
+ };
4480
+ limit: {
4481
+ type: string;
4482
+ description: string;
4483
+ };
4484
+ page: {
4485
+ type: string;
4486
+ description: string;
4487
+ };
4488
+ stripDescription: {
4489
+ type: string;
4490
+ description: string;
4491
+ };
4492
+ linkedUsers: {
4493
+ type: string;
4494
+ description: string;
4495
+ };
4496
+ topic?: undefined;
4497
+ search?: undefined;
4498
+ includeImages?: undefined;
4499
+ imageIndexes?: undefined;
4500
+ maxImages?: undefined;
4501
+ title?: undefined;
4502
+ purpose?: undefined;
4503
+ type?: undefined;
4504
+ governance?: undefined;
4505
+ plan?: undefined;
4506
+ apps?: undefined;
4507
+ layout?: undefined;
4508
+ query?: undefined;
4509
+ strict?: undefined;
4510
+ _listTitle?: undefined;
4511
+ nestId?: undefined;
4512
+ fieldsMetaData?: undefined;
4513
+ hints?: undefined;
4514
+ hintTypes?: undefined;
4515
+ minSeverity?: undefined;
4516
+ provenance?: undefined;
4517
+ rights?: undefined;
4518
+ forUser?: undefined;
4519
+ whoCan?: undefined;
4520
+ sampleSize?: undefined;
4521
+ path?: undefined;
4522
+ parentId?: undefined;
4523
+ description?: undefined;
4524
+ labels?: undefined;
4525
+ fields?: undefined;
4526
+ users?: undefined;
4527
+ due?: undefined;
4528
+ accountabilities?: undefined;
4529
+ domains?: undefined;
4530
+ data?: undefined;
4531
+ completed?: undefined;
4532
+ body?: undefined;
4533
+ commentId?: undefined;
4534
+ circleId?: undefined;
4535
+ userId?: undefined;
4536
+ withUser?: undefined;
4537
+ unread?: undefined;
4538
+ includeCompleted?: undefined;
4539
+ user?: undefined;
4540
+ key?: undefined;
4541
+ threadId?: undefined;
4542
+ depth?: undefined;
4543
+ postId?: undefined;
4544
+ reason?: undefined;
4545
+ includeSubCircles?: undefined;
4546
+ endDate?: undefined;
4547
+ metricId?: undefined;
4548
+ agents?: undefined;
4549
+ username?: undefined;
4550
+ fullName?: undefined;
4551
+ language?: undefined;
4552
+ labelId?: undefined;
4553
+ from?: undefined;
4554
+ to?: undefined;
4555
+ completedAfter?: undefined;
4556
+ nestIds?: undefined;
4557
+ position?: undefined;
4558
+ relatedNestId?: undefined;
4559
+ color?: undefined;
4560
+ icon?: undefined;
4561
+ fullWorkspaces?: undefined;
4562
+ context?: undefined;
4563
+ skip?: undefined;
4564
+ showRead?: undefined;
4565
+ group?: undefined;
4566
+ feeling?: undefined;
4567
+ needs?: undefined;
4568
+ tensionId?: undefined;
4569
+ _id?: undefined;
4570
+ role?: undefined;
4571
+ roleId?: undefined;
4572
+ removeNest?: undefined;
4573
+ partId?: undefined;
4574
+ childId?: undefined;
4575
+ status?: undefined;
4576
+ relation?: undefined;
4577
+ direction?: undefined;
4578
+ targetId?: undefined;
4579
+ templateId?: undefined;
4580
+ name?: undefined;
4581
+ config?: undefined;
4582
+ capabilities?: undefined;
4583
+ exposure?: undefined;
4584
+ authStrategy?: undefined;
4585
+ roleAssignable?: undefined;
4586
+ agentConfig?: undefined;
4587
+ connectorId?: undefined;
4588
+ ownerType?: undefined;
4589
+ ownerId?: undefined;
4590
+ enabled?: undefined;
4591
+ includeDisabled?: undefined;
4592
+ connectionId?: undefined;
4593
+ agentUserId?: undefined;
4594
+ message?: undefined;
4595
+ fileId?: undefined;
4596
+ contentType?: undefined;
4597
+ content?: undefined;
4598
+ dataBase64?: undefined;
4599
+ };
4600
+ required: string[];
4601
+ };
3968
4602
  } | {
3969
4603
  annotations: {
3970
4604
  readOnlyHint: boolean;
@@ -4011,14 +4645,20 @@ export declare const toolDefinitions: ({
4011
4645
  apps?: undefined;
4012
4646
  layout?: undefined;
4013
4647
  query?: undefined;
4648
+ strict?: undefined;
4649
+ linkedUsers?: undefined;
4014
4650
  _listTitle?: undefined;
4015
4651
  nestId?: undefined;
4016
4652
  fieldsMetaData?: undefined;
4017
4653
  hints?: undefined;
4654
+ hintTypes?: undefined;
4655
+ minSeverity?: undefined;
4018
4656
  provenance?: undefined;
4019
4657
  rights?: undefined;
4020
4658
  forUser?: undefined;
4021
4659
  whoCan?: undefined;
4660
+ sampleSize?: undefined;
4661
+ path?: undefined;
4022
4662
  parentId?: undefined;
4023
4663
  description?: undefined;
4024
4664
  labels?: undefined;
@@ -4131,14 +4771,20 @@ export declare const toolDefinitions: ({
4131
4771
  apps?: undefined;
4132
4772
  layout?: undefined;
4133
4773
  query?: undefined;
4774
+ strict?: undefined;
4775
+ linkedUsers?: undefined;
4134
4776
  _listTitle?: undefined;
4135
4777
  nestId?: undefined;
4136
4778
  fieldsMetaData?: undefined;
4137
4779
  hints?: undefined;
4780
+ hintTypes?: undefined;
4781
+ minSeverity?: undefined;
4138
4782
  provenance?: undefined;
4139
4783
  rights?: undefined;
4140
4784
  forUser?: undefined;
4141
4785
  whoCan?: undefined;
4786
+ sampleSize?: undefined;
4787
+ path?: undefined;
4142
4788
  parentId?: undefined;
4143
4789
  description?: undefined;
4144
4790
  labels?: undefined;
@@ -4254,14 +4900,20 @@ export declare const toolDefinitions: ({
4254
4900
  apps?: undefined;
4255
4901
  layout?: undefined;
4256
4902
  query?: undefined;
4903
+ strict?: undefined;
4904
+ linkedUsers?: undefined;
4257
4905
  _listTitle?: undefined;
4258
4906
  nestId?: undefined;
4259
4907
  fieldsMetaData?: undefined;
4260
4908
  hints?: undefined;
4909
+ hintTypes?: undefined;
4910
+ minSeverity?: undefined;
4261
4911
  provenance?: undefined;
4262
4912
  rights?: undefined;
4263
4913
  forUser?: undefined;
4264
4914
  whoCan?: undefined;
4915
+ sampleSize?: undefined;
4916
+ path?: undefined;
4265
4917
  parentId?: undefined;
4266
4918
  description?: undefined;
4267
4919
  labels?: undefined;
@@ -4376,14 +5028,20 @@ export declare const toolDefinitions: ({
4376
5028
  apps?: undefined;
4377
5029
  layout?: undefined;
4378
5030
  query?: undefined;
5031
+ strict?: undefined;
5032
+ linkedUsers?: undefined;
4379
5033
  _listTitle?: undefined;
4380
5034
  nestId?: undefined;
4381
5035
  fieldsMetaData?: undefined;
4382
5036
  hints?: undefined;
5037
+ hintTypes?: undefined;
5038
+ minSeverity?: undefined;
4383
5039
  provenance?: undefined;
4384
5040
  rights?: undefined;
4385
5041
  forUser?: undefined;
4386
5042
  whoCan?: undefined;
5043
+ sampleSize?: undefined;
5044
+ path?: undefined;
4387
5045
  parentId?: undefined;
4388
5046
  description?: undefined;
4389
5047
  labels?: undefined;
@@ -4508,14 +5166,20 @@ export declare const toolDefinitions: ({
4508
5166
  apps?: undefined;
4509
5167
  layout?: undefined;
4510
5168
  query?: undefined;
5169
+ strict?: undefined;
5170
+ linkedUsers?: undefined;
4511
5171
  _listTitle?: undefined;
4512
5172
  nestId?: undefined;
4513
5173
  fieldsMetaData?: undefined;
4514
5174
  hints?: undefined;
5175
+ hintTypes?: undefined;
5176
+ minSeverity?: undefined;
4515
5177
  provenance?: undefined;
4516
5178
  rights?: undefined;
4517
5179
  forUser?: undefined;
4518
5180
  whoCan?: undefined;
5181
+ sampleSize?: undefined;
5182
+ path?: undefined;
4519
5183
  parentId?: undefined;
4520
5184
  description?: undefined;
4521
5185
  labels?: undefined;
@@ -4634,14 +5298,20 @@ export declare const toolDefinitions: ({
4634
5298
  apps?: undefined;
4635
5299
  layout?: undefined;
4636
5300
  query?: undefined;
5301
+ strict?: undefined;
5302
+ linkedUsers?: undefined;
4637
5303
  _listTitle?: undefined;
4638
5304
  nestId?: undefined;
4639
5305
  fieldsMetaData?: undefined;
4640
5306
  hints?: undefined;
5307
+ hintTypes?: undefined;
5308
+ minSeverity?: undefined;
4641
5309
  provenance?: undefined;
4642
5310
  rights?: undefined;
4643
5311
  forUser?: undefined;
4644
5312
  whoCan?: undefined;
5313
+ sampleSize?: undefined;
5314
+ path?: undefined;
4645
5315
  parentId?: undefined;
4646
5316
  description?: undefined;
4647
5317
  labels?: undefined;
@@ -4755,14 +5425,20 @@ export declare const toolDefinitions: ({
4755
5425
  apps?: undefined;
4756
5426
  layout?: undefined;
4757
5427
  query?: undefined;
5428
+ strict?: undefined;
5429
+ linkedUsers?: undefined;
4758
5430
  _listTitle?: undefined;
4759
5431
  nestId?: undefined;
4760
5432
  fieldsMetaData?: undefined;
4761
5433
  hints?: undefined;
5434
+ hintTypes?: undefined;
5435
+ minSeverity?: undefined;
4762
5436
  provenance?: undefined;
4763
5437
  rights?: undefined;
4764
5438
  forUser?: undefined;
4765
5439
  whoCan?: undefined;
5440
+ sampleSize?: undefined;
5441
+ path?: undefined;
4766
5442
  parentId?: undefined;
4767
5443
  description?: undefined;
4768
5444
  labels?: undefined;
@@ -4873,14 +5549,20 @@ export declare const toolDefinitions: ({
4873
5549
  apps?: undefined;
4874
5550
  layout?: undefined;
4875
5551
  query?: undefined;
5552
+ strict?: undefined;
5553
+ linkedUsers?: undefined;
4876
5554
  _listTitle?: undefined;
4877
5555
  nestId?: undefined;
4878
5556
  fieldsMetaData?: undefined;
4879
5557
  hints?: undefined;
5558
+ hintTypes?: undefined;
5559
+ minSeverity?: undefined;
4880
5560
  provenance?: undefined;
4881
5561
  rights?: undefined;
4882
5562
  forUser?: undefined;
4883
5563
  whoCan?: undefined;
5564
+ sampleSize?: undefined;
5565
+ path?: undefined;
4884
5566
  parentId?: undefined;
4885
5567
  description?: undefined;
4886
5568
  labels?: undefined;
@@ -4996,14 +5678,20 @@ export declare const toolDefinitions: ({
4996
5678
  apps?: undefined;
4997
5679
  layout?: undefined;
4998
5680
  query?: undefined;
5681
+ strict?: undefined;
5682
+ linkedUsers?: undefined;
4999
5683
  _listTitle?: undefined;
5000
5684
  nestId?: undefined;
5001
5685
  fieldsMetaData?: undefined;
5002
5686
  hints?: undefined;
5687
+ hintTypes?: undefined;
5688
+ minSeverity?: undefined;
5003
5689
  provenance?: undefined;
5004
5690
  rights?: undefined;
5005
5691
  forUser?: undefined;
5006
5692
  whoCan?: undefined;
5693
+ sampleSize?: undefined;
5694
+ path?: undefined;
5007
5695
  parentId?: undefined;
5008
5696
  description?: undefined;
5009
5697
  labels?: undefined;
@@ -5129,13 +5817,19 @@ export declare const toolDefinitions: ({
5129
5817
  apps?: undefined;
5130
5818
  layout?: undefined;
5131
5819
  query?: undefined;
5820
+ strict?: undefined;
5821
+ linkedUsers?: undefined;
5132
5822
  _listTitle?: undefined;
5133
5823
  fieldsMetaData?: undefined;
5134
5824
  hints?: undefined;
5825
+ hintTypes?: undefined;
5826
+ minSeverity?: undefined;
5135
5827
  provenance?: undefined;
5136
5828
  rights?: undefined;
5137
5829
  forUser?: undefined;
5138
5830
  whoCan?: undefined;
5831
+ sampleSize?: undefined;
5832
+ path?: undefined;
5139
5833
  parentId?: undefined;
5140
5834
  description?: undefined;
5141
5835
  labels?: undefined;
@@ -5248,14 +5942,20 @@ export declare const toolDefinitions: ({
5248
5942
  apps?: undefined;
5249
5943
  layout?: undefined;
5250
5944
  query?: undefined;
5945
+ strict?: undefined;
5946
+ linkedUsers?: undefined;
5251
5947
  _listTitle?: undefined;
5252
5948
  nestId?: undefined;
5253
5949
  fieldsMetaData?: undefined;
5254
5950
  hints?: undefined;
5951
+ hintTypes?: undefined;
5952
+ minSeverity?: undefined;
5255
5953
  provenance?: undefined;
5256
5954
  rights?: undefined;
5257
5955
  forUser?: undefined;
5258
5956
  whoCan?: undefined;
5957
+ sampleSize?: undefined;
5958
+ path?: undefined;
5259
5959
  parentId?: undefined;
5260
5960
  description?: undefined;
5261
5961
  labels?: undefined;
@@ -5380,14 +6080,20 @@ export declare const toolDefinitions: ({
5380
6080
  apps?: undefined;
5381
6081
  layout?: undefined;
5382
6082
  query?: undefined;
6083
+ strict?: undefined;
6084
+ linkedUsers?: undefined;
5383
6085
  _listTitle?: undefined;
5384
6086
  nestId?: undefined;
5385
6087
  fieldsMetaData?: undefined;
5386
6088
  hints?: undefined;
6089
+ hintTypes?: undefined;
6090
+ minSeverity?: undefined;
5387
6091
  provenance?: undefined;
5388
6092
  rights?: undefined;
5389
6093
  forUser?: undefined;
5390
6094
  whoCan?: undefined;
6095
+ sampleSize?: undefined;
6096
+ path?: undefined;
5391
6097
  parentId?: undefined;
5392
6098
  description?: undefined;
5393
6099
  labels?: undefined;
@@ -5507,14 +6213,20 @@ export declare const toolDefinitions: ({
5507
6213
  apps?: undefined;
5508
6214
  layout?: undefined;
5509
6215
  query?: undefined;
6216
+ strict?: undefined;
6217
+ linkedUsers?: undefined;
5510
6218
  _listTitle?: undefined;
5511
6219
  nestId?: undefined;
5512
6220
  fieldsMetaData?: undefined;
5513
6221
  hints?: undefined;
6222
+ hintTypes?: undefined;
6223
+ minSeverity?: undefined;
5514
6224
  provenance?: undefined;
5515
6225
  rights?: undefined;
5516
6226
  forUser?: undefined;
5517
6227
  whoCan?: undefined;
6228
+ sampleSize?: undefined;
6229
+ path?: undefined;
5518
6230
  parentId?: undefined;
5519
6231
  description?: undefined;
5520
6232
  labels?: undefined;
@@ -5629,6 +6341,10 @@ export declare const toolDefinitions: ({
5629
6341
  type: string;
5630
6342
  description: string;
5631
6343
  };
6344
+ linkedUsers: {
6345
+ type: string;
6346
+ description: string;
6347
+ };
5632
6348
  topic?: undefined;
5633
6349
  search?: undefined;
5634
6350
  includeImages?: undefined;
@@ -5642,13 +6358,18 @@ export declare const toolDefinitions: ({
5642
6358
  apps?: undefined;
5643
6359
  layout?: undefined;
5644
6360
  query?: undefined;
6361
+ strict?: undefined;
5645
6362
  nestId?: undefined;
5646
6363
  fieldsMetaData?: undefined;
5647
6364
  hints?: undefined;
6365
+ hintTypes?: undefined;
6366
+ minSeverity?: undefined;
5648
6367
  provenance?: undefined;
5649
6368
  rights?: undefined;
5650
6369
  forUser?: undefined;
5651
6370
  whoCan?: undefined;
6371
+ sampleSize?: undefined;
6372
+ path?: undefined;
5652
6373
  parentId?: undefined;
5653
6374
  description?: undefined;
5654
6375
  labels?: undefined;
@@ -5759,6 +6480,10 @@ export declare const toolDefinitions: ({
5759
6480
  description: string;
5760
6481
  type?: undefined;
5761
6482
  };
6483
+ unread: {
6484
+ type: string;
6485
+ description: string;
6486
+ };
5762
6487
  topic?: undefined;
5763
6488
  search?: undefined;
5764
6489
  includeImages?: undefined;
@@ -5777,13 +6502,19 @@ export declare const toolDefinitions: ({
5777
6502
  apps?: undefined;
5778
6503
  layout?: undefined;
5779
6504
  query?: undefined;
6505
+ strict?: undefined;
6506
+ linkedUsers?: undefined;
5780
6507
  _listTitle?: undefined;
5781
6508
  fieldsMetaData?: undefined;
5782
6509
  hints?: undefined;
6510
+ hintTypes?: undefined;
6511
+ minSeverity?: undefined;
5783
6512
  provenance?: undefined;
5784
6513
  rights?: undefined;
5785
6514
  forUser?: undefined;
5786
6515
  whoCan?: undefined;
6516
+ sampleSize?: undefined;
6517
+ path?: undefined;
5787
6518
  parentId?: undefined;
5788
6519
  description?: undefined;
5789
6520
  labels?: undefined;
@@ -5799,7 +6530,6 @@ export declare const toolDefinitions: ({
5799
6530
  circleId?: undefined;
5800
6531
  userId?: undefined;
5801
6532
  withUser?: undefined;
5802
- unread?: undefined;
5803
6533
  includeCompleted?: undefined;
5804
6534
  user?: undefined;
5805
6535
  key?: undefined;
@@ -5901,14 +6631,20 @@ export declare const toolDefinitions: ({
5901
6631
  apps?: undefined;
5902
6632
  layout?: undefined;
5903
6633
  query?: undefined;
6634
+ strict?: undefined;
6635
+ linkedUsers?: undefined;
5904
6636
  _listTitle?: undefined;
5905
6637
  nestId?: undefined;
5906
6638
  fieldsMetaData?: undefined;
5907
6639
  hints?: undefined;
6640
+ hintTypes?: undefined;
6641
+ minSeverity?: undefined;
5908
6642
  provenance?: undefined;
5909
6643
  rights?: undefined;
5910
6644
  forUser?: undefined;
5911
6645
  whoCan?: undefined;
6646
+ sampleSize?: undefined;
6647
+ path?: undefined;
5912
6648
  parentId?: undefined;
5913
6649
  description?: undefined;
5914
6650
  labels?: undefined;
@@ -6023,14 +6759,20 @@ export declare const toolDefinitions: ({
6023
6759
  apps?: undefined;
6024
6760
  layout?: undefined;
6025
6761
  query?: undefined;
6762
+ strict?: undefined;
6763
+ linkedUsers?: undefined;
6026
6764
  _listTitle?: undefined;
6027
6765
  nestId?: undefined;
6028
6766
  fieldsMetaData?: undefined;
6029
6767
  hints?: undefined;
6768
+ hintTypes?: undefined;
6769
+ minSeverity?: undefined;
6030
6770
  provenance?: undefined;
6031
6771
  rights?: undefined;
6032
6772
  forUser?: undefined;
6033
6773
  whoCan?: undefined;
6774
+ sampleSize?: undefined;
6775
+ path?: undefined;
6034
6776
  parentId?: undefined;
6035
6777
  description?: undefined;
6036
6778
  labels?: undefined;
@@ -6153,14 +6895,20 @@ export declare const toolDefinitions: ({
6153
6895
  apps?: undefined;
6154
6896
  layout?: undefined;
6155
6897
  query?: undefined;
6898
+ strict?: undefined;
6899
+ linkedUsers?: undefined;
6156
6900
  _listTitle?: undefined;
6157
6901
  nestId?: undefined;
6158
6902
  fieldsMetaData?: undefined;
6159
6903
  hints?: undefined;
6904
+ hintTypes?: undefined;
6905
+ minSeverity?: undefined;
6160
6906
  provenance?: undefined;
6161
6907
  rights?: undefined;
6162
6908
  forUser?: undefined;
6163
6909
  whoCan?: undefined;
6910
+ sampleSize?: undefined;
6911
+ path?: undefined;
6164
6912
  parentId?: undefined;
6165
6913
  description?: undefined;
6166
6914
  labels?: undefined;
@@ -6273,14 +7021,20 @@ export declare const toolDefinitions: ({
6273
7021
  apps?: undefined;
6274
7022
  layout?: undefined;
6275
7023
  query?: undefined;
7024
+ strict?: undefined;
7025
+ linkedUsers?: undefined;
6276
7026
  _listTitle?: undefined;
6277
7027
  nestId?: undefined;
6278
7028
  fieldsMetaData?: undefined;
6279
7029
  hints?: undefined;
7030
+ hintTypes?: undefined;
7031
+ minSeverity?: undefined;
6280
7032
  provenance?: undefined;
6281
7033
  rights?: undefined;
6282
7034
  forUser?: undefined;
6283
7035
  whoCan?: undefined;
7036
+ sampleSize?: undefined;
7037
+ path?: undefined;
6284
7038
  parentId?: undefined;
6285
7039
  description?: undefined;
6286
7040
  labels?: undefined;
@@ -6406,14 +7160,20 @@ export declare const toolDefinitions: ({
6406
7160
  apps?: undefined;
6407
7161
  layout?: undefined;
6408
7162
  query?: undefined;
7163
+ strict?: undefined;
7164
+ linkedUsers?: undefined;
6409
7165
  _listTitle?: undefined;
6410
7166
  nestId?: undefined;
6411
7167
  fieldsMetaData?: undefined;
6412
7168
  hints?: undefined;
7169
+ hintTypes?: undefined;
7170
+ minSeverity?: undefined;
6413
7171
  provenance?: undefined;
6414
7172
  rights?: undefined;
6415
7173
  forUser?: undefined;
6416
7174
  whoCan?: undefined;
7175
+ sampleSize?: undefined;
7176
+ path?: undefined;
6417
7177
  parentId?: undefined;
6418
7178
  description?: undefined;
6419
7179
  labels?: undefined;
@@ -6522,14 +7282,20 @@ export declare const toolDefinitions: ({
6522
7282
  apps?: undefined;
6523
7283
  layout?: undefined;
6524
7284
  query?: undefined;
7285
+ strict?: undefined;
7286
+ linkedUsers?: undefined;
6525
7287
  _listTitle?: undefined;
6526
7288
  nestId?: undefined;
6527
7289
  fieldsMetaData?: undefined;
6528
7290
  hints?: undefined;
7291
+ hintTypes?: undefined;
7292
+ minSeverity?: undefined;
6529
7293
  provenance?: undefined;
6530
7294
  rights?: undefined;
6531
7295
  forUser?: undefined;
6532
7296
  whoCan?: undefined;
7297
+ sampleSize?: undefined;
7298
+ path?: undefined;
6533
7299
  parentId?: undefined;
6534
7300
  description?: undefined;
6535
7301
  labels?: undefined;
@@ -6645,14 +7411,20 @@ export declare const toolDefinitions: ({
6645
7411
  apps?: undefined;
6646
7412
  layout?: undefined;
6647
7413
  query?: undefined;
7414
+ strict?: undefined;
7415
+ linkedUsers?: undefined;
6648
7416
  _listTitle?: undefined;
6649
7417
  nestId?: undefined;
6650
7418
  fieldsMetaData?: undefined;
6651
7419
  hints?: undefined;
7420
+ hintTypes?: undefined;
7421
+ minSeverity?: undefined;
6652
7422
  provenance?: undefined;
6653
7423
  rights?: undefined;
6654
7424
  forUser?: undefined;
6655
7425
  whoCan?: undefined;
7426
+ sampleSize?: undefined;
7427
+ path?: undefined;
6656
7428
  parentId?: undefined;
6657
7429
  description?: undefined;
6658
7430
  labels?: undefined;
@@ -6772,14 +7544,20 @@ export declare const toolDefinitions: ({
6772
7544
  apps?: undefined;
6773
7545
  layout?: undefined;
6774
7546
  query?: undefined;
7547
+ strict?: undefined;
7548
+ linkedUsers?: undefined;
6775
7549
  _listTitle?: undefined;
6776
7550
  nestId?: undefined;
6777
7551
  fieldsMetaData?: undefined;
6778
7552
  hints?: undefined;
7553
+ hintTypes?: undefined;
7554
+ minSeverity?: undefined;
6779
7555
  provenance?: undefined;
6780
7556
  rights?: undefined;
6781
7557
  forUser?: undefined;
6782
7558
  whoCan?: undefined;
7559
+ sampleSize?: undefined;
7560
+ path?: undefined;
6783
7561
  parentId?: undefined;
6784
7562
  labels?: undefined;
6785
7563
  fields?: undefined;
@@ -6894,13 +7672,19 @@ export declare const toolDefinitions: ({
6894
7672
  apps?: undefined;
6895
7673
  layout?: undefined;
6896
7674
  query?: undefined;
7675
+ strict?: undefined;
7676
+ linkedUsers?: undefined;
6897
7677
  _listTitle?: undefined;
6898
7678
  fieldsMetaData?: undefined;
6899
7679
  hints?: undefined;
7680
+ hintTypes?: undefined;
7681
+ minSeverity?: undefined;
6900
7682
  provenance?: undefined;
6901
7683
  rights?: undefined;
6902
7684
  forUser?: undefined;
6903
7685
  whoCan?: undefined;
7686
+ sampleSize?: undefined;
7687
+ path?: undefined;
6904
7688
  parentId?: undefined;
6905
7689
  description?: undefined;
6906
7690
  labels?: undefined;
@@ -7028,13 +7812,19 @@ export declare const toolDefinitions: ({
7028
7812
  apps?: undefined;
7029
7813
  layout?: undefined;
7030
7814
  query?: undefined;
7815
+ strict?: undefined;
7816
+ linkedUsers?: undefined;
7031
7817
  _listTitle?: undefined;
7032
7818
  fieldsMetaData?: undefined;
7033
7819
  hints?: undefined;
7820
+ hintTypes?: undefined;
7821
+ minSeverity?: undefined;
7034
7822
  provenance?: undefined;
7035
7823
  rights?: undefined;
7036
7824
  forUser?: undefined;
7037
7825
  whoCan?: undefined;
7826
+ sampleSize?: undefined;
7827
+ path?: undefined;
7038
7828
  parentId?: undefined;
7039
7829
  labels?: undefined;
7040
7830
  fields?: undefined;
@@ -7147,14 +7937,20 @@ export declare const toolDefinitions: ({
7147
7937
  apps?: undefined;
7148
7938
  layout?: undefined;
7149
7939
  query?: undefined;
7940
+ strict?: undefined;
7941
+ linkedUsers?: undefined;
7150
7942
  _listTitle?: undefined;
7151
7943
  nestId?: undefined;
7152
7944
  fieldsMetaData?: undefined;
7153
7945
  hints?: undefined;
7946
+ hintTypes?: undefined;
7947
+ minSeverity?: undefined;
7154
7948
  provenance?: undefined;
7155
7949
  rights?: undefined;
7156
7950
  forUser?: undefined;
7157
7951
  whoCan?: undefined;
7952
+ sampleSize?: undefined;
7953
+ path?: undefined;
7158
7954
  parentId?: undefined;
7159
7955
  description?: undefined;
7160
7956
  labels?: undefined;
@@ -7275,13 +8071,19 @@ export declare const toolDefinitions: ({
7275
8071
  apps?: undefined;
7276
8072
  layout?: undefined;
7277
8073
  query?: undefined;
8074
+ strict?: undefined;
8075
+ linkedUsers?: undefined;
7278
8076
  _listTitle?: undefined;
7279
8077
  fieldsMetaData?: undefined;
7280
8078
  hints?: undefined;
8079
+ hintTypes?: undefined;
8080
+ minSeverity?: undefined;
7281
8081
  provenance?: undefined;
7282
8082
  rights?: undefined;
7283
8083
  forUser?: undefined;
7284
8084
  whoCan?: undefined;
8085
+ sampleSize?: undefined;
8086
+ path?: undefined;
7285
8087
  parentId?: undefined;
7286
8088
  description?: undefined;
7287
8089
  labels?: undefined;
@@ -7403,14 +8205,20 @@ export declare const toolDefinitions: ({
7403
8205
  apps?: undefined;
7404
8206
  layout?: undefined;
7405
8207
  query?: undefined;
8208
+ strict?: undefined;
8209
+ linkedUsers?: undefined;
7406
8210
  _listTitle?: undefined;
7407
8211
  nestId?: undefined;
7408
8212
  fieldsMetaData?: undefined;
7409
8213
  hints?: undefined;
8214
+ hintTypes?: undefined;
8215
+ minSeverity?: undefined;
7410
8216
  provenance?: undefined;
7411
8217
  rights?: undefined;
7412
8218
  forUser?: undefined;
7413
8219
  whoCan?: undefined;
8220
+ sampleSize?: undefined;
8221
+ path?: undefined;
7414
8222
  parentId?: undefined;
7415
8223
  labels?: undefined;
7416
8224
  fields?: undefined;
@@ -7526,14 +8334,20 @@ export declare const toolDefinitions: ({
7526
8334
  apps?: undefined;
7527
8335
  layout?: undefined;
7528
8336
  query?: undefined;
8337
+ strict?: undefined;
8338
+ linkedUsers?: undefined;
7529
8339
  _listTitle?: undefined;
7530
8340
  nestId?: undefined;
7531
8341
  fieldsMetaData?: undefined;
7532
8342
  hints?: undefined;
8343
+ hintTypes?: undefined;
8344
+ minSeverity?: undefined;
7533
8345
  provenance?: undefined;
7534
8346
  rights?: undefined;
7535
8347
  forUser?: undefined;
7536
8348
  whoCan?: undefined;
8349
+ sampleSize?: undefined;
8350
+ path?: undefined;
7537
8351
  parentId?: undefined;
7538
8352
  description?: undefined;
7539
8353
  labels?: undefined;
@@ -7644,14 +8458,20 @@ export declare const toolDefinitions: ({
7644
8458
  apps?: undefined;
7645
8459
  layout?: undefined;
7646
8460
  query?: undefined;
8461
+ strict?: undefined;
8462
+ linkedUsers?: undefined;
7647
8463
  _listTitle?: undefined;
7648
8464
  nestId?: undefined;
7649
8465
  fieldsMetaData?: undefined;
7650
8466
  hints?: undefined;
8467
+ hintTypes?: undefined;
8468
+ minSeverity?: undefined;
7651
8469
  provenance?: undefined;
7652
8470
  rights?: undefined;
7653
8471
  forUser?: undefined;
7654
8472
  whoCan?: undefined;
8473
+ sampleSize?: undefined;
8474
+ path?: undefined;
7655
8475
  parentId?: undefined;
7656
8476
  description?: undefined;
7657
8477
  labels?: undefined;
@@ -7772,14 +8592,20 @@ export declare const toolDefinitions: ({
7772
8592
  apps?: undefined;
7773
8593
  layout?: undefined;
7774
8594
  query?: undefined;
8595
+ strict?: undefined;
8596
+ linkedUsers?: undefined;
7775
8597
  _listTitle?: undefined;
7776
8598
  nestId?: undefined;
7777
8599
  fieldsMetaData?: undefined;
7778
8600
  hints?: undefined;
8601
+ hintTypes?: undefined;
8602
+ minSeverity?: undefined;
7779
8603
  provenance?: undefined;
7780
8604
  rights?: undefined;
7781
8605
  forUser?: undefined;
7782
8606
  whoCan?: undefined;
8607
+ sampleSize?: undefined;
8608
+ path?: undefined;
7783
8609
  parentId?: undefined;
7784
8610
  description?: undefined;
7785
8611
  labels?: undefined;
@@ -7894,14 +8720,20 @@ export declare const toolDefinitions: ({
7894
8720
  apps?: undefined;
7895
8721
  layout?: undefined;
7896
8722
  query?: undefined;
8723
+ strict?: undefined;
8724
+ linkedUsers?: undefined;
7897
8725
  _listTitle?: undefined;
7898
8726
  nestId?: undefined;
7899
8727
  fieldsMetaData?: undefined;
7900
8728
  hints?: undefined;
8729
+ hintTypes?: undefined;
8730
+ minSeverity?: undefined;
7901
8731
  provenance?: undefined;
7902
8732
  rights?: undefined;
7903
8733
  forUser?: undefined;
7904
8734
  whoCan?: undefined;
8735
+ sampleSize?: undefined;
8736
+ path?: undefined;
7905
8737
  parentId?: undefined;
7906
8738
  description?: undefined;
7907
8739
  labels?: undefined;
@@ -8017,13 +8849,19 @@ export declare const toolDefinitions: ({
8017
8849
  apps?: undefined;
8018
8850
  layout?: undefined;
8019
8851
  query?: undefined;
8852
+ strict?: undefined;
8853
+ linkedUsers?: undefined;
8020
8854
  _listTitle?: undefined;
8021
8855
  fieldsMetaData?: undefined;
8022
8856
  hints?: undefined;
8857
+ hintTypes?: undefined;
8858
+ minSeverity?: undefined;
8023
8859
  provenance?: undefined;
8024
8860
  rights?: undefined;
8025
8861
  forUser?: undefined;
8026
8862
  whoCan?: undefined;
8863
+ sampleSize?: undefined;
8864
+ path?: undefined;
8027
8865
  parentId?: undefined;
8028
8866
  description?: undefined;
8029
8867
  labels?: undefined;
@@ -8135,14 +8973,20 @@ export declare const toolDefinitions: ({
8135
8973
  apps?: undefined;
8136
8974
  layout?: undefined;
8137
8975
  query?: undefined;
8976
+ strict?: undefined;
8977
+ linkedUsers?: undefined;
8138
8978
  _listTitle?: undefined;
8139
8979
  nestId?: undefined;
8140
8980
  fieldsMetaData?: undefined;
8141
8981
  hints?: undefined;
8982
+ hintTypes?: undefined;
8983
+ minSeverity?: undefined;
8142
8984
  provenance?: undefined;
8143
8985
  rights?: undefined;
8144
8986
  forUser?: undefined;
8145
8987
  whoCan?: undefined;
8988
+ sampleSize?: undefined;
8989
+ path?: undefined;
8146
8990
  parentId?: undefined;
8147
8991
  description?: undefined;
8148
8992
  labels?: undefined;
@@ -8254,14 +9098,20 @@ export declare const toolDefinitions: ({
8254
9098
  apps?: undefined;
8255
9099
  layout?: undefined;
8256
9100
  query?: undefined;
9101
+ strict?: undefined;
9102
+ linkedUsers?: undefined;
8257
9103
  _listTitle?: undefined;
8258
9104
  nestId?: undefined;
8259
9105
  fieldsMetaData?: undefined;
8260
9106
  hints?: undefined;
9107
+ hintTypes?: undefined;
9108
+ minSeverity?: undefined;
8261
9109
  provenance?: undefined;
8262
9110
  rights?: undefined;
8263
9111
  forUser?: undefined;
8264
9112
  whoCan?: undefined;
9113
+ sampleSize?: undefined;
9114
+ path?: undefined;
8265
9115
  parentId?: undefined;
8266
9116
  description?: undefined;
8267
9117
  labels?: undefined;
@@ -8388,14 +9238,20 @@ export declare const toolDefinitions: ({
8388
9238
  apps?: undefined;
8389
9239
  layout?: undefined;
8390
9240
  query?: undefined;
9241
+ strict?: undefined;
9242
+ linkedUsers?: undefined;
8391
9243
  _listTitle?: undefined;
8392
9244
  nestId?: undefined;
8393
9245
  fieldsMetaData?: undefined;
8394
9246
  hints?: undefined;
9247
+ hintTypes?: undefined;
9248
+ minSeverity?: undefined;
8395
9249
  provenance?: undefined;
8396
9250
  rights?: undefined;
8397
9251
  forUser?: undefined;
8398
9252
  whoCan?: undefined;
9253
+ sampleSize?: undefined;
9254
+ path?: undefined;
8399
9255
  parentId?: undefined;
8400
9256
  description?: undefined;
8401
9257
  labels?: undefined;
@@ -8520,13 +9376,19 @@ export declare const toolDefinitions: ({
8520
9376
  apps?: undefined;
8521
9377
  layout?: undefined;
8522
9378
  query?: undefined;
9379
+ strict?: undefined;
9380
+ linkedUsers?: undefined;
8523
9381
  _listTitle?: undefined;
8524
9382
  fieldsMetaData?: undefined;
8525
9383
  hints?: undefined;
9384
+ hintTypes?: undefined;
9385
+ minSeverity?: undefined;
8526
9386
  provenance?: undefined;
8527
9387
  rights?: undefined;
8528
9388
  forUser?: undefined;
8529
9389
  whoCan?: undefined;
9390
+ sampleSize?: undefined;
9391
+ path?: undefined;
8530
9392
  parentId?: undefined;
8531
9393
  labels?: undefined;
8532
9394
  fields?: undefined;
@@ -8640,13 +9502,19 @@ export declare const toolDefinitions: ({
8640
9502
  apps?: undefined;
8641
9503
  layout?: undefined;
8642
9504
  query?: undefined;
9505
+ strict?: undefined;
9506
+ linkedUsers?: undefined;
8643
9507
  _listTitle?: undefined;
8644
9508
  fieldsMetaData?: undefined;
8645
9509
  hints?: undefined;
9510
+ hintTypes?: undefined;
9511
+ minSeverity?: undefined;
8646
9512
  provenance?: undefined;
8647
9513
  rights?: undefined;
8648
9514
  forUser?: undefined;
8649
9515
  whoCan?: undefined;
9516
+ sampleSize?: undefined;
9517
+ path?: undefined;
8650
9518
  parentId?: undefined;
8651
9519
  description?: undefined;
8652
9520
  labels?: undefined;
@@ -8770,13 +9638,19 @@ export declare const toolDefinitions: ({
8770
9638
  apps?: undefined;
8771
9639
  layout?: undefined;
8772
9640
  query?: undefined;
9641
+ strict?: undefined;
9642
+ linkedUsers?: undefined;
8773
9643
  _listTitle?: undefined;
8774
9644
  fieldsMetaData?: undefined;
8775
9645
  hints?: undefined;
9646
+ hintTypes?: undefined;
9647
+ minSeverity?: undefined;
8776
9648
  provenance?: undefined;
8777
9649
  rights?: undefined;
8778
9650
  forUser?: undefined;
8779
9651
  whoCan?: undefined;
9652
+ sampleSize?: undefined;
9653
+ path?: undefined;
8780
9654
  parentId?: undefined;
8781
9655
  description?: undefined;
8782
9656
  labels?: undefined;
@@ -8908,13 +9782,19 @@ export declare const toolDefinitions: ({
8908
9782
  apps?: undefined;
8909
9783
  layout?: undefined;
8910
9784
  query?: undefined;
9785
+ strict?: undefined;
9786
+ linkedUsers?: undefined;
8911
9787
  _listTitle?: undefined;
8912
9788
  fieldsMetaData?: undefined;
8913
9789
  hints?: undefined;
9790
+ hintTypes?: undefined;
9791
+ minSeverity?: undefined;
8914
9792
  provenance?: undefined;
8915
9793
  rights?: undefined;
8916
9794
  forUser?: undefined;
8917
9795
  whoCan?: undefined;
9796
+ sampleSize?: undefined;
9797
+ path?: undefined;
8918
9798
  parentId?: undefined;
8919
9799
  labels?: undefined;
8920
9800
  fields?: undefined;
@@ -9089,13 +9969,19 @@ export declare const toolDefinitions: ({
9089
9969
  apps?: undefined;
9090
9970
  layout?: undefined;
9091
9971
  query?: undefined;
9972
+ strict?: undefined;
9973
+ linkedUsers?: undefined;
9092
9974
  _listTitle?: undefined;
9093
9975
  fieldsMetaData?: undefined;
9094
9976
  hints?: undefined;
9977
+ hintTypes?: undefined;
9978
+ minSeverity?: undefined;
9095
9979
  provenance?: undefined;
9096
9980
  rights?: undefined;
9097
9981
  forUser?: undefined;
9098
9982
  whoCan?: undefined;
9983
+ sampleSize?: undefined;
9984
+ path?: undefined;
9099
9985
  fields?: undefined;
9100
9986
  data?: undefined;
9101
9987
  completed?: undefined;
@@ -9254,13 +10140,19 @@ export declare const toolDefinitions: ({
9254
10140
  apps?: undefined;
9255
10141
  layout?: undefined;
9256
10142
  query?: undefined;
10143
+ strict?: undefined;
10144
+ linkedUsers?: undefined;
9257
10145
  _listTitle?: undefined;
9258
10146
  fieldsMetaData?: undefined;
9259
10147
  hints?: undefined;
10148
+ hintTypes?: undefined;
10149
+ minSeverity?: undefined;
9260
10150
  provenance?: undefined;
9261
10151
  rights?: undefined;
9262
10152
  forUser?: undefined;
9263
10153
  whoCan?: undefined;
10154
+ sampleSize?: undefined;
10155
+ path?: undefined;
9264
10156
  fields?: undefined;
9265
10157
  data?: undefined;
9266
10158
  completed?: undefined;
@@ -9371,13 +10263,19 @@ export declare const toolDefinitions: ({
9371
10263
  apps?: undefined;
9372
10264
  layout?: undefined;
9373
10265
  query?: undefined;
10266
+ strict?: undefined;
10267
+ linkedUsers?: undefined;
9374
10268
  _listTitle?: undefined;
9375
10269
  fieldsMetaData?: undefined;
9376
10270
  hints?: undefined;
10271
+ hintTypes?: undefined;
10272
+ minSeverity?: undefined;
9377
10273
  provenance?: undefined;
9378
10274
  rights?: undefined;
9379
10275
  forUser?: undefined;
9380
10276
  whoCan?: undefined;
10277
+ sampleSize?: undefined;
10278
+ path?: undefined;
9381
10279
  parentId?: undefined;
9382
10280
  description?: undefined;
9383
10281
  labels?: undefined;
@@ -9502,13 +10400,19 @@ export declare const toolDefinitions: ({
9502
10400
  apps?: undefined;
9503
10401
  layout?: undefined;
9504
10402
  query?: undefined;
10403
+ strict?: undefined;
10404
+ linkedUsers?: undefined;
9505
10405
  _listTitle?: undefined;
9506
10406
  fieldsMetaData?: undefined;
9507
10407
  hints?: undefined;
10408
+ hintTypes?: undefined;
10409
+ minSeverity?: undefined;
9508
10410
  provenance?: undefined;
9509
10411
  rights?: undefined;
9510
10412
  forUser?: undefined;
9511
10413
  whoCan?: undefined;
10414
+ sampleSize?: undefined;
10415
+ path?: undefined;
9512
10416
  parentId?: undefined;
9513
10417
  description?: undefined;
9514
10418
  fields?: undefined;
@@ -9629,13 +10533,19 @@ export declare const toolDefinitions: ({
9629
10533
  apps?: undefined;
9630
10534
  layout?: undefined;
9631
10535
  query?: undefined;
10536
+ strict?: undefined;
10537
+ linkedUsers?: undefined;
9632
10538
  _listTitle?: undefined;
9633
10539
  fieldsMetaData?: undefined;
9634
10540
  hints?: undefined;
10541
+ hintTypes?: undefined;
10542
+ minSeverity?: undefined;
9635
10543
  provenance?: undefined;
9636
10544
  rights?: undefined;
9637
10545
  forUser?: undefined;
9638
10546
  whoCan?: undefined;
10547
+ sampleSize?: undefined;
10548
+ path?: undefined;
9639
10549
  parentId?: undefined;
9640
10550
  description?: undefined;
9641
10551
  labels?: undefined;
@@ -9753,13 +10663,19 @@ export declare const toolDefinitions: ({
9753
10663
  apps?: undefined;
9754
10664
  layout?: undefined;
9755
10665
  query?: undefined;
10666
+ strict?: undefined;
10667
+ linkedUsers?: undefined;
9756
10668
  _listTitle?: undefined;
9757
10669
  fieldsMetaData?: undefined;
9758
10670
  hints?: undefined;
10671
+ hintTypes?: undefined;
10672
+ minSeverity?: undefined;
9759
10673
  provenance?: undefined;
9760
10674
  rights?: undefined;
9761
10675
  forUser?: undefined;
9762
10676
  whoCan?: undefined;
10677
+ sampleSize?: undefined;
10678
+ path?: undefined;
9763
10679
  parentId?: undefined;
9764
10680
  description?: undefined;
9765
10681
  labels?: undefined;
@@ -9878,13 +10794,19 @@ export declare const toolDefinitions: ({
9878
10794
  apps?: undefined;
9879
10795
  layout?: undefined;
9880
10796
  query?: undefined;
10797
+ strict?: undefined;
10798
+ linkedUsers?: undefined;
9881
10799
  _listTitle?: undefined;
9882
10800
  fieldsMetaData?: undefined;
9883
10801
  hints?: undefined;
10802
+ hintTypes?: undefined;
10803
+ minSeverity?: undefined;
9884
10804
  provenance?: undefined;
9885
10805
  rights?: undefined;
9886
10806
  forUser?: undefined;
9887
10807
  whoCan?: undefined;
10808
+ sampleSize?: undefined;
10809
+ path?: undefined;
9888
10810
  parentId?: undefined;
9889
10811
  description?: undefined;
9890
10812
  labels?: undefined;
@@ -10010,13 +10932,19 @@ export declare const toolDefinitions: ({
10010
10932
  apps?: undefined;
10011
10933
  layout?: undefined;
10012
10934
  query?: undefined;
10935
+ strict?: undefined;
10936
+ linkedUsers?: undefined;
10013
10937
  _listTitle?: undefined;
10014
10938
  fieldsMetaData?: undefined;
10015
10939
  hints?: undefined;
10940
+ hintTypes?: undefined;
10941
+ minSeverity?: undefined;
10016
10942
  provenance?: undefined;
10017
10943
  rights?: undefined;
10018
10944
  forUser?: undefined;
10019
10945
  whoCan?: undefined;
10946
+ sampleSize?: undefined;
10947
+ path?: undefined;
10020
10948
  parentId?: undefined;
10021
10949
  description?: undefined;
10022
10950
  labels?: undefined;
@@ -10135,13 +11063,19 @@ export declare const toolDefinitions: ({
10135
11063
  apps?: undefined;
10136
11064
  layout?: undefined;
10137
11065
  query?: undefined;
11066
+ strict?: undefined;
11067
+ linkedUsers?: undefined;
10138
11068
  _listTitle?: undefined;
10139
11069
  fieldsMetaData?: undefined;
10140
11070
  hints?: undefined;
11071
+ hintTypes?: undefined;
11072
+ minSeverity?: undefined;
10141
11073
  provenance?: undefined;
10142
11074
  rights?: undefined;
10143
11075
  forUser?: undefined;
10144
11076
  whoCan?: undefined;
11077
+ sampleSize?: undefined;
11078
+ path?: undefined;
10145
11079
  parentId?: undefined;
10146
11080
  description?: undefined;
10147
11081
  labels?: undefined;
@@ -10280,14 +11214,20 @@ export declare const toolDefinitions: ({
10280
11214
  apps?: undefined;
10281
11215
  layout?: undefined;
10282
11216
  query?: undefined;
11217
+ strict?: undefined;
11218
+ linkedUsers?: undefined;
10283
11219
  _listTitle?: undefined;
10284
11220
  nestId?: undefined;
10285
11221
  fieldsMetaData?: undefined;
10286
11222
  hints?: undefined;
11223
+ hintTypes?: undefined;
11224
+ minSeverity?: undefined;
10287
11225
  provenance?: undefined;
10288
11226
  rights?: undefined;
10289
11227
  forUser?: undefined;
10290
11228
  whoCan?: undefined;
11229
+ sampleSize?: undefined;
11230
+ path?: undefined;
10291
11231
  parentId?: undefined;
10292
11232
  description?: undefined;
10293
11233
  labels?: undefined;
@@ -10409,14 +11349,20 @@ export declare const toolDefinitions: ({
10409
11349
  apps?: undefined;
10410
11350
  layout?: undefined;
10411
11351
  query?: undefined;
11352
+ strict?: undefined;
11353
+ linkedUsers?: undefined;
10412
11354
  _listTitle?: undefined;
10413
11355
  nestId?: undefined;
10414
11356
  fieldsMetaData?: undefined;
10415
11357
  hints?: undefined;
11358
+ hintTypes?: undefined;
11359
+ minSeverity?: undefined;
10416
11360
  provenance?: undefined;
10417
11361
  rights?: undefined;
10418
11362
  forUser?: undefined;
10419
11363
  whoCan?: undefined;
11364
+ sampleSize?: undefined;
11365
+ path?: undefined;
10420
11366
  parentId?: undefined;
10421
11367
  labels?: undefined;
10422
11368
  fields?: undefined;
@@ -10537,14 +11483,20 @@ export declare const toolDefinitions: ({
10537
11483
  apps?: undefined;
10538
11484
  layout?: undefined;
10539
11485
  query?: undefined;
11486
+ strict?: undefined;
11487
+ linkedUsers?: undefined;
10540
11488
  _listTitle?: undefined;
10541
11489
  nestId?: undefined;
10542
11490
  fieldsMetaData?: undefined;
10543
11491
  hints?: undefined;
11492
+ hintTypes?: undefined;
11493
+ minSeverity?: undefined;
10544
11494
  provenance?: undefined;
10545
11495
  rights?: undefined;
10546
11496
  forUser?: undefined;
10547
11497
  whoCan?: undefined;
11498
+ sampleSize?: undefined;
11499
+ path?: undefined;
10548
11500
  parentId?: undefined;
10549
11501
  description?: undefined;
10550
11502
  labels?: undefined;
@@ -10686,14 +11638,20 @@ export declare const toolDefinitions: ({
10686
11638
  apps?: undefined;
10687
11639
  layout?: undefined;
10688
11640
  query?: undefined;
11641
+ strict?: undefined;
11642
+ linkedUsers?: undefined;
10689
11643
  _listTitle?: undefined;
10690
11644
  nestId?: undefined;
10691
11645
  fieldsMetaData?: undefined;
10692
11646
  hints?: undefined;
11647
+ hintTypes?: undefined;
11648
+ minSeverity?: undefined;
10693
11649
  provenance?: undefined;
10694
11650
  rights?: undefined;
10695
11651
  forUser?: undefined;
10696
11652
  whoCan?: undefined;
11653
+ sampleSize?: undefined;
11654
+ path?: undefined;
10697
11655
  parentId?: undefined;
10698
11656
  description?: undefined;
10699
11657
  labels?: undefined;
@@ -10802,14 +11760,20 @@ export declare const toolDefinitions: ({
10802
11760
  apps?: undefined;
10803
11761
  layout?: undefined;
10804
11762
  query?: undefined;
11763
+ strict?: undefined;
11764
+ linkedUsers?: undefined;
10805
11765
  _listTitle?: undefined;
10806
11766
  nestId?: undefined;
10807
11767
  fieldsMetaData?: undefined;
10808
11768
  hints?: undefined;
11769
+ hintTypes?: undefined;
11770
+ minSeverity?: undefined;
10809
11771
  provenance?: undefined;
10810
11772
  rights?: undefined;
10811
11773
  forUser?: undefined;
10812
11774
  whoCan?: undefined;
11775
+ sampleSize?: undefined;
11776
+ path?: undefined;
10813
11777
  parentId?: undefined;
10814
11778
  description?: undefined;
10815
11779
  labels?: undefined;
@@ -10919,14 +11883,20 @@ export declare const toolDefinitions: ({
10919
11883
  apps?: undefined;
10920
11884
  layout?: undefined;
10921
11885
  query?: undefined;
11886
+ strict?: undefined;
11887
+ linkedUsers?: undefined;
10922
11888
  _listTitle?: undefined;
10923
11889
  nestId?: undefined;
10924
11890
  fieldsMetaData?: undefined;
10925
11891
  hints?: undefined;
11892
+ hintTypes?: undefined;
11893
+ minSeverity?: undefined;
10926
11894
  provenance?: undefined;
10927
11895
  rights?: undefined;
10928
11896
  forUser?: undefined;
10929
11897
  whoCan?: undefined;
11898
+ sampleSize?: undefined;
11899
+ path?: undefined;
10930
11900
  parentId?: undefined;
10931
11901
  description?: undefined;
10932
11902
  labels?: undefined;
@@ -11046,14 +12016,20 @@ export declare const toolDefinitions: ({
11046
12016
  apps?: undefined;
11047
12017
  layout?: undefined;
11048
12018
  query?: undefined;
12019
+ strict?: undefined;
12020
+ linkedUsers?: undefined;
11049
12021
  _listTitle?: undefined;
11050
12022
  nestId?: undefined;
11051
12023
  fieldsMetaData?: undefined;
11052
12024
  hints?: undefined;
12025
+ hintTypes?: undefined;
12026
+ minSeverity?: undefined;
11053
12027
  provenance?: undefined;
11054
12028
  rights?: undefined;
11055
12029
  forUser?: undefined;
11056
12030
  whoCan?: undefined;
12031
+ sampleSize?: undefined;
12032
+ path?: undefined;
11057
12033
  parentId?: undefined;
11058
12034
  description?: undefined;
11059
12035
  labels?: undefined;
@@ -11163,14 +12139,20 @@ export declare const toolDefinitions: ({
11163
12139
  apps?: undefined;
11164
12140
  layout?: undefined;
11165
12141
  query?: undefined;
12142
+ strict?: undefined;
12143
+ linkedUsers?: undefined;
11166
12144
  _listTitle?: undefined;
11167
12145
  nestId?: undefined;
11168
12146
  fieldsMetaData?: undefined;
11169
12147
  hints?: undefined;
12148
+ hintTypes?: undefined;
12149
+ minSeverity?: undefined;
11170
12150
  provenance?: undefined;
11171
12151
  rights?: undefined;
11172
12152
  forUser?: undefined;
11173
12153
  whoCan?: undefined;
12154
+ sampleSize?: undefined;
12155
+ path?: undefined;
11174
12156
  parentId?: undefined;
11175
12157
  description?: undefined;
11176
12158
  labels?: undefined;
@@ -11298,13 +12280,19 @@ export declare const toolDefinitions: ({
11298
12280
  apps?: undefined;
11299
12281
  layout?: undefined;
11300
12282
  query?: undefined;
12283
+ strict?: undefined;
12284
+ linkedUsers?: undefined;
11301
12285
  _listTitle?: undefined;
11302
12286
  fieldsMetaData?: undefined;
11303
12287
  hints?: undefined;
12288
+ hintTypes?: undefined;
12289
+ minSeverity?: undefined;
11304
12290
  provenance?: undefined;
11305
12291
  rights?: undefined;
11306
12292
  forUser?: undefined;
11307
12293
  whoCan?: undefined;
12294
+ sampleSize?: undefined;
12295
+ path?: undefined;
11308
12296
  parentId?: undefined;
11309
12297
  description?: undefined;
11310
12298
  labels?: undefined;
@@ -11419,13 +12407,19 @@ export declare const toolDefinitions: ({
11419
12407
  apps?: undefined;
11420
12408
  layout?: undefined;
11421
12409
  query?: undefined;
12410
+ strict?: undefined;
12411
+ linkedUsers?: undefined;
11422
12412
  _listTitle?: undefined;
11423
12413
  fieldsMetaData?: undefined;
11424
12414
  hints?: undefined;
12415
+ hintTypes?: undefined;
12416
+ minSeverity?: undefined;
11425
12417
  provenance?: undefined;
11426
12418
  rights?: undefined;
11427
12419
  forUser?: undefined;
11428
12420
  whoCan?: undefined;
12421
+ sampleSize?: undefined;
12422
+ path?: undefined;
11429
12423
  parentId?: undefined;
11430
12424
  description?: undefined;
11431
12425
  labels?: undefined;
@@ -11553,13 +12547,19 @@ export declare const toolDefinitions: ({
11553
12547
  apps?: undefined;
11554
12548
  layout?: undefined;
11555
12549
  query?: undefined;
12550
+ strict?: undefined;
12551
+ linkedUsers?: undefined;
11556
12552
  _listTitle?: undefined;
11557
12553
  fieldsMetaData?: undefined;
11558
12554
  hints?: undefined;
12555
+ hintTypes?: undefined;
12556
+ minSeverity?: undefined;
11559
12557
  provenance?: undefined;
11560
12558
  rights?: undefined;
11561
12559
  forUser?: undefined;
11562
12560
  whoCan?: undefined;
12561
+ sampleSize?: undefined;
12562
+ path?: undefined;
11563
12563
  parentId?: undefined;
11564
12564
  description?: undefined;
11565
12565
  labels?: undefined;