Commit 1dc868db authored by Amy Qualls's avatar Amy Qualls Committed by Matthias Käppler

Spelling fixes, API definitions

Fixing spelling and capitalization in various API definitions. Not
making changes to anything else; just the user-facing definition part.
parent 9c19460e
...@@ -112,7 +112,7 @@ module Types ...@@ -112,7 +112,7 @@ module Types
field :todos, field :todos,
Types::TodoType.connection_type, Types::TodoType.connection_type,
null: true, null: true,
description: 'Todos of the current user for the alert.', description: 'To-dos of the current user for the alert.',
resolver: Resolvers::TodoResolver resolver: Resolvers::TodoResolver
field :details_url, field :details_url,
......
...@@ -23,7 +23,7 @@ module Types ...@@ -23,7 +23,7 @@ module Types
field :unicode, field :unicode,
GraphQL::STRING_TYPE, GraphQL::STRING_TYPE,
null: false, null: false,
description: 'The emoji in unicode.' description: 'The emoji in Unicode.'
field :emoji, field :emoji,
GraphQL::STRING_TYPE, GraphQL::STRING_TYPE,
...@@ -33,7 +33,7 @@ module Types ...@@ -33,7 +33,7 @@ module Types
field :unicode_version, field :unicode_version,
GraphQL::STRING_TYPE, GraphQL::STRING_TYPE,
null: false, null: false,
description: 'The unicode version for this emoji.' description: 'The Unicode version for this emoji.'
field :user, field :user,
Types::UserType, Types::UserType,
......
...@@ -10,7 +10,7 @@ module Types ...@@ -10,7 +10,7 @@ module Types
field :errors, [GraphQL::STRING_TYPE], null: true, field :errors, [GraphQL::STRING_TYPE], null: true,
description: 'Linting errors.' description: 'Linting errors.'
field :merged_yaml, GraphQL::STRING_TYPE, null: true, field :merged_yaml, GraphQL::STRING_TYPE, null: true,
description: 'Merged CI config YAML.' description: 'Merged CI configuration YAML.'
field :stages, Types::Ci::Config::StageType.connection_type, null: true, field :stages, Types::Ci::Config::StageType.connection_type, null: true,
description: 'Stages of the pipeline.' description: 'Stages of the pipeline.'
field :status, Types::Ci::Config::StatusEnum, null: true, field :status, Types::Ci::Config::StatusEnum, null: true,
......
...@@ -30,7 +30,7 @@ module Types ...@@ -30,7 +30,7 @@ module Types
description: 'Detailed status of the pipeline.' description: 'Detailed status of the pipeline.'
field :config_source, PipelineConfigSourceEnum, null: true, field :config_source, PipelineConfigSourceEnum, null: true,
description: "Config source of the pipeline (#{::Enums::Ci::Pipeline.config_sources.keys.join(', ').upcase})" description: "Configuration source of the pipeline (#{::Enums::Ci::Pipeline.config_sources.keys.join(', ').upcase})"
field :duration, GraphQL::INT_TYPE, null: true, field :duration, GraphQL::INT_TYPE, null: true,
description: 'Duration of the pipeline in seconds.' description: 'Duration of the pipeline in seconds.'
......
...@@ -112,7 +112,7 @@ module Types ...@@ -112,7 +112,7 @@ module Types
field :suggestion_commit_message, GraphQL::STRING_TYPE, null: true, field :suggestion_commit_message, GraphQL::STRING_TYPE, null: true,
description: 'The commit message used to apply merge request suggestions' description: 'The commit message used to apply merge request suggestions'
field :squash_read_only, GraphQL::BOOLEAN_TYPE, null: false, method: :squash_readonly?, field :squash_read_only, GraphQL::BOOLEAN_TYPE, null: false, method: :squash_readonly?,
description: 'Indicates if squash readonly is enabled' description: 'Indicates if `squashReadOnly` is enabled'
field :namespace, Types::NamespaceType, null: true, field :namespace, Types::NamespaceType, null: true,
description: 'Namespace of the project' description: 'Namespace of the project'
......
...@@ -11,7 +11,7 @@ module Types ...@@ -11,7 +11,7 @@ module Types
null: false null: false
field :load_async, GraphQL::BOOLEAN_TYPE, field :load_async, GraphQL::BOOLEAN_TYPE,
description: 'Shows whether the blob content is loaded async', description: 'Shows whether the blob content is loaded asynchronously',
null: false null: false
field :collapsed, GraphQL::BOOLEAN_TYPE, field :collapsed, GraphQL::BOOLEAN_TYPE,
......
...@@ -7,7 +7,7 @@ module Types ...@@ -7,7 +7,7 @@ module Types
field :id, GraphQL::ID_TYPE, null: false, field :id, GraphQL::ID_TYPE, null: false,
description: 'ID of the entry' description: 'ID of the entry'
field :sha, GraphQL::STRING_TYPE, null: false, field :sha, GraphQL::STRING_TYPE, null: false,
description: 'Last commit sha for the entry', method: :id description: 'Last commit SHA for the entry', method: :id
field :name, GraphQL::STRING_TYPE, null: false, field :name, GraphQL::STRING_TYPE, null: false,
description: 'Name of the entry' description: 'Name of the entry'
field :type, Tree::TypeEnum, null: false, field :type, Tree::TypeEnum, null: false,
......
...@@ -350,7 +350,7 @@ type AlertManagementAlert implements Noteable { ...@@ -350,7 +350,7 @@ type AlertManagementAlert implements Noteable {
title: String title: String
""" """
Todos of the current user for the alert. To-dos of the current user for the alert.
""" """
todos( todos(
""" """
...@@ -1092,12 +1092,12 @@ type AwardEmoji { ...@@ -1092,12 +1092,12 @@ type AwardEmoji {
name: String! name: String!
""" """
The emoji in unicode. The emoji in Unicode.
""" """
unicode: String! unicode: String!
""" """
The unicode version for this emoji. The Unicode version for this emoji.
""" """
unicodeVersion: String! unicodeVersion: String!
...@@ -1287,7 +1287,7 @@ type Blob implements Entry { ...@@ -1287,7 +1287,7 @@ type Blob implements Entry {
path: String! path: String!
""" """
Last commit sha for the entry Last commit SHA for the entry
""" """
sha: String! sha: String!
...@@ -2487,7 +2487,7 @@ type CiConfig { ...@@ -2487,7 +2487,7 @@ type CiConfig {
errors: [String!] errors: [String!]
""" """
Merged CI config YAML. Merged CI configuration YAML.
""" """
mergedYaml: String mergedYaml: String
...@@ -8090,7 +8090,7 @@ interface Entry { ...@@ -8090,7 +8090,7 @@ interface Entry {
path: String! path: String!
""" """
Last commit sha for the entry Last commit SHA for the entry
""" """
sha: String! sha: String!
...@@ -11714,7 +11714,7 @@ type IncidentManagementOncallRotation { ...@@ -11714,7 +11714,7 @@ type IncidentManagementOncallRotation {
): OncallParticipantTypeConnection ): OncallParticipantTypeConnection
""" """
Blocks of time for which a participant is on-call within a given timeframe. Timeframe cannot exceed one month. Blocks of time for which a participant is on-call within a given time frame. Time frame cannot exceed one month.
""" """
shifts( shifts(
""" """
...@@ -17440,7 +17440,7 @@ type Pipeline { ...@@ -17440,7 +17440,7 @@ type Pipeline {
committedAt: Time committedAt: Time
""" """
Config source of the pipeline (UNKNOWN_SOURCE, REPOSITORY_SOURCE, Configuration source of the pipeline (UNKNOWN_SOURCE, REPOSITORY_SOURCE,
AUTO_DEVOPS_SOURCE, WEBIDE_SOURCE, REMOTE_SOURCE, EXTERNAL_PROJECT_SOURCE, AUTO_DEVOPS_SOURCE, WEBIDE_SOURCE, REMOTE_SOURCE, EXTERNAL_PROJECT_SOURCE,
BRIDGE_SOURCE, PARAMETER_SOURCE) BRIDGE_SOURCE, PARAMETER_SOURCE)
""" """
...@@ -19485,7 +19485,7 @@ type Project { ...@@ -19485,7 +19485,7 @@ type Project {
snippetsEnabled: Boolean snippetsEnabled: Boolean
""" """
Indicates if squash readonly is enabled Indicates if `squashReadOnly` is enabled
""" """
squashReadOnly: Boolean! squashReadOnly: Boolean!
...@@ -22701,37 +22701,37 @@ Represents summary of a security report ...@@ -22701,37 +22701,37 @@ Represents summary of a security report
""" """
type SecurityReportSummary { type SecurityReportSummary {
""" """
Aggregated counts for the api_fuzzing scan Aggregated counts for the `api_fuzzing` scan
""" """
apiFuzzing: SecurityReportSummarySection apiFuzzing: SecurityReportSummarySection
""" """
Aggregated counts for the container_scanning scan Aggregated counts for the `container_scanning` scan
""" """
containerScanning: SecurityReportSummarySection containerScanning: SecurityReportSummarySection
""" """
Aggregated counts for the coverage_fuzzing scan Aggregated counts for the `coverage_fuzzing` scan
""" """
coverageFuzzing: SecurityReportSummarySection coverageFuzzing: SecurityReportSummarySection
""" """
Aggregated counts for the dast scan Aggregated counts for the `dast` scan
""" """
dast: SecurityReportSummarySection dast: SecurityReportSummarySection
""" """
Aggregated counts for the dependency_scanning scan Aggregated counts for the `dependency_scanning` scan
""" """
dependencyScanning: SecurityReportSummarySection dependencyScanning: SecurityReportSummarySection
""" """
Aggregated counts for the sast scan Aggregated counts for the `sast` scan
""" """
sast: SecurityReportSummarySection sast: SecurityReportSummarySection
""" """
Aggregated counts for the secret_detection scan Aggregated counts for the `secret_detection` scan
""" """
secretDetection: SecurityReportSummarySection secretDetection: SecurityReportSummarySection
} }
...@@ -23704,7 +23704,7 @@ type SnippetBlobViewer { ...@@ -23704,7 +23704,7 @@ type SnippetBlobViewer {
fileType: String! fileType: String!
""" """
Shows whether the blob content is loaded async Shows whether the blob content is loaded asynchronously
""" """
loadAsync: Boolean! loadAsync: Boolean!
...@@ -23975,7 +23975,7 @@ type Submodule implements Entry { ...@@ -23975,7 +23975,7 @@ type Submodule implements Entry {
path: String! path: String!
""" """
Last commit sha for the entry Last commit SHA for the entry
""" """
sha: String! sha: String!
...@@ -25015,7 +25015,7 @@ type TreeEntry implements Entry { ...@@ -25015,7 +25015,7 @@ type TreeEntry implements Entry {
path: String! path: String!
""" """
Last commit sha for the entry Last commit SHA for the entry
""" """
sha: String! sha: String!
......
...@@ -953,7 +953,7 @@ ...@@ -953,7 +953,7 @@
}, },
{ {
"name": "todos", "name": "todos",
"description": "Todos of the current user for the alert.", "description": "To-dos of the current user for the alert.",
"args": [ "args": [
{ {
"name": "action", "name": "action",
...@@ -2699,7 +2699,7 @@ ...@@ -2699,7 +2699,7 @@
}, },
{ {
"name": "unicode", "name": "unicode",
"description": "The emoji in unicode.", "description": "The emoji in Unicode.",
"args": [ "args": [
], ],
...@@ -2717,7 +2717,7 @@ ...@@ -2717,7 +2717,7 @@
}, },
{ {
"name": "unicodeVersion", "name": "unicodeVersion",
"description": "The unicode version for this emoji.", "description": "The Unicode version for this emoji.",
"args": [ "args": [
], ],
...@@ -3297,7 +3297,7 @@ ...@@ -3297,7 +3297,7 @@
}, },
{ {
"name": "sha", "name": "sha",
"description": "Last commit sha for the entry", "description": "Last commit SHA for the entry",
"args": [ "args": [
], ],
...@@ -6584,7 +6584,7 @@ ...@@ -6584,7 +6584,7 @@
}, },
{ {
"name": "mergedYaml", "name": "mergedYaml",
"description": "Merged CI config YAML.", "description": "Merged CI configuration YAML.",
"args": [ "args": [
], ],
...@@ -22387,7 +22387,7 @@ ...@@ -22387,7 +22387,7 @@
}, },
{ {
"name": "sha", "name": "sha",
"description": "Last commit sha for the entry", "description": "Last commit SHA for the entry",
"args": [ "args": [
], ],
...@@ -31960,7 +31960,7 @@ ...@@ -31960,7 +31960,7 @@
}, },
{ {
"name": "shifts", "name": "shifts",
"description": "Blocks of time for which a participant is on-call within a given timeframe. Timeframe cannot exceed one month.", "description": "Blocks of time for which a participant is on-call within a given time frame. Time frame cannot exceed one month.",
"args": [ "args": [
{ {
"name": "startTime", "name": "startTime",
...@@ -51388,7 +51388,7 @@ ...@@ -51388,7 +51388,7 @@
}, },
{ {
"name": "configSource", "name": "configSource",
"description": "Config source of the pipeline (UNKNOWN_SOURCE, REPOSITORY_SOURCE, AUTO_DEVOPS_SOURCE, WEBIDE_SOURCE, REMOTE_SOURCE, EXTERNAL_PROJECT_SOURCE, BRIDGE_SOURCE, PARAMETER_SOURCE)", "description": "Configuration source of the pipeline (UNKNOWN_SOURCE, REPOSITORY_SOURCE, AUTO_DEVOPS_SOURCE, WEBIDE_SOURCE, REMOTE_SOURCE, EXTERNAL_PROJECT_SOURCE, BRIDGE_SOURCE, PARAMETER_SOURCE)",
"args": [ "args": [
], ],
...@@ -56604,7 +56604,7 @@ ...@@ -56604,7 +56604,7 @@
}, },
{ {
"name": "squashReadOnly", "name": "squashReadOnly",
"description": "Indicates if squash readonly is enabled", "description": "Indicates if `squashReadOnly` is enabled",
"args": [ "args": [
], ],
...@@ -65628,7 +65628,7 @@ ...@@ -65628,7 +65628,7 @@
"fields": [ "fields": [
{ {
"name": "apiFuzzing", "name": "apiFuzzing",
"description": "Aggregated counts for the api_fuzzing scan", "description": "Aggregated counts for the `api_fuzzing` scan",
"args": [ "args": [
], ],
...@@ -65642,7 +65642,7 @@ ...@@ -65642,7 +65642,7 @@
}, },
{ {
"name": "containerScanning", "name": "containerScanning",
"description": "Aggregated counts for the container_scanning scan", "description": "Aggregated counts for the `container_scanning` scan",
"args": [ "args": [
], ],
...@@ -65656,7 +65656,7 @@ ...@@ -65656,7 +65656,7 @@
}, },
{ {
"name": "coverageFuzzing", "name": "coverageFuzzing",
"description": "Aggregated counts for the coverage_fuzzing scan", "description": "Aggregated counts for the `coverage_fuzzing` scan",
"args": [ "args": [
], ],
...@@ -65670,7 +65670,7 @@ ...@@ -65670,7 +65670,7 @@
}, },
{ {
"name": "dast", "name": "dast",
"description": "Aggregated counts for the dast scan", "description": "Aggregated counts for the `dast` scan",
"args": [ "args": [
], ],
...@@ -65684,7 +65684,7 @@ ...@@ -65684,7 +65684,7 @@
}, },
{ {
"name": "dependencyScanning", "name": "dependencyScanning",
"description": "Aggregated counts for the dependency_scanning scan", "description": "Aggregated counts for the `dependency_scanning` scan",
"args": [ "args": [
], ],
...@@ -65698,7 +65698,7 @@ ...@@ -65698,7 +65698,7 @@
}, },
{ {
"name": "sast", "name": "sast",
"description": "Aggregated counts for the sast scan", "description": "Aggregated counts for the `sast` scan",
"args": [ "args": [
], ],
...@@ -65712,7 +65712,7 @@ ...@@ -65712,7 +65712,7 @@
}, },
{ {
"name": "secretDetection", "name": "secretDetection",
"description": "Aggregated counts for the secret_detection scan", "description": "Aggregated counts for the `secret_detection` scan",
"args": [ "args": [
], ],
...@@ -68740,7 +68740,7 @@ ...@@ -68740,7 +68740,7 @@
}, },
{ {
"name": "loadAsync", "name": "loadAsync",
"description": "Shows whether the blob content is loaded async", "description": "Shows whether the blob content is loaded asynchronously",
"args": [ "args": [
], ],
...@@ -69551,7 +69551,7 @@ ...@@ -69551,7 +69551,7 @@
}, },
{ {
"name": "sha", "name": "sha",
"description": "Last commit sha for the entry", "description": "Last commit SHA for the entry",
"args": [ "args": [
], ],
...@@ -72763,7 +72763,7 @@ ...@@ -72763,7 +72763,7 @@
}, },
{ {
"name": "sha", "name": "sha",
"description": "Last commit sha for the entry", "description": "Last commit SHA for the entry",
"args": [ "args": [
], ],
...@@ -102,7 +102,7 @@ Describes an alert from the project's Alert Management. ...@@ -102,7 +102,7 @@ Describes an alert from the project's Alert Management.
| `startedAt` | Time | Timestamp the alert was raised. | | `startedAt` | Time | Timestamp the alert was raised. |
| `status` | AlertManagementStatus | Status of the alert. | | `status` | AlertManagementStatus | Status of the alert. |
| `title` | String | Title of the alert. | | `title` | String | Title of the alert. |
| `todos` | TodoConnection | Todos of the current user for the alert. | | `todos` | TodoConnection | To-dos of the current user for the alert. |
| `updatedAt` | Time | Timestamp the alert was last updated. | | `updatedAt` | Time | Timestamp the alert was last updated. |
### AlertManagementAlertStatusCountsType ### AlertManagementAlertStatusCountsType
...@@ -179,8 +179,8 @@ An emoji awarded by a user. ...@@ -179,8 +179,8 @@ An emoji awarded by a user.
| `description` | String! | The emoji description. | | `description` | String! | The emoji description. |
| `emoji` | String! | The emoji as an icon. | | `emoji` | String! | The emoji as an icon. |
| `name` | String! | The emoji name. | | `name` | String! | The emoji name. |
| `unicode` | String! | The emoji in unicode. | | `unicode` | String! | The emoji in Unicode. |
| `unicodeVersion` | String! | The unicode version for this emoji. | | `unicodeVersion` | String! | The Unicode version for this emoji. |
| `user` | User! | The user who awarded the emoji. | | `user` | User! | The user who awarded the emoji. |
### AwardEmojiAddPayload ### AwardEmojiAddPayload
...@@ -231,7 +231,7 @@ Autogenerated return type of AwardEmojiToggle. ...@@ -231,7 +231,7 @@ Autogenerated return type of AwardEmojiToggle.
| `mode` | String | Blob mode in numeric format | | `mode` | String | Blob mode in numeric format |
| `name` | String! | Name of the entry | | `name` | String! | Name of the entry |
| `path` | String! | Path of the entry | | `path` | String! | Path of the entry |
| `sha` | String! | Last commit sha for the entry | | `sha` | String! | Last commit SHA for the entry |
| `type` | EntryType! | Type of tree entry | | `type` | EntryType! | Type of tree entry |
| `webPath` | String | Web path of the blob | | `webPath` | String | Web path of the blob |
| `webUrl` | String | Web URL of the blob | | `webUrl` | String | Web URL of the blob |
...@@ -397,7 +397,7 @@ Autogenerated return type of CiCdSettingsUpdate. ...@@ -397,7 +397,7 @@ Autogenerated return type of CiCdSettingsUpdate.
| Field | Type | Description | | Field | Type | Description |
| ----- | ---- | ----------- | | ----- | ---- | ----------- |
| `errors` | String! => Array | Linting errors. | | `errors` | String! => Array | Linting errors. |
| `mergedYaml` | String | Merged CI config YAML. | | `mergedYaml` | String | Merged CI configuration YAML. |
| `stages` | CiConfigStageConnection | Stages of the pipeline. | | `stages` | CiConfigStageConnection | Stages of the pipeline. |
| `status` | CiConfigStatus | Status of linting, can be either valid or invalid. | | `status` | CiConfigStatus | Status of linting, can be either valid or invalid. |
...@@ -1787,7 +1787,7 @@ Describes an incident management on-call rotation. ...@@ -1787,7 +1787,7 @@ Describes an incident management on-call rotation.
| `lengthUnit` | OncallRotationUnitEnum | Unit of the on-call rotation length. | | `lengthUnit` | OncallRotationUnitEnum | Unit of the on-call rotation length. |
| `name` | String! | Name of the on-call rotation. | | `name` | String! | Name of the on-call rotation. |
| `participants` | OncallParticipantTypeConnection | Participants of the on-call rotation. | | `participants` | OncallParticipantTypeConnection | Participants of the on-call rotation. |
| `shifts` | IncidentManagementOncallShiftConnection | Blocks of time for which a participant is on-call within a given timeframe. Timeframe cannot exceed one month. | | `shifts` | IncidentManagementOncallShiftConnection | Blocks of time for which a participant is on-call within a given time frame. Time frame cannot exceed one month. |
| `startsAt` | Time | Start date of the on-call rotation. | | `startsAt` | Time | Start date of the on-call rotation. |
### IncidentManagementOncallSchedule ### IncidentManagementOncallSchedule
...@@ -2644,7 +2644,7 @@ Information about pagination in a connection.. ...@@ -2644,7 +2644,7 @@ Information about pagination in a connection..
| `beforeSha` | String | Base SHA of the source branch. | | `beforeSha` | String | Base SHA of the source branch. |
| `cancelable` | Boolean! | Specifies if a pipeline can be canceled. | | `cancelable` | Boolean! | Specifies if a pipeline can be canceled. |
| `committedAt` | Time | Timestamp of the pipeline's commit. | | `committedAt` | Time | Timestamp of the pipeline's commit. |
| `configSource` | PipelineConfigSourceEnum | Config source of the pipeline (UNKNOWN_SOURCE, REPOSITORY_SOURCE, AUTO_DEVOPS_SOURCE, WEBIDE_SOURCE, REMOTE_SOURCE, EXTERNAL_PROJECT_SOURCE, BRIDGE_SOURCE, PARAMETER_SOURCE) | | `configSource` | PipelineConfigSourceEnum | Configuration source of the pipeline (UNKNOWN_SOURCE, REPOSITORY_SOURCE, AUTO_DEVOPS_SOURCE, WEBIDE_SOURCE, REMOTE_SOURCE, EXTERNAL_PROJECT_SOURCE, BRIDGE_SOURCE, PARAMETER_SOURCE) |
| `coverage` | Float | Coverage percentage. | | `coverage` | Float | Coverage percentage. |
| `createdAt` | Time! | Timestamp of the pipeline's creation. | | `createdAt` | Time! | Timestamp of the pipeline's creation. |
| `detailedStatus` | DetailedStatus! | Detailed status of the pipeline. | | `detailedStatus` | DetailedStatus! | Detailed status of the pipeline. |
...@@ -2812,7 +2812,7 @@ Autogenerated return type of PipelineRetry. ...@@ -2812,7 +2812,7 @@ Autogenerated return type of PipelineRetry.
| `sharedRunnersEnabled` | Boolean | Indicates if shared runners are enabled for the project | | `sharedRunnersEnabled` | Boolean | Indicates if shared runners are enabled for the project |
| `snippets` | SnippetConnection | Snippets of the project | | `snippets` | SnippetConnection | Snippets of the project |
| `snippetsEnabled` | Boolean | Indicates if Snippets are enabled for the current user | | `snippetsEnabled` | Boolean | Indicates if Snippets are enabled for the current user |
| `squashReadOnly` | Boolean! | Indicates if squash readonly is enabled | | `squashReadOnly` | Boolean! | Indicates if `squashReadOnly` is enabled |
| `sshUrlToRepo` | String | URL to connect to the project via SSH | | `sshUrlToRepo` | String | URL to connect to the project via SSH |
| `starCount` | Int! | Number of times the project has been starred | | `starCount` | Int! | Number of times the project has been starred |
| `statistics` | ProjectStatistics | Statistics of the project | | `statistics` | ProjectStatistics | Statistics of the project |
...@@ -3269,13 +3269,13 @@ Represents summary of a security report. ...@@ -3269,13 +3269,13 @@ Represents summary of a security report.
| Field | Type | Description | | Field | Type | Description |
| ----- | ---- | ----------- | | ----- | ---- | ----------- |
| `apiFuzzing` | SecurityReportSummarySection | Aggregated counts for the api_fuzzing scan | | `apiFuzzing` | SecurityReportSummarySection | Aggregated counts for the `api_fuzzing` scan |
| `containerScanning` | SecurityReportSummarySection | Aggregated counts for the container_scanning scan | | `containerScanning` | SecurityReportSummarySection | Aggregated counts for the `container_scanning` scan |
| `coverageFuzzing` | SecurityReportSummarySection | Aggregated counts for the coverage_fuzzing scan | | `coverageFuzzing` | SecurityReportSummarySection | Aggregated counts for the `coverage_fuzzing` scan |
| `dast` | SecurityReportSummarySection | Aggregated counts for the dast scan | | `dast` | SecurityReportSummarySection | Aggregated counts for the `dast` scan |
| `dependencyScanning` | SecurityReportSummarySection | Aggregated counts for the dependency_scanning scan | | `dependencyScanning` | SecurityReportSummarySection | Aggregated counts for the `dependency_scanning` scan |
| `sast` | SecurityReportSummarySection | Aggregated counts for the sast scan | | `sast` | SecurityReportSummarySection | Aggregated counts for the `sast` scan |
| `secretDetection` | SecurityReportSummarySection | Aggregated counts for the secret_detection scan | | `secretDetection` | SecurityReportSummarySection | Aggregated counts for the `secret_detection` scan |
### SecurityReportSummarySection ### SecurityReportSummarySection
...@@ -3468,7 +3468,7 @@ Represents how the blob content should be displayed. ...@@ -3468,7 +3468,7 @@ Represents how the blob content should be displayed.
| ----- | ---- | ----------- | | ----- | ---- | ----------- |
| `collapsed` | Boolean! | Shows whether the blob should be displayed collapsed | | `collapsed` | Boolean! | Shows whether the blob should be displayed collapsed |
| `fileType` | String! | Content file type | | `fileType` | String! | Content file type |
| `loadAsync` | Boolean! | Shows whether the blob content is loaded async | | `loadAsync` | Boolean! | Shows whether the blob content is loaded asynchronously |
| `loadingPartialName` | String! | Loading partial name | | `loadingPartialName` | String! | Loading partial name |
| `renderError` | String | Error rendering the blob content | | `renderError` | String | Error rendering the blob content |
| `tooLarge` | Boolean! | Shows whether the blob too large to be displayed | | `tooLarge` | Boolean! | Shows whether the blob too large to be displayed |
...@@ -3518,7 +3518,7 @@ Represents the Geo sync and verification state of a snippet repository. ...@@ -3518,7 +3518,7 @@ Represents the Geo sync and verification state of a snippet repository.
| `id` | ID! | ID of the entry | | `id` | ID! | ID of the entry |
| `name` | String! | Name of the entry | | `name` | String! | Name of the entry |
| `path` | String! | Path of the entry | | `path` | String! | Path of the entry |
| `sha` | String! | Last commit sha for the entry | | `sha` | String! | Last commit SHA for the entry |
| `treeUrl` | String | Tree URL for the sub-module | | `treeUrl` | String | Tree URL for the sub-module |
| `type` | EntryType! | Type of tree entry | | `type` | EntryType! | Type of tree entry |
| `webUrl` | String | Web URL for the sub-module | | `webUrl` | String | Web URL for the sub-module |
...@@ -3745,7 +3745,7 @@ Represents a directory. ...@@ -3745,7 +3745,7 @@ Represents a directory.
| `id` | ID! | ID of the entry | | `id` | ID! | ID of the entry |
| `name` | String! | Name of the entry | | `name` | String! | Name of the entry |
| `path` | String! | Path of the entry | | `path` | String! | Path of the entry |
| `sha` | String! | Last commit sha for the entry | | `sha` | String! | Last commit SHA for the entry |
| `type` | EntryType! | Type of tree entry | | `type` | EntryType! | Type of tree entry |
| `webPath` | String | Web path for the tree entry (directory) | | `webPath` | String | Web path for the tree entry (directory) |
| `webUrl` | String | Web URL for the tree entry (directory) | | `webUrl` | String | Web URL for the tree entry (directory) |
......
...@@ -41,7 +41,7 @@ module Types ...@@ -41,7 +41,7 @@ module Types
field :shifts, field :shifts,
::Types::IncidentManagement::OncallShiftType.connection_type, ::Types::IncidentManagement::OncallShiftType.connection_type,
null: true, null: true,
description: 'Blocks of time for which a participant is on-call within a given timeframe. Timeframe cannot exceed one month.', description: 'Blocks of time for which a participant is on-call within a given time frame. Time frame cannot exceed one month.',
resolver: ::Resolvers::IncidentManagement::OncallShiftsResolver resolver: ::Resolvers::IncidentManagement::OncallShiftsResolver
end end
end end
......
...@@ -8,7 +8,7 @@ module Types ...@@ -8,7 +8,7 @@ module Types
::Enums::Vulnerability.report_types.keys.each do |report_type| ::Enums::Vulnerability.report_types.keys.each do |report_type|
field report_type, ::Types::SecurityReportSummarySectionType, null: true, field report_type, ::Types::SecurityReportSummarySectionType, null: true,
description: "Aggregated counts for the #{report_type} scan" description: "Aggregated counts for the `#{report_type}` scan"
end end
end end
end end
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment