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
5 changes: 5 additions & 0 deletions src/libs/Zep/Generated/Zep.BatchClient.CreateBatch.g.cs
Original file line number Diff line number Diff line change
Expand Up @@ -555,19 +555,24 @@ partial void ProcessCreateBatchResponseContent(
/// Has no effect on graph_episode items.
/// </param>
/// <param name="metadata"></param>
/// <param name="strictOntology">
/// When true, prevents extraction of generic Entity nodes that do not match the configured ontology.
/// </param>
/// <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::System.InvalidOperationException"></exception>
public async global::System.Threading.Tasks.Task<global::Zep.ApidataBatchSummary> CreateBatchAsync(
global::System.Collections.Generic.IList<global::Zep.ApidataRoleType>? ignoreRoles = default,
object? metadata = default,
bool? strictOntology = default,
global::Zep.AutoSDKRequestOptions? requestOptions = default,
global::System.Threading.CancellationToken cancellationToken = default)
{
var __request = new global::Zep.ApidataCreateBatchRequest
{
IgnoreRoles = ignoreRoles,
Metadata = metadata,
StrictOntology = strictOntology,
};

return await CreateBatchAsync(
Expand Down
557 changes: 0 additions & 557 deletions src/libs/Zep/Generated/Zep.DataClient.AddDataInBatchMode.g.cs

This file was deleted.

500 changes: 0 additions & 500 deletions src/libs/Zep/Generated/Zep.EntityClient.GetEntityEdgesForANode.g.cs

This file was deleted.

500 changes: 0 additions & 500 deletions src/libs/Zep/Generated/Zep.EntityClient.GetEpisodesForANode.g.cs

This file was deleted.

This file was deleted.

4 changes: 4 additions & 0 deletions src/libs/Zep/Generated/Zep.IBatchClient.CreateBatch.g.cs
Original file line number Diff line number Diff line change
Expand Up @@ -41,12 +41,16 @@ public partial interface IBatchClient
/// Has no effect on graph_episode items.
/// </param>
/// <param name="metadata"></param>
/// <param name="strictOntology">
/// When true, prevents extraction of generic Entity nodes that do not match the configured ontology.
/// </param>
/// <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::System.InvalidOperationException"></exception>
global::System.Threading.Tasks.Task<global::Zep.ApidataBatchSummary> CreateBatchAsync(
global::System.Collections.Generic.IList<global::Zep.ApidataRoleType>? ignoreRoles = default,
object? metadata = default,
bool? strictOntology = default,
global::Zep.AutoSDKRequestOptions? requestOptions = default,
global::System.Threading.CancellationToken cancellationToken = default);
}
Expand Down
65 changes: 0 additions & 65 deletions src/libs/Zep/Generated/Zep.IDataClient.AddDataInBatchMode.g.cs

This file was deleted.

This file was deleted.

32 changes: 0 additions & 32 deletions src/libs/Zep/Generated/Zep.IEntityClient.GetEpisodesForANode.g.cs

This file was deleted.

This file was deleted.

This file was deleted.

9 changes: 9 additions & 0 deletions src/libs/Zep/Generated/Zep.Models.ApidataBatchSummary.g.cs
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,12 @@ public sealed partial class ApidataBatchSummary
[global::System.Text.Json.Serialization.JsonConverter(typeof(global::Zep.JsonConverters.ModelsBatchStatusJsonConverter))]
public global::Zep.ModelsBatchStatus? Status { get; set; }

/// <summary>
///
/// </summary>
[global::System.Text.Json.Serialization.JsonPropertyName("strict_ontology")]
public bool? StrictOntology { get; set; }

/// <summary>
///
/// </summary>
Expand All @@ -87,6 +93,7 @@ public sealed partial class ApidataBatchSummary
/// <param name="processedAt"></param>
/// <param name="progress"></param>
/// <param name="status"></param>
/// <param name="strictOntology"></param>
/// <param name="updatedAt"></param>
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
Expand All @@ -101,6 +108,7 @@ public ApidataBatchSummary(
string? processedAt,
global::Zep.ApidataBatchProgress? progress,
global::Zep.ModelsBatchStatus? status,
bool? strictOntology,
string? updatedAt)
{
this.BatchId = batchId;
Expand All @@ -112,6 +120,7 @@ public ApidataBatchSummary(
this.ProcessedAt = processedAt;
this.Progress = progress;
this.Status = status;
this.StrictOntology = strictOntology;
this.UpdatedAt = updatedAt;
}

Expand Down
Loading
Loading