File tree Expand file tree Collapse file tree
services/error_tracking/src/v2/models Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -35103,6 +35103,15 @@ components:
3510335103 IssuesSearchRequestDataAttributes:
3510435104 description: Object describing a search issue request.
3510535105 properties:
35106+ assignee_ids:
35107+ description: Filter issues by assignee IDs. Multiple values are combined with OR logic.
35108+ example:
35109+ - "00000000-0000-0000-0000-000000000001"
35110+ items:
35111+ format: uuid
35112+ type: string
35113+ maxItems: 50
35114+ type: array
3510635115 from:
3510735116 description: Start date (inclusive) of the query in milliseconds since the Unix epoch.
3510835117 example: 1671612804000
@@ -35116,6 +35125,15 @@ components:
3511635125 description: Search query following the event search syntax.
3511735126 example: "service:orders-* AND @language:go"
3511835127 type: string
35128+ team_ids:
35129+ description: Filter issues by team IDs. Multiple values are combined with OR logic.
35130+ example:
35131+ - "00000000-0000-0000-0000-000000000002"
35132+ items:
35133+ format: uuid
35134+ type: string
35135+ maxItems: 50
35136+ type: array
3511935137 to:
3512035138 description: End date (exclusive) of the query in milliseconds since the Unix epoch.
3512135139 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