File tree Expand file tree Collapse file tree 2 files changed +36
-0
lines changed
services/error_tracking/src/v2/models Expand file tree Collapse file tree 2 files changed +36
-0
lines changed Original file line number Diff line number Diff line change @@ -35984,6 +35984,15 @@ components:
3598435984 IssuesSearchRequestDataAttributes:
3598535985 description: Object describing a search issue request.
3598635986 properties:
35987+ assignee_ids:
35988+ description: Filter issues by assignee IDs. Multiple values are combined with OR logic.
35989+ example:
35990+ - "00000000-0000-0000-0000-000000000001"
35991+ items:
35992+ format: uuid
35993+ type: string
35994+ maxItems: 50
35995+ type: array
3598735996 from:
3598835997 description: Start date (inclusive) of the query in milliseconds since the Unix epoch.
3598935998 example: 1671612804000
@@ -35997,6 +36006,15 @@ components:
3599736006 description: Search query following the event search syntax.
3599836007 example: "service:orders-* AND @language:go"
3599936008 type: string
36009+ team_ids:
36010+ description: Filter issues by team IDs. Multiple values are combined with OR logic.
36011+ example:
36012+ - "00000000-0000-0000-0000-000000000002"
36013+ items:
36014+ format: uuid
36015+ type: string
36016+ maxItems: 50
36017+ type: array
3600036018 to:
3600136019 description: End date (exclusive) of the query in milliseconds since the Unix epoch.
3600236020 example: 1671620004000
Original file line number Diff line number Diff line change @@ -8,6 +8,10 @@ import { IssuesSearchRequestDataAttributesTrack } from "./IssuesSearchRequestDat
88 * Object describing a search issue request.
99 */
1010export class IssuesSearchRequestDataAttributes {
11+ /**
12+ * Filter issues by assignee IDs. Multiple values are combined with OR logic.
13+ */
14+ "assigneeIds" ?: Array < string > ;
1115 /**
1216 * Start date (inclusive) of the query in milliseconds since the Unix epoch.
1317 */
@@ -24,6 +28,10 @@ export class IssuesSearchRequestDataAttributes {
2428 * Search query following the event search syntax.
2529 */
2630 "query" : string ;
31+ /**
32+ * Filter issues by team IDs. Multiple values are combined with OR logic.
33+ */
34+ "teamIds" ?: Array < string > ;
2735 /**
2836 * End date (exclusive) of the query in milliseconds since the Unix epoch.
2937 */
@@ -47,6 +55,11 @@ export class IssuesSearchRequestDataAttributes {
4755 * @ignore
4856 */
4957 static readonly attributeTypeMap : AttributeTypeMap = {
58+ assigneeIds : {
59+ baseName : "assignee_ids" ,
60+ type : "Array<string>" ,
61+ format : "uuid" ,
62+ } ,
5063 from : {
5164 baseName : "from" ,
5265 type : "number" ,
@@ -66,6 +79,11 @@ export class IssuesSearchRequestDataAttributes {
6679 type : "string" ,
6780 required : true ,
6881 } ,
82+ teamIds : {
83+ baseName : "team_ids" ,
84+ type : "Array<string>" ,
85+ format : "uuid" ,
86+ } ,
6987 to : {
7088 baseName : "to" ,
7189 type : "number" ,
You can’t perform that action at this time.
0 commit comments