From abdb550f6937ce69ec38954f24ef221d07637438 Mon Sep 17 00:00:00 2001 From: GitLab Bot Date: Tue, 23 May 2023 15:08:01 +0000 Subject: Add latest changes from gitlab-org/gitlab@master --- doc/api/graphql/reference/index.md | 19 +++++++++++++++++++ doc/api/integrations.md | 37 +++++++++++++++++++++++++++++++++++++ 2 files changed, 56 insertions(+) (limited to 'doc/api') diff --git a/doc/api/graphql/reference/index.md b/doc/api/graphql/reference/index.md index 6384d896292..2b633e37fc3 100644 --- a/doc/api/graphql/reference/index.md +++ b/doc/api/graphql/reference/index.md @@ -74,6 +74,7 @@ four standard [pagination arguments](#connection-pagination-arguments): | Name | Type | Description | | ---- | ---- | ----------- | | `projectPath` | [`ID`](#id) | Project with the namespace catalog. | +| `sort` | [`CiCatalogResourceSort`](#cicatalogresourcesort) | Sort Catalog Resources by given criteria. | ### `Query.ciConfig` @@ -23995,6 +23996,23 @@ Types of blob viewers. | `rich` | Rich blob viewers type. | | `simple` | Simple blob viewers type. | +### `CiCatalogResourceSort` + +Values for sorting catalog resources. + +| Value | Description | +| ----- | ----------- | +| `CREATED_ASC` | Created at ascending order. | +| `CREATED_DESC` | Created at descending order. | +| `NAME_ASC` | Name by ascending order. | +| `NAME_DESC` | Name by descending order. | +| `UPDATED_ASC` | Updated at ascending order. | +| `UPDATED_DESC` | Updated at descending order. | +| `created_asc` **{warning-solid}** | **Deprecated** in 13.5. This was renamed. Use: `CREATED_ASC`. | +| `created_desc` **{warning-solid}** | **Deprecated** in 13.5. This was renamed. Use: `CREATED_DESC`. | +| `updated_asc` **{warning-solid}** | **Deprecated** in 13.5. This was renamed. Use: `UPDATED_ASC`. | +| `updated_desc` **{warning-solid}** | **Deprecated** in 13.5. This was renamed. Use: `UPDATED_DESC`. | + ### `CiConfigIncludeType` Include type. @@ -25652,6 +25670,7 @@ State of a Sentry error. | `BUGZILLA_SERVICE` | BugzillaService type. | | `BUILDKITE_SERVICE` | BuildkiteService type. | | `CAMPFIRE_SERVICE` | CampfireService type. | +| `CLICKUP_SERVICE` | ClickupService type. | | `CONFLUENCE_SERVICE` | ConfluenceService type. | | `CUSTOM_ISSUE_TRACKER_SERVICE` | CustomIssueTrackerService type. | | `DATADOG_SERVICE` | DatadogService type. | diff --git a/doc/api/integrations.md b/doc/api/integrations.md index 5b6c4d17915..0a05759c8c2 100644 --- a/doc/api/integrations.md +++ b/doc/api/integrations.md @@ -334,6 +334,43 @@ Get Campfire integration settings for a project. GET /projects/:id/integrations/campfire ``` +## ClickUp + +> [Introduced](https://gitlab.com/gitlab-org/gitlab/-/merge_requests/120732) in GitLab 16.1. + +ClickUp issue tracker. + +### Create or edit ClickUp integration + +Set up ClickUp integration for a project. + +```plaintext +PUT /projects/:id/integrations/clickup +``` + +Parameters: + +| Parameter | Type | Required | Description | +| --------- | ---- | -------- | ----------- | +| `issues_url` | string | true | Issue URL | +| `project_url` | string | true | Project URL | + +### Disable ClickUp integration + +Disable the ClickUp integration for a project. Integration settings are reset. + +```plaintext +DELETE /projects/:id/integrations/clickup +``` + +### Get ClickUp integration settings + +Get ClickUp integration settings for a project. + +```plaintext +GET /projects/:id/integrations/clickup +``` + ## Datadog Datadog system monitoring. -- cgit v1.2.3