mirror of
https://github.com/zitadel/zitadel.git
synced 2025-12-02 14:12:27 +00:00
fix(api): add missing InIDsFilter
This commit is contained in:
@@ -99,3 +99,23 @@ message TimestampFilter {
|
|||||||
(validate.rules).enum.defined_only = true
|
(validate.rules).enum.defined_only = true
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
message InIDsFilter {
|
||||||
|
// Defines the ids to query for.
|
||||||
|
repeated string ids = 1 [
|
||||||
|
(validate.rules).repeated = {
|
||||||
|
unique: true
|
||||||
|
items: {
|
||||||
|
string: {
|
||||||
|
min_len: 1
|
||||||
|
max_len: 200
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
(grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field) = {
|
||||||
|
min_length: 1;
|
||||||
|
max_length: 200;
|
||||||
|
example: "[\"69629023906488334\",\"69622366012355662\"]";
|
||||||
|
}
|
||||||
|
];
|
||||||
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user