diff --git a/.generator/schemas/v2/openapi.yaml b/.generator/schemas/v2/openapi.yaml index 6401afac9690..ca563f0a5ba4 100644 --- a/.generator/schemas/v2/openapi.yaml +++ b/.generator/schemas/v2/openapi.yaml @@ -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 @@ -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 diff --git a/services/error_tracking/src/v2/ErrorTrackingApi.ts b/services/error_tracking/src/v2/ErrorTrackingApi.ts index 55e36055c5d6..1b004f213a54 100644 --- a/services/error_tracking/src/v2/ErrorTrackingApi.ts +++ b/services/error_tracking/src/v2/ErrorTrackingApi.ts @@ -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 */ include?: Array; @@ -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 */ include?: Array;