Skip to content

Commit 12b929d

Browse files
committed
Updated to latest API release.
1 parent b82d429 commit 12b929d

File tree

5 files changed

+6
-0
lines changed

5 files changed

+6
-0
lines changed

documents/agent/GetAgent.graphql

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ query GetAgent($id: ID!, $correlationId: String) {
1616
description
1717
specification {
1818
id
19+
name
1920
}
2021
trigger {
2122
types

documents/agent/QueryAgents.graphql

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ query QueryAgents($filter: AgentFilter, $correlationId: String) {
1515
description
1616
specification {
1717
id
18+
name
1819
}
1920
trigger {
2021
types

graphlit_api/get_agent.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,7 @@ class GetAgentAgentUser(BaseModel):
6464

6565
class GetAgentAgentSpecification(BaseModel):
6666
id: str
67+
name: str
6768

6869

6970
class GetAgentAgentTrigger(BaseModel):

graphlit_api/operations.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -580,6 +580,7 @@
580580
description
581581
specification {
582582
id
583+
name
583584
}
584585
trigger {
585586
types
@@ -826,6 +827,7 @@
826827
description
827828
specification {
828829
id
830+
name
829831
}
830832
trigger {
831833
types

graphlit_api/query_agents.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,7 @@ class QueryAgentsAgentsResultsOwner(BaseModel):
6464

6565
class QueryAgentsAgentsResultsSpecification(BaseModel):
6666
id: str
67+
name: str
6768

6869

6970
class QueryAgentsAgentsResultsTrigger(BaseModel):

0 commit comments

Comments
 (0)