Skip to content

Commit 96166da

Browse files
feat(api): add in/nin filter types to ComparisonFilter
1 parent 00ef21d commit 96166da

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.stats.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 151
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/openai%2Fopenai-2ab0731e8c94b7c783b55939d2d2a46c2594c1da2ec444c543e17a9eea6d9164.yml
3-
openapi_spec_hash: 5557d4cd48565e8b98dfcb96a5804965
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/openai%2Fopenai-5a660d5b485aae5061d55301f7c8522654a533c7d7d9596c4da54f0e481d8880.yml
3+
openapi_spec_hash: 50297cf7c625ec3c4bb0bc0f5a9d318a
44
config_hash: 96fbf82cf74a44ccd513f5acf0956ffd

src/resources/shared.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ export interface ComparisonFilter {
117117
* - `in`: in
118118
* - `nin`: not in
119119
*/
120-
type: 'eq' | 'ne' | 'gt' | 'gte' | 'lt' | 'lte';
120+
type: 'eq' | 'ne' | 'gt' | 'gte' | 'lt' | 'lte' | 'in' | 'nin';
121121

122122
/**
123123
* The value to compare against the attribute key; supports string, number, or

0 commit comments

Comments
 (0)