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 @@ -35379,6 +35379,15 @@ components:
3537935379 IssuesSearchRequestDataAttributes:
3538035380 description: Object describing a search issue request.
3538135381 properties:
35382+ assignee_ids:
35383+ description: Filter issues by assignee IDs. Multiple values are combined with OR logic.
35384+ example:
35385+ - "00000000-0000-0000-0000-000000000001"
35386+ items:
35387+ format: uuid
35388+ type: string
35389+ maxItems: 50
35390+ type: array
3538235391 from:
3538335392 description: Start date (inclusive) of the query in milliseconds since the Unix epoch.
3538435393 example: 1671612804000
@@ -35392,6 +35401,15 @@ components:
3539235401 description: Search query following the event search syntax.
3539335402 example: "service:orders-* AND @language:go"
3539435403 type: string
35404+ team_ids:
35405+ description: Filter issues by team IDs. Multiple values are combined with OR logic.
35406+ example:
35407+ - "00000000-0000-0000-0000-000000000002"
35408+ items:
35409+ format: uuid
35410+ type: string
35411+ maxItems: 50
35412+ type: array
3539535413 to:
3539635414 description: End date (exclusive) of the query in milliseconds since the Unix epoch.
3539735415 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