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
4 changes: 2 additions & 2 deletions src/libs/Zep/Generated/Zep.Models.GraphitiDateFilter.g.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public sealed partial class GraphitiDateFilter
public required global::Zep.GraphitiComparisonOperator ComparisonOperator { get; set; }

/// <summary>
/// Date to filter on. Required for non-null operators (=, \&lt;\&gt;, \&gt;, \&lt;, \&gt;=, \&lt;=).<br/>
/// Date to filter on. Required for non-null operators (`=`, `&lt;&gt;`, `&gt;`, `&lt;`, `&gt;=`, `&lt;=`).<br/>
/// Should be omitted for IS NULL (or is_null) and IS NOT NULL operators.
/// </summary>
[global::System.Text.Json.Serialization.JsonPropertyName("date")]
Expand All @@ -36,7 +36,7 @@ public sealed partial class GraphitiDateFilter
/// Comparison operator for date filter
/// </param>
/// <param name="date">
/// Date to filter on. Required for non-null operators (=, \&lt;\&gt;, \&gt;, \&lt;, \&gt;=, \&lt;=).<br/>
/// Date to filter on. Required for non-null operators (`=`, `&lt;&gt;`, `&gt;`, `&lt;`, `&gt;=`, `&lt;=`).<br/>
/// Should be omitted for IS NULL (or is_null) and IS NOT NULL operators.
/// </param>
#if NET7_0_OR_GREATER
Expand Down
4 changes: 2 additions & 2 deletions src/libs/Zep/Generated/Zep.Models.GraphitiPropertyFilter.g.cs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public sealed partial class GraphitiPropertyFilter
/// <summary>
/// Property value to match on. Accepted types: string, int, float64, bool, or nil.<br/>
/// Invalid types (e.g., arrays, objects) will be rejected by validation.<br/>
/// Must be non-nil for non-null operators (=, \&lt;\&gt;, \&gt;, \&lt;, \&gt;=, \&lt;=).
/// Must be non-nil for non-null operators (`=`, `&lt;&gt;`, `&gt;`, `&lt;`, `&gt;=`, `&lt;=`).
/// </summary>
[global::System.Text.Json.Serialization.JsonPropertyName("property_value")]
public object? PropertyValue { get; set; }
Expand All @@ -49,7 +49,7 @@ public sealed partial class GraphitiPropertyFilter
/// <param name="propertyValue">
/// Property value to match on. Accepted types: string, int, float64, bool, or nil.<br/>
/// Invalid types (e.g., arrays, objects) will be rejected by validation.<br/>
/// Must be non-nil for non-null operators (=, \&lt;\&gt;, \&gt;, \&lt;, \&gt;=, \&lt;=).
/// Must be non-nil for non-null operators (`=`, `&lt;&gt;`, `&gt;`, `&lt;`, `&gt;=`, `&lt;=`).
/// </param>
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ namespace Zep
/// <summary>
/// Property value to match on. Accepted types: string, int, float64, bool, or nil.<br/>
/// Invalid types (e.g., arrays, objects) will be rejected by validation.<br/>
/// Must be non-nil for non-null operators (=, \&lt;\&gt;, \&gt;, \&lt;, \&gt;=, \&lt;=).
/// Must be non-nil for non-null operators (`=`, `&lt;&gt;`, `&gt;`, `&lt;`, `&gt;=`, `&lt;=`).
/// </summary>
public sealed partial class GraphitiPropertyFilterPropertyValue
{
Expand Down
32 changes: 16 additions & 16 deletions src/libs/Zep/Generated/Zep.Models.GraphitiSearchFilters.g.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ public sealed partial class GraphitiSearchFilters
/// 2D array of date filters for the created_at field.<br/>
/// The outer array elements are combined with OR logic.<br/>
/// The inner array elements are combined with AND logic.<br/>
/// Example: [[\{"\&gt;", date1\}, \{"\&lt;", date2\}], [\{"=", date3\}]]<br/>
/// This translates to: (created_at \&gt; date1 AND created_at \&lt; date2) OR (created_at = date3)
/// Example: `[[{"&gt;", date1}, {"&lt;", date2}], [{"=", date3}]]`<br/>
/// This translates to: `(created_at &gt; date1 AND created_at &lt; date2) OR (created_at = date3)`
/// </summary>
[global::System.Text.Json.Serialization.JsonPropertyName("created_at")]
public global::System.Collections.Generic.IList<global::System.Collections.Generic.IList<global::Zep.GraphitiDateFilter>>? CreatedAt { get; set; }
Expand Down Expand Up @@ -53,8 +53,8 @@ public sealed partial class GraphitiSearchFilters
/// 2D array of date filters for the expired_at field.<br/>
/// The outer array elements are combined with OR logic.<br/>
/// The inner array elements are combined with AND logic.<br/>
/// Example: [[\{"\&gt;", date1\}, \{"\&lt;", date2\}], [\{"=", date3\}]]<br/>
/// This translates to: (expired_at \&gt; date1 AND expired_at \&lt; date2) OR (expired_at = date3)
/// Example: `[[{"&gt;", date1}, {"&lt;", date2}], [{"=", date3}]]`<br/>
/// This translates to: `(expired_at &gt; date1 AND expired_at &lt; date2) OR (expired_at = date3)`
/// </summary>
[global::System.Text.Json.Serialization.JsonPropertyName("expired_at")]
public global::System.Collections.Generic.IList<global::System.Collections.Generic.IList<global::Zep.GraphitiDateFilter>>? ExpiredAt { get; set; }
Expand All @@ -63,8 +63,8 @@ public sealed partial class GraphitiSearchFilters
/// 2D array of date filters for the invalid_at field.<br/>
/// The outer array elements are combined with OR logic.<br/>
/// The inner array elements are combined with AND logic.<br/>
/// Example: [[\{"\&gt;", date1\}, \{"\&lt;", date2\}], [\{"=", date3\}]]<br/>
/// This translates to: (invalid_at \&gt; date1 AND invalid_at \&lt; date2) OR (invalid_at = date3)
/// Example: `[[{"&gt;", date1}, {"&lt;", date2}], [{"=", date3}]]`<br/>
/// This translates to: `(invalid_at &gt; date1 AND invalid_at &lt; date2) OR (invalid_at = date3)`
/// </summary>
[global::System.Text.Json.Serialization.JsonPropertyName("invalid_at")]
public global::System.Collections.Generic.IList<global::System.Collections.Generic.IList<global::Zep.GraphitiDateFilter>>? InvalidAt { get; set; }
Expand All @@ -85,8 +85,8 @@ public sealed partial class GraphitiSearchFilters
/// 2D array of date filters for the valid_at field.<br/>
/// The outer array elements are combined with OR logic.<br/>
/// The inner array elements are combined with AND logic.<br/>
/// Example: [[\{"\&gt;", date1\}, \{"\&lt;", date2\}], [\{"=", date3\}]]<br/>
/// This translates to: (valid_at \&gt; date1 AND valid_at \&lt; date2) OR (valid_at = date3)
/// Example: `[[{"&gt;", date1}, {"&lt;", date2}], [{"=", date3}]]`<br/>
/// This translates to: `(valid_at &gt; date1 AND valid_at &lt; date2) OR (valid_at = date3)`
/// </summary>
[global::System.Text.Json.Serialization.JsonPropertyName("valid_at")]
public global::System.Collections.Generic.IList<global::System.Collections.Generic.IList<global::Zep.GraphitiDateFilter>>? ValidAt { get; set; }
Expand All @@ -104,8 +104,8 @@ public sealed partial class GraphitiSearchFilters
/// 2D array of date filters for the created_at field.<br/>
/// The outer array elements are combined with OR logic.<br/>
/// The inner array elements are combined with AND logic.<br/>
/// Example: [[\{"\&gt;", date1\}, \{"\&lt;", date2\}], [\{"=", date3\}]]<br/>
/// This translates to: (created_at \&gt; date1 AND created_at \&lt; date2) OR (created_at = date3)
/// Example: `[[{"&gt;", date1}, {"&lt;", date2}], [{"=", date3}]]`<br/>
/// This translates to: `(created_at &gt; date1 AND created_at &lt; date2) OR (created_at = date3)`
/// </param>
/// <param name="edgeTypes">
/// List of edge types to filter on
Expand All @@ -127,15 +127,15 @@ public sealed partial class GraphitiSearchFilters
/// 2D array of date filters for the expired_at field.<br/>
/// The outer array elements are combined with OR logic.<br/>
/// The inner array elements are combined with AND logic.<br/>
/// Example: [[\{"\&gt;", date1\}, \{"\&lt;", date2\}], [\{"=", date3\}]]<br/>
/// This translates to: (expired_at \&gt; date1 AND expired_at \&lt; date2) OR (expired_at = date3)
/// Example: `[[{"&gt;", date1}, {"&lt;", date2}], [{"=", date3}]]`<br/>
/// This translates to: `(expired_at &gt; date1 AND expired_at &lt; date2) OR (expired_at = date3)`
/// </param>
/// <param name="invalidAt">
/// 2D array of date filters for the invalid_at field.<br/>
/// The outer array elements are combined with OR logic.<br/>
/// The inner array elements are combined with AND logic.<br/>
/// Example: [[\{"\&gt;", date1\}, \{"\&lt;", date2\}], [\{"=", date3\}]]<br/>
/// This translates to: (invalid_at \&gt; date1 AND invalid_at \&lt; date2) OR (invalid_at = date3)
/// Example: `[[{"&gt;", date1}, {"&lt;", date2}], [{"=", date3}]]`<br/>
/// This translates to: `(invalid_at &gt; date1 AND invalid_at &lt; date2) OR (invalid_at = date3)`
/// </param>
/// <param name="nodeLabels">
/// List of node labels to filter on
Expand All @@ -147,8 +147,8 @@ public sealed partial class GraphitiSearchFilters
/// 2D array of date filters for the valid_at field.<br/>
/// The outer array elements are combined with OR logic.<br/>
/// The inner array elements are combined with AND logic.<br/>
/// Example: [[\{"\&gt;", date1\}, \{"\&lt;", date2\}], [\{"=", date3\}]]<br/>
/// This translates to: (valid_at \&gt; date1 AND valid_at \&lt; date2) OR (valid_at = date3)
/// Example: `[[{"&gt;", date1}, {"&lt;", date2}], [{"=", date3}]]`<br/>
/// This translates to: `(valid_at &gt; date1 AND valid_at &lt; date2) OR (valid_at = date3)`
/// </param>
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
Expand Down
12 changes: 6 additions & 6 deletions src/libs/Zep/openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": [
Expand Down Expand Up @@ -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": [
Expand All @@ -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",
Expand Down Expand Up @@ -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",
Expand All @@ -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",
Expand All @@ -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"
Expand Down
Loading