Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions .generator/schemas/v2/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -449,7 +449,7 @@ components:
type: string
GetIssueIncludeQueryParameter:
description: Comma-separated list of relationship objects that should be included
in the response.
in the response. Possible values are `assignee`, `case`, and `team_owners`.
explode: false
in: query
name: include
Expand Down Expand Up @@ -996,7 +996,8 @@ components:
$ref: '#/components/schemas/ServiceDefinitionSchemaVersions'
SearchIssuesIncludeQueryParameter:
description: Comma-separated list of relationship objects that should be included
in the response.
in the response. Possible values are `issue`, `issue.assignee`, `issue.case`,
and `issue.team_owners`.
explode: false
in: query
name: include
Expand Down
4 changes: 2 additions & 2 deletions services/error_tracking/src/v2/ErrorTrackingApi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -647,7 +647,7 @@ export interface ErrorTrackingApiGetIssueRequest {
*/
issueId: string;
/**
* Comma-separated list of relationship objects that should be included in the response.
* Comma-separated list of relationship objects that should be included in the response. Possible values are `assignee`, `case`, and `team_owners`.
* @type Array<GetIssueIncludeQueryParameterItem>
*/
include?: Array<GetIssueIncludeQueryParameterItem>;
Expand All @@ -660,7 +660,7 @@ export interface ErrorTrackingApiSearchIssuesRequest {
*/
body: IssuesSearchRequest;
/**
* Comma-separated list of relationship objects that should be included in the response.
* Comma-separated list of relationship objects that should be included in the response. Possible values are `issue`, `issue.assignee`, `issue.case`, and `issue.team_owners`.
* @type Array<SearchIssuesIncludeQueryParameterItem>
*/
include?: Array<SearchIssuesIncludeQueryParameterItem>;
Expand Down