@grepr/cli 1.6.42-91f3e80 → 1.6.43-1a54abd
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.
|
@@ -47,6 +47,26 @@ export interface paths {
|
|
|
47
47
|
patch?: never;
|
|
48
48
|
trace?: never;
|
|
49
49
|
};
|
|
50
|
+
"/v1/agents/skills": {
|
|
51
|
+
parameters: {
|
|
52
|
+
query?: never;
|
|
53
|
+
header?: never;
|
|
54
|
+
path?: never;
|
|
55
|
+
cookie?: never;
|
|
56
|
+
};
|
|
57
|
+
/**
|
|
58
|
+
* List available agent skills
|
|
59
|
+
* @description Returns the catalog of skills that can be enabled on an agent.
|
|
60
|
+
*/
|
|
61
|
+
get: operations["skills"];
|
|
62
|
+
put?: never;
|
|
63
|
+
post?: never;
|
|
64
|
+
delete?: never;
|
|
65
|
+
options?: never;
|
|
66
|
+
head?: never;
|
|
67
|
+
patch?: never;
|
|
68
|
+
trace?: never;
|
|
69
|
+
};
|
|
50
70
|
"/v1/agents/tools": {
|
|
51
71
|
parameters: {
|
|
52
72
|
query?: never;
|
|
@@ -8778,6 +8798,11 @@ export interface components {
|
|
|
8778
8798
|
*/
|
|
8779
8799
|
type: SimpleType;
|
|
8780
8800
|
};
|
|
8801
|
+
SkillDescriptor: {
|
|
8802
|
+
description?: string;
|
|
8803
|
+
name?: string;
|
|
8804
|
+
tools?: components["schemas"]["ToolDescriptor"][];
|
|
8805
|
+
};
|
|
8781
8806
|
SocialUserInfo: {
|
|
8782
8807
|
idToken: string;
|
|
8783
8808
|
/**
|
|
@@ -11481,6 +11506,7 @@ export type SchemaSeverityNode = components["schemas"]["SeverityNode"];
|
|
|
11481
11506
|
export type SchemaShardingConfig = components["schemas"]["ShardingConfig"];
|
|
11482
11507
|
export type SchemaSignupRequest = components["schemas"]["SignupRequest"];
|
|
11483
11508
|
export type SchemaSimple = components["schemas"]["Simple"];
|
|
11509
|
+
export type SchemaSkillDescriptor = components["schemas"]["SkillDescriptor"];
|
|
11484
11510
|
export type SchemaSocialUserInfo = components["schemas"]["SocialUserInfo"];
|
|
11485
11511
|
export type SchemaSpan = components["schemas"]["Span"];
|
|
11486
11512
|
export type SchemaSpanDedupIcebergTableSink = components["schemas"]["SpanDedupIcebergTableSink"];
|
|
@@ -11697,6 +11723,33 @@ export interface operations {
|
|
|
11697
11723
|
};
|
|
11698
11724
|
};
|
|
11699
11725
|
};
|
|
11726
|
+
skills: {
|
|
11727
|
+
parameters: {
|
|
11728
|
+
query?: never;
|
|
11729
|
+
header?: never;
|
|
11730
|
+
path?: never;
|
|
11731
|
+
cookie?: never;
|
|
11732
|
+
};
|
|
11733
|
+
requestBody?: never;
|
|
11734
|
+
responses: {
|
|
11735
|
+
/** @description Skills retrieved successfully */
|
|
11736
|
+
200: {
|
|
11737
|
+
headers: {
|
|
11738
|
+
[name: string]: unknown;
|
|
11739
|
+
};
|
|
11740
|
+
content: {
|
|
11741
|
+
"application/json": components["schemas"]["SkillDescriptor"][];
|
|
11742
|
+
};
|
|
11743
|
+
};
|
|
11744
|
+
/** @description Unauthorized */
|
|
11745
|
+
401: {
|
|
11746
|
+
headers: {
|
|
11747
|
+
[name: string]: unknown;
|
|
11748
|
+
};
|
|
11749
|
+
content?: never;
|
|
11750
|
+
};
|
|
11751
|
+
};
|
|
11752
|
+
};
|
|
11700
11753
|
tools: {
|
|
11701
11754
|
parameters: {
|
|
11702
11755
|
query?: never;
|