Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ public partial class GraphClient
{


private static readonly global::Zep.EndPointSecurityRequirement s_ListAllGraphsSecurityRequirement0 =
private static readonly global::Zep.EndPointSecurityRequirement s_ListStandaloneGraphsInTheGraphDirectorySecurityRequirement0 =
new global::Zep.EndPointSecurityRequirement
{
Authorizations = new global::Zep.EndPointAuthorizationRequirement[]
Expand All @@ -21,37 +21,43 @@ public partial class GraphClient
},
},
};
private static readonly global::Zep.EndPointSecurityRequirement[] s_ListAllGraphsSecurityRequirements =
private static readonly global::Zep.EndPointSecurityRequirement[] s_ListStandaloneGraphsInTheGraphDirectorySecurityRequirements =
new global::Zep.EndPointSecurityRequirement[]
{ s_ListAllGraphsSecurityRequirement0,
{ s_ListStandaloneGraphsInTheGraphDirectorySecurityRequirement0,
};
partial void PrepareListAllGraphsArguments(
partial void PrepareListStandaloneGraphsInTheGraphDirectoryArguments(
global::System.Net.Http.HttpClient httpClient,
ref int? pageNumber,
ref int? pageSize,
ref string? search,
ref string? orderBy,
ref bool? asc);
partial void PrepareListAllGraphsRequest(
partial void PrepareListStandaloneGraphsInTheGraphDirectoryRequest(
global::System.Net.Http.HttpClient httpClient,
global::System.Net.Http.HttpRequestMessage httpRequestMessage,
int? pageNumber,
int? pageSize,
string? search,
string? orderBy,
bool? asc);
partial void ProcessListAllGraphsResponse(
partial void ProcessListStandaloneGraphsInTheGraphDirectoryResponse(
global::System.Net.Http.HttpClient httpClient,
global::System.Net.Http.HttpResponseMessage httpResponseMessage);

partial void ProcessListAllGraphsResponseContent(
partial void ProcessListStandaloneGraphsInTheGraphDirectoryResponseContent(
global::System.Net.Http.HttpClient httpClient,
global::System.Net.Http.HttpResponseMessage httpResponseMessage,
ref string content);

/// <summary>
/// List all graphs.<br/>
/// Returns all graphs. In order to list users, use user.list_ordered instead
/// List standalone graphs in the graph directory<br/>
/// Returns a paginated directory of live standalone graphs in the<br/>
/// authenticated project. Optional `search` matches `graph_id`, `name`, and<br/>
/// `description` (metadata only; not graph contents).<br/>
/// Default `pageSize` is 50 (range 1–100). To list users, use<br/>
/// `user.list_ordered` instead. See the<br/>
/// [graph directory guide](/graph-directory) for pagination, relevance<br/>
/// ordering, and Memory MCP exposure.
/// </summary>
/// <param name="pageNumber"></param>
/// <param name="pageSize"></param>
Expand All @@ -61,7 +67,7 @@ partial void ProcessListAllGraphsResponseContent(
/// <param name="requestOptions">Per-request overrides such as headers, query parameters, timeout, retries, and response buffering.</param>
/// <param name="cancellationToken">The token to cancel the operation with</param>
/// <exception cref="global::Zep.ApiException"></exception>
public async global::System.Threading.Tasks.Task<global::Zep.ApidataGraphListResponse> ListAllGraphsAsync(
public async global::System.Threading.Tasks.Task<global::Zep.ApidataGraphListResponse> ListStandaloneGraphsInTheGraphDirectoryAsync(
int? pageNumber = default,
int? pageSize = default,
string? search = default,
Expand All @@ -70,7 +76,7 @@ partial void ProcessListAllGraphsResponseContent(
global::Zep.AutoSDKRequestOptions? requestOptions = default,
global::System.Threading.CancellationToken cancellationToken = default)
{
var __response = await ListAllGraphsAsResponseAsync(
var __response = await ListStandaloneGraphsInTheGraphDirectoryAsResponseAsync(
pageNumber: pageNumber,
pageSize: pageSize,
search: search,
Expand All @@ -83,8 +89,14 @@ partial void ProcessListAllGraphsResponseContent(
return __response.Body;
}
/// <summary>
/// List all graphs.<br/>
/// Returns all graphs. In order to list users, use user.list_ordered instead
/// List standalone graphs in the graph directory<br/>
/// Returns a paginated directory of live standalone graphs in the<br/>
/// authenticated project. Optional `search` matches `graph_id`, `name`, and<br/>
/// `description` (metadata only; not graph contents).<br/>
/// Default `pageSize` is 50 (range 1–100). To list users, use<br/>
/// `user.list_ordered` instead. See the<br/>
/// [graph directory guide](/graph-directory) for pagination, relevance<br/>
/// ordering, and Memory MCP exposure.
/// </summary>
/// <param name="pageNumber"></param>
/// <param name="pageSize"></param>
Expand All @@ -94,7 +106,7 @@ partial void ProcessListAllGraphsResponseContent(
/// <param name="requestOptions">Per-request overrides such as headers, query parameters, timeout, retries, and response buffering.</param>
/// <param name="cancellationToken">The token to cancel the operation with</param>
/// <exception cref="global::Zep.ApiException"></exception>
public async global::System.Threading.Tasks.Task<global::Zep.AutoSDKHttpResponse<global::Zep.ApidataGraphListResponse>> ListAllGraphsAsResponseAsync(
public async global::System.Threading.Tasks.Task<global::Zep.AutoSDKHttpResponse<global::Zep.ApidataGraphListResponse>> ListStandaloneGraphsInTheGraphDirectoryAsResponseAsync(
int? pageNumber = default,
int? pageSize = default,
string? search = default,
Expand All @@ -105,7 +117,7 @@ partial void ProcessListAllGraphsResponseContent(
{
PrepareArguments(
client: HttpClient);
PrepareListAllGraphsArguments(
PrepareListStandaloneGraphsInTheGraphDirectoryArguments(
httpClient: HttpClient,
pageNumber: ref pageNumber,
pageSize: ref pageSize,
Expand All @@ -116,8 +128,8 @@ partial void ProcessListAllGraphsResponseContent(

var __authorizations = global::Zep.EndPointSecurityResolver.ResolveAuthorizations(
availableAuthorizations: Authorizations,
securityRequirements: s_ListAllGraphsSecurityRequirements,
operationName: "ListAllGraphsAsync");
securityRequirements: s_ListStandaloneGraphsInTheGraphDirectorySecurityRequirements,
operationName: "ListStandaloneGraphsInTheGraphDirectoryAsync");

using var __timeoutCancellationTokenSource = global::Zep.AutoSDKRequestOptionsSupport.CreateTimeoutCancellationTokenSource(
clientOptions: Options,
Expand Down Expand Up @@ -183,7 +195,7 @@ partial void ProcessListAllGraphsResponseContent(
PrepareRequest(
client: HttpClient,
request: __httpRequest);
PrepareListAllGraphsRequest(
PrepareListStandaloneGraphsInTheGraphDirectoryRequest(
httpClient: HttpClient,
httpRequestMessage: __httpRequest,
pageNumber: pageNumber,
Expand All @@ -207,8 +219,8 @@ partial void ProcessListAllGraphsResponseContent(
await global::Zep.AutoSDKRequestOptionsSupport.OnBeforeRequestAsync(
clientOptions: Options,
context: global::Zep.AutoSDKRequestOptionsSupport.CreateHookContext(
operationId: "ListAllGraphs",
methodName: "ListAllGraphsAsync",
operationId: "ListStandaloneGraphsInTheGraphDirectory",
methodName: "ListStandaloneGraphsInTheGraphDirectoryAsync",
pathTemplate: "\"/graph/list-all\"",
httpMethod: "GET",
baseUri: BaseUri,
Expand Down Expand Up @@ -241,8 +253,8 @@ partial void ProcessListAllGraphsResponseContent(
await global::Zep.AutoSDKRequestOptionsSupport.OnAfterErrorAsync(
clientOptions: Options,
context: global::Zep.AutoSDKRequestOptionsSupport.CreateHookContext(
operationId: "ListAllGraphs",
methodName: "ListAllGraphsAsync",
operationId: "ListStandaloneGraphsInTheGraphDirectory",
methodName: "ListStandaloneGraphsInTheGraphDirectoryAsync",
pathTemplate: "\"/graph/list-all\"",
httpMethod: "GET",
baseUri: BaseUri,
Expand Down Expand Up @@ -282,8 +294,8 @@ partial void ProcessListAllGraphsResponseContent(
await global::Zep.AutoSDKRequestOptionsSupport.OnAfterErrorAsync(
clientOptions: Options,
context: global::Zep.AutoSDKRequestOptionsSupport.CreateHookContext(
operationId: "ListAllGraphs",
methodName: "ListAllGraphsAsync",
operationId: "ListStandaloneGraphsInTheGraphDirectory",
methodName: "ListStandaloneGraphsInTheGraphDirectoryAsync",
pathTemplate: "\"/graph/list-all\"",
httpMethod: "GET",
baseUri: BaseUri,
Expand Down Expand Up @@ -322,16 +334,16 @@ partial void ProcessListAllGraphsResponseContent(
ProcessResponse(
client: HttpClient,
response: __response);
ProcessListAllGraphsResponse(
ProcessListStandaloneGraphsInTheGraphDirectoryResponse(
httpClient: HttpClient,
httpResponseMessage: __response);
if (__response.IsSuccessStatusCode)
{
await global::Zep.AutoSDKRequestOptionsSupport.OnAfterSuccessAsync(
clientOptions: Options,
context: global::Zep.AutoSDKRequestOptionsSupport.CreateHookContext(
operationId: "ListAllGraphs",
methodName: "ListAllGraphsAsync",
operationId: "ListStandaloneGraphsInTheGraphDirectory",
methodName: "ListStandaloneGraphsInTheGraphDirectoryAsync",
pathTemplate: "\"/graph/list-all\"",
httpMethod: "GET",
baseUri: BaseUri,
Expand All @@ -352,8 +364,8 @@ partial void ProcessListAllGraphsResponseContent(
await global::Zep.AutoSDKRequestOptionsSupport.OnAfterErrorAsync(
clientOptions: Options,
context: global::Zep.AutoSDKRequestOptionsSupport.CreateHookContext(
operationId: "ListAllGraphs",
methodName: "ListAllGraphsAsync",
operationId: "ListStandaloneGraphsInTheGraphDirectory",
methodName: "ListStandaloneGraphsInTheGraphDirectoryAsync",
pathTemplate: "\"/graph/list-all\"",
httpMethod: "GET",
baseUri: BaseUri,
Expand Down Expand Up @@ -456,7 +468,7 @@ partial void ProcessListAllGraphsResponseContent(
client: HttpClient,
response: __response,
content: ref __content);
ProcessListAllGraphsResponseContent(
ProcessListStandaloneGraphsInTheGraphDirectoryResponseContent(
httpClient: HttpClient,
httpResponseMessage: __response,
content: ref __content);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,14 @@ namespace Zep
public partial interface IGraphClient
{
/// <summary>
/// List all graphs.<br/>
/// Returns all graphs. In order to list users, use user.list_ordered instead
/// List standalone graphs in the graph directory<br/>
/// Returns a paginated directory of live standalone graphs in the<br/>
/// authenticated project. Optional `search` matches `graph_id`, `name`, and<br/>
/// `description` (metadata only; not graph contents).<br/>
/// Default `pageSize` is 50 (range 1–100). To list users, use<br/>
/// `user.list_ordered` instead. See the<br/>
/// [graph directory guide](/graph-directory) for pagination, relevance<br/>
/// ordering, and Memory MCP exposure.
/// </summary>
/// <param name="pageNumber"></param>
/// <param name="pageSize"></param>
Expand All @@ -16,7 +22,7 @@ public partial interface IGraphClient
/// <param name="requestOptions">Per-request overrides such as headers, query parameters, timeout, retries, and response buffering.</param>
/// <param name="cancellationToken">The token to cancel the operation with</param>
/// <exception cref="global::Zep.ApiException"></exception>
global::System.Threading.Tasks.Task<global::Zep.ApidataGraphListResponse> ListAllGraphsAsync(
global::System.Threading.Tasks.Task<global::Zep.ApidataGraphListResponse> ListStandaloneGraphsInTheGraphDirectoryAsync(
int? pageNumber = default,
int? pageSize = default,
string? search = default,
Expand All @@ -25,8 +31,14 @@ public partial interface IGraphClient
global::Zep.AutoSDKRequestOptions? requestOptions = default,
global::System.Threading.CancellationToken cancellationToken = default);
/// <summary>
/// List all graphs.<br/>
/// Returns all graphs. In order to list users, use user.list_ordered instead
/// List standalone graphs in the graph directory<br/>
/// Returns a paginated directory of live standalone graphs in the<br/>
/// authenticated project. Optional `search` matches `graph_id`, `name`, and<br/>
/// `description` (metadata only; not graph contents).<br/>
/// Default `pageSize` is 50 (range 1–100). To list users, use<br/>
/// `user.list_ordered` instead. See the<br/>
/// [graph directory guide](/graph-directory) for pagination, relevance<br/>
/// ordering, and Memory MCP exposure.
/// </summary>
/// <param name="pageNumber"></param>
/// <param name="pageSize"></param>
Expand All @@ -36,7 +48,7 @@ public partial interface IGraphClient
/// <param name="requestOptions">Per-request overrides such as headers, query parameters, timeout, retries, and response buffering.</param>
/// <param name="cancellationToken">The token to cancel the operation with</param>
/// <exception cref="global::Zep.ApiException"></exception>
global::System.Threading.Tasks.Task<global::Zep.AutoSDKHttpResponse<global::Zep.ApidataGraphListResponse>> ListAllGraphsAsResponseAsync(
global::System.Threading.Tasks.Task<global::Zep.AutoSDKHttpResponse<global::Zep.ApidataGraphListResponse>> ListStandaloneGraphsInTheGraphDirectoryAsResponseAsync(
int? pageNumber = default,
int? pageSize = default,
string? search = default,
Expand Down
6 changes: 3 additions & 3 deletions src/libs/Zep/openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -2980,9 +2980,9 @@
},
"/graph/list-all": {
"get": {
"operationId": "list-all-graphs",
"summary": "List all graphs.",
"description": "Returns all graphs. In order to list users, use user.list_ordered instead",
"operationId": "list-standalone-graphs-in-the-graph-directory",
"summary": "List standalone graphs in the graph directory",
"description": "Returns a paginated directory of live standalone graphs in the\nauthenticated project. Optional `search` matches `graph_id`, `name`, and\n`description` (metadata only; not graph contents).\n\nDefault `pageSize` is 50 (range 1\u2013100). To list users, use\n`user.list_ordered` instead. See the\n[graph directory guide](/graph-directory) for pagination, relevance\nordering, and Memory MCP exposure.\n",
"tags": [
"graph"
],
Expand Down
Loading