From 587ff6ddd3d63ea29124efae5c5522921ae34ec3 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Tue, 11 Aug 2026 01:21:20 +0000 Subject: [PATCH] feat: Updated OpenAPI spec --- .../Zep.Models.GraphitiDateFilter.g.cs | 4 +-- .../Zep.Models.GraphitiPropertyFilter.g.cs | 4 +-- ...s.GraphitiPropertyFilterPropertyValue.g.cs | 2 +- .../Zep.Models.GraphitiSearchFilters.g.cs | 32 +++++++++---------- src/libs/Zep/openapi.json | 12 +++---- 5 files changed, 27 insertions(+), 27 deletions(-) diff --git a/src/libs/Zep/Generated/Zep.Models.GraphitiDateFilter.g.cs b/src/libs/Zep/Generated/Zep.Models.GraphitiDateFilter.g.cs index 04dcd42..45f4cbd 100644 --- a/src/libs/Zep/Generated/Zep.Models.GraphitiDateFilter.g.cs +++ b/src/libs/Zep/Generated/Zep.Models.GraphitiDateFilter.g.cs @@ -17,7 +17,7 @@ public sealed partial class GraphitiDateFilter public required global::Zep.GraphitiComparisonOperator ComparisonOperator { get; set; } /// - /// Date to filter on. Required for non-null operators (=, \<\>, \>, \<, \>=, \<=).
+ /// Date to filter on. Required for non-null operators (`=`, `<>`, `>`, `<`, `>=`, `<=`).
/// Should be omitted for IS NULL (or is_null) and IS NOT NULL operators. ///
[global::System.Text.Json.Serialization.JsonPropertyName("date")] @@ -36,7 +36,7 @@ public sealed partial class GraphitiDateFilter /// Comparison operator for date filter /// /// - /// Date to filter on. Required for non-null operators (=, \<\>, \>, \<, \>=, \<=).
+ /// Date to filter on. Required for non-null operators (`=`, `<>`, `>`, `<`, `>=`, `<=`).
/// Should be omitted for IS NULL (or is_null) and IS NOT NULL operators. /// #if NET7_0_OR_GREATER diff --git a/src/libs/Zep/Generated/Zep.Models.GraphitiPropertyFilter.g.cs b/src/libs/Zep/Generated/Zep.Models.GraphitiPropertyFilter.g.cs index 58affe7..c9ff8d2 100644 --- a/src/libs/Zep/Generated/Zep.Models.GraphitiPropertyFilter.g.cs +++ b/src/libs/Zep/Generated/Zep.Models.GraphitiPropertyFilter.g.cs @@ -26,7 +26,7 @@ public sealed partial class GraphitiPropertyFilter /// /// Property value to match on. Accepted types: string, int, float64, bool, or nil.
/// Invalid types (e.g., arrays, objects) will be rejected by validation.
- /// Must be non-nil for non-null operators (=, \<\>, \>, \<, \>=, \<=). + /// Must be non-nil for non-null operators (`=`, `<>`, `>`, `<`, `>=`, `<=`). ///
[global::System.Text.Json.Serialization.JsonPropertyName("property_value")] public object? PropertyValue { get; set; } @@ -49,7 +49,7 @@ public sealed partial class GraphitiPropertyFilter /// /// Property value to match on. Accepted types: string, int, float64, bool, or nil.
/// Invalid types (e.g., arrays, objects) will be rejected by validation.
- /// Must be non-nil for non-null operators (=, \<\>, \>, \<, \>=, \<=). + /// Must be non-nil for non-null operators (`=`, `<>`, `>`, `<`, `>=`, `<=`). /// #if NET7_0_OR_GREATER [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] diff --git a/src/libs/Zep/Generated/Zep.Models.GraphitiPropertyFilterPropertyValue.g.cs b/src/libs/Zep/Generated/Zep.Models.GraphitiPropertyFilterPropertyValue.g.cs index b643da9..8f0418e 100644 --- a/src/libs/Zep/Generated/Zep.Models.GraphitiPropertyFilterPropertyValue.g.cs +++ b/src/libs/Zep/Generated/Zep.Models.GraphitiPropertyFilterPropertyValue.g.cs @@ -6,7 +6,7 @@ namespace Zep /// /// Property value to match on. Accepted types: string, int, float64, bool, or nil.
/// Invalid types (e.g., arrays, objects) will be rejected by validation.
- /// Must be non-nil for non-null operators (=, \<\>, \>, \<, \>=, \<=). + /// Must be non-nil for non-null operators (`=`, `<>`, `>`, `<`, `>=`, `<=`). ///
public sealed partial class GraphitiPropertyFilterPropertyValue { diff --git a/src/libs/Zep/Generated/Zep.Models.GraphitiSearchFilters.g.cs b/src/libs/Zep/Generated/Zep.Models.GraphitiSearchFilters.g.cs index d4241e8..5d7d348 100644 --- a/src/libs/Zep/Generated/Zep.Models.GraphitiSearchFilters.g.cs +++ b/src/libs/Zep/Generated/Zep.Models.GraphitiSearchFilters.g.cs @@ -12,8 +12,8 @@ public sealed partial class GraphitiSearchFilters /// 2D array of date filters for the created_at field.
/// The outer array elements are combined with OR logic.
/// The inner array elements are combined with AND logic.
- /// Example: [[\{"\>", date1\}, \{"\<", date2\}], [\{"=", date3\}]]
- /// This translates to: (created_at \> date1 AND created_at \< date2) OR (created_at = date3) + /// Example: `[[{">", date1}, {"<", date2}], [{"=", date3}]]`
+ /// This translates to: `(created_at > date1 AND created_at < date2) OR (created_at = date3)` /// [global::System.Text.Json.Serialization.JsonPropertyName("created_at")] public global::System.Collections.Generic.IList>? CreatedAt { get; set; } @@ -53,8 +53,8 @@ public sealed partial class GraphitiSearchFilters /// 2D array of date filters for the expired_at field.
/// The outer array elements are combined with OR logic.
/// The inner array elements are combined with AND logic.
- /// Example: [[\{"\>", date1\}, \{"\<", date2\}], [\{"=", date3\}]]
- /// This translates to: (expired_at \> date1 AND expired_at \< date2) OR (expired_at = date3) + /// Example: `[[{">", date1}, {"<", date2}], [{"=", date3}]]`
+ /// This translates to: `(expired_at > date1 AND expired_at < date2) OR (expired_at = date3)` /// [global::System.Text.Json.Serialization.JsonPropertyName("expired_at")] public global::System.Collections.Generic.IList>? ExpiredAt { get; set; } @@ -63,8 +63,8 @@ public sealed partial class GraphitiSearchFilters /// 2D array of date filters for the invalid_at field.
/// The outer array elements are combined with OR logic.
/// The inner array elements are combined with AND logic.
- /// Example: [[\{"\>", date1\}, \{"\<", date2\}], [\{"=", date3\}]]
- /// This translates to: (invalid_at \> date1 AND invalid_at \< date2) OR (invalid_at = date3) + /// Example: `[[{">", date1}, {"<", date2}], [{"=", date3}]]`
+ /// This translates to: `(invalid_at > date1 AND invalid_at < date2) OR (invalid_at = date3)` /// [global::System.Text.Json.Serialization.JsonPropertyName("invalid_at")] public global::System.Collections.Generic.IList>? InvalidAt { get; set; } @@ -85,8 +85,8 @@ public sealed partial class GraphitiSearchFilters /// 2D array of date filters for the valid_at field.
/// The outer array elements are combined with OR logic.
/// The inner array elements are combined with AND logic.
- /// Example: [[\{"\>", date1\}, \{"\<", date2\}], [\{"=", date3\}]]
- /// This translates to: (valid_at \> date1 AND valid_at \< date2) OR (valid_at = date3) + /// Example: `[[{">", date1}, {"<", date2}], [{"=", date3}]]`
+ /// This translates to: `(valid_at > date1 AND valid_at < date2) OR (valid_at = date3)` /// [global::System.Text.Json.Serialization.JsonPropertyName("valid_at")] public global::System.Collections.Generic.IList>? ValidAt { get; set; } @@ -104,8 +104,8 @@ public sealed partial class GraphitiSearchFilters /// 2D array of date filters for the created_at field.
/// The outer array elements are combined with OR logic.
/// The inner array elements are combined with AND logic.
- /// Example: [[\{"\>", date1\}, \{"\<", date2\}], [\{"=", date3\}]]
- /// This translates to: (created_at \> date1 AND created_at \< date2) OR (created_at = date3) + /// Example: `[[{">", date1}, {"<", date2}], [{"=", date3}]]`
+ /// This translates to: `(created_at > date1 AND created_at < date2) OR (created_at = date3)` /// /// /// List of edge types to filter on @@ -127,15 +127,15 @@ public sealed partial class GraphitiSearchFilters /// 2D array of date filters for the expired_at field.
/// The outer array elements are combined with OR logic.
/// The inner array elements are combined with AND logic.
- /// Example: [[\{"\>", date1\}, \{"\<", date2\}], [\{"=", date3\}]]
- /// This translates to: (expired_at \> date1 AND expired_at \< date2) OR (expired_at = date3) + /// Example: `[[{">", date1}, {"<", date2}], [{"=", date3}]]`
+ /// This translates to: `(expired_at > date1 AND expired_at < date2) OR (expired_at = date3)` /// /// /// 2D array of date filters for the invalid_at field.
/// The outer array elements are combined with OR logic.
/// The inner array elements are combined with AND logic.
- /// Example: [[\{"\>", date1\}, \{"\<", date2\}], [\{"=", date3\}]]
- /// This translates to: (invalid_at \> date1 AND invalid_at \< date2) OR (invalid_at = date3) + /// Example: `[[{">", date1}, {"<", date2}], [{"=", date3}]]`
+ /// This translates to: `(invalid_at > date1 AND invalid_at < date2) OR (invalid_at = date3)` /// /// /// List of node labels to filter on @@ -147,8 +147,8 @@ public sealed partial class GraphitiSearchFilters /// 2D array of date filters for the valid_at field.
/// The outer array elements are combined with OR logic.
/// The inner array elements are combined with AND logic.
- /// Example: [[\{"\>", date1\}, \{"\<", date2\}], [\{"=", date3\}]]
- /// This translates to: (valid_at \> date1 AND valid_at \< date2) OR (valid_at = date3) + /// Example: `[[{">", date1}, {"<", date2}], [{"=", date3}]]`
+ /// This translates to: `(valid_at > date1 AND valid_at < date2) OR (valid_at = date3)` /// #if NET7_0_OR_GREATER [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] diff --git a/src/libs/Zep/openapi.json b/src/libs/Zep/openapi.json index 3e5369c..47e85ec 100644 --- a/src/libs/Zep/openapi.json +++ b/src/libs/Zep/openapi.json @@ -7599,7 +7599,7 @@ }, "date": { "type": "string", - "description": "Date to filter on. Required for non-null operators (=, \\<\\>, \\>, \\<, \\>=, \\<=).\nShould be omitted for IS NULL (or is_null) and IS NOT NULL operators." + "description": "Date to filter on. Required for non-null operators (`=`, `<>`, `>`, `<`, `>=`, `<=`).\nShould be omitted for IS NULL (or is_null) and IS NOT NULL operators." } }, "required": [ @@ -7676,7 +7676,7 @@ "description": "Property name to filter on" }, "property_value": { - "description": "Property value to match on. Accepted types: string, int, float64, bool, or nil.\nInvalid types (e.g., arrays, objects) will be rejected by validation.\nMust be non-nil for non-null operators (=, \\<\\>, \\>, \\<, \\>=, \\<=)." + "description": "Property value to match on. Accepted types: string, int, float64, bool, or nil.\nInvalid types (e.g., arrays, objects) will be rejected by validation.\nMust be non-nil for non-null operators (`=`, `<>`, `>`, `<`, `>=`, `<=`)." } }, "required": [ @@ -7696,7 +7696,7 @@ "$ref": "#/components/schemas/GraphitiDateFilter" } }, - "description": "2D array of date filters for the created_at field.\nThe outer array elements are combined with OR logic.\nThe inner array elements are combined with AND logic.\nExample: [[\\{\"\\>\", date1\\}, \\{\"\\<\", date2\\}], [\\{\"=\", date3\\}]]\nThis translates to: (created_at \\> date1 AND created_at \\< date2) OR (created_at = date3)" + "description": "2D array of date filters for the created_at field.\nThe outer array elements are combined with OR logic.\nThe inner array elements are combined with AND logic.\nExample: `[[{\">\", date1}, {\"<\", date2}], [{\"=\", date3}]]`\nThis translates to: `(created_at > date1 AND created_at < date2) OR (created_at = date3)`" }, "edge_types": { "type": "array", @@ -7738,7 +7738,7 @@ "$ref": "#/components/schemas/GraphitiDateFilter" } }, - "description": "2D array of date filters for the expired_at field.\nThe outer array elements are combined with OR logic.\nThe inner array elements are combined with AND logic.\nExample: [[\\{\"\\>\", date1\\}, \\{\"\\<\", date2\\}], [\\{\"=\", date3\\}]]\nThis translates to: (expired_at \\> date1 AND expired_at \\< date2) OR (expired_at = date3)" + "description": "2D array of date filters for the expired_at field.\nThe outer array elements are combined with OR logic.\nThe inner array elements are combined with AND logic.\nExample: `[[{\">\", date1}, {\"<\", date2}], [{\"=\", date3}]]`\nThis translates to: `(expired_at > date1 AND expired_at < date2) OR (expired_at = date3)`" }, "invalid_at": { "type": "array", @@ -7748,7 +7748,7 @@ "$ref": "#/components/schemas/GraphitiDateFilter" } }, - "description": "2D array of date filters for the invalid_at field.\nThe outer array elements are combined with OR logic.\nThe inner array elements are combined with AND logic.\nExample: [[\\{\"\\>\", date1\\}, \\{\"\\<\", date2\\}], [\\{\"=\", date3\\}]]\nThis translates to: (invalid_at \\> date1 AND invalid_at \\< date2) OR (invalid_at = date3)" + "description": "2D array of date filters for the invalid_at field.\nThe outer array elements are combined with OR logic.\nThe inner array elements are combined with AND logic.\nExample: `[[{\">\", date1}, {\"<\", date2}], [{\"=\", date3}]]`\nThis translates to: `(invalid_at > date1 AND invalid_at < date2) OR (invalid_at = date3)`" }, "node_labels": { "type": "array", @@ -7772,7 +7772,7 @@ "$ref": "#/components/schemas/GraphitiDateFilter" } }, - "description": "2D array of date filters for the valid_at field.\nThe outer array elements are combined with OR logic.\nThe inner array elements are combined with AND logic.\nExample: [[\\{\"\\>\", date1\\}, \\{\"\\<\", date2\\}], [\\{\"=\", date3\\}]]\nThis translates to: (valid_at \\> date1 AND valid_at \\< date2) OR (valid_at = date3)" + "description": "2D array of date filters for the valid_at field.\nThe outer array elements are combined with OR logic.\nThe inner array elements are combined with AND logic.\nExample: `[[{\">\", date1}, {\"<\", date2}], [{\"=\", date3}]]`\nThis translates to: `(valid_at > date1 AND valid_at < date2) OR (valid_at = date3)`" } }, "title": "GraphitiSearchFilters"