Skip to content

Commit

Permalink
update openapi
Browse files Browse the repository at this point in the history
  • Loading branch information
IvanPleshkov committed May 23, 2023
1 parent 2069161 commit 92828ef
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion packages/js-client-rest/src/openapi/generated_schema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -737,7 +737,7 @@ export interface components {
values_count?: components["schemas"]["ValuesCount"] | (Record<string, unknown> | null);
};
/** @description Match filter request */
Match: components["schemas"]["MatchValue"] | components["schemas"]["MatchText"] | components["schemas"]["MatchAny"];
Match: components["schemas"]["MatchValue"] | components["schemas"]["MatchText"] | components["schemas"]["MatchAny"] | components["schemas"]["MatchExcept"];
/** @description Exact match of the given value */
MatchValue: {
value: components["schemas"]["ValueVariants"];
Expand All @@ -752,6 +752,10 @@ export interface components {
any: components["schemas"]["AnyVariants"];
};
AnyVariants: (string)[] | (number)[];
/** @description Should have at least one value not matching the any given values */
MatchExcept: {
except: components["schemas"]["AnyVariants"];
};
/** @description Range filter request */
Range: {
/**
Expand Down

0 comments on commit 92828ef

Please sign in to comment.