Skip to content

Commit f2eedcf

Browse files
committed
Updated to latest API release.
1 parent 70fab23 commit f2eedcf

File tree

8 files changed

+11
-0
lines changed

8 files changed

+11
-0
lines changed

documents/agent/GetAgent.graphql

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,5 +39,6 @@ query GetAgent($id: ID!, $correlationId: String) {
3939
timeout
4040
prompt
4141
scratchpad
42+
callbackUri
4243
}
4344
}

documents/agent/QueryAgents.graphql

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ query QueryAgents($filter: AgentFilter, $correlationId: String) {
4141
timeout
4242
prompt
4343
scratchpad
44+
callbackUri
4445
}
4546
}
4647
}

documents/project/GetProject.graphql

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ query GetProject {
88
environmentType
99
platform
1010
region
11+
jwtSecret
1112
credits
1213
lastCreditsDate
1314
workflow {

graphlit_api/get_agent.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ class GetAgentAgent(BaseModel):
4040
timeout: Optional[Any]
4141
prompt: Optional[str]
4242
scratchpad: Optional[str]
43+
callback_uri: Optional[Any] = Field(alias="callbackUri")
4344

4445

4546
class GetAgentAgentOwner(BaseModel):

graphlit_api/get_project.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ class GetProjectProject(BaseModel):
2222
environment_type: Optional[EnvironmentTypes] = Field(alias="environmentType")
2323
platform: Optional[ResourceConnectorTypes]
2424
region: Optional[str]
25+
jwt_secret: Optional[str] = Field(alias="jwtSecret")
2526
credits: Optional[Any]
2627
last_credits_date: Optional[Any] = Field(alias="lastCreditsDate")
2728
workflow: Optional["GetProjectProjectWorkflow"]

graphlit_api/input_types.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2849,6 +2849,7 @@ class AgentInput(BaseModel):
28492849
scratchpad: Optional[str] = None
28502850
channels: Optional[list["AgentChannelInput"]] = None
28512851
connectors: Optional[list["EntityReferenceInput"]] = None
2852+
callback_uri: Optional[Any] = Field(alias="callbackUri", default=None)
28522853

28532854

28542855
class CrustdataPersonDiscoveryFilterInput(BaseModel):
@@ -7182,6 +7183,7 @@ class AgentUpdateInput(BaseModel):
71827183
scratchpad: Optional[str] = None
71837184
channels: Optional[list["AgentChannelInput"]] = None
71847185
connectors: Optional[list["EntityReferenceInput"]] = None
7186+
callback_uri: Optional[Any] = Field(alias="callbackUri", default=None)
71857187

71867188

71877189
class IssueFeedPropertiesInput(BaseModel):

graphlit_api/operations.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -602,6 +602,7 @@
602602
timeout
603603
prompt
604604
scratchpad
605+
callbackUri
605606
}
606607
}
607608
"""
@@ -650,6 +651,7 @@
650651
timeout
651652
prompt
652653
scratchpad
654+
callbackUri
653655
}
654656
}
655657
}
@@ -17248,6 +17250,7 @@
1724817250
environmentType
1724917251
platform
1725017252
region
17253+
jwtSecret
1725117254
credits
1725217255
lastCreditsDate
1725317256
workflow {

graphlit_api/query_agents.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ class QueryAgentsAgentsResults(BaseModel):
4545
timeout: Optional[Any]
4646
prompt: Optional[str]
4747
scratchpad: Optional[str]
48+
callback_uri: Optional[Any] = Field(alias="callbackUri")
4849

4950

5051
class QueryAgentsAgentsResultsOwner(BaseModel):

0 commit comments

Comments
 (0)