Skip to content

Commit 90fa710

Browse files
HavenDVgithub-actions[bot]
andauthored
feat: Updated OpenAPI spec (#264)
Co-authored-by: github-actions[bot] <bot@openai.com>
1 parent 847e73a commit 90fa710

2 files changed

Lines changed: 14 additions & 0 deletions

File tree

src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.ComparisonFilterType.g.cs

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,14 @@ public enum ComparisonFilterType
4141
/// `eq`, `ne`, `gt`, `gte`, `lt`, `lte`, `in`, `nin`.
4242
/// </summary>
4343
Lte,
44+
/// <summary>
45+
/// `eq`, `ne`, `gt`, `gte`, `lt`, `lte`, `in`, `nin`.
46+
/// </summary>
47+
In,
48+
/// <summary>
49+
/// `eq`, `ne`, `gt`, `gte`, `lt`, `lte`, `in`, `nin`.
50+
/// </summary>
51+
Nin,
4452
}
4553

4654
/// <summary>
@@ -61,6 +69,8 @@ public static string ToValueString(this ComparisonFilterType value)
6169
ComparisonFilterType.Gte => "gte",
6270
ComparisonFilterType.Lt => "lt",
6371
ComparisonFilterType.Lte => "lte",
72+
ComparisonFilterType.In => "in",
73+
ComparisonFilterType.Nin => "nin",
6474
_ => throw new global::System.ArgumentOutOfRangeException(nameof(value), value, null),
6575
};
6676
}
@@ -77,6 +87,8 @@ public static string ToValueString(this ComparisonFilterType value)
7787
"gte" => ComparisonFilterType.Gte,
7888
"lt" => ComparisonFilterType.Lt,
7989
"lte" => ComparisonFilterType.Lte,
90+
"in" => ComparisonFilterType.In,
91+
"nin" => ComparisonFilterType.Nin,
8092
_ => null,
8193
};
8294
}

src/libs/tryAGI.OpenAI/openapi.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35968,6 +35968,8 @@ components:
3596835968
- gte
3596935969
- lt
3597035970
- lte
35971+
- in
35972+
- nin
3597135973
description: >
3597235974
Specifies the comparison operator: `eq`, `ne`, `gt`, `gte`, `lt`,
3597335975
`lte`, `in`, `nin`.

0 commit comments

Comments
 (0)