Updating groups schema to use email_enabled (#3569)

- Updated min version of Gitlab supported
This commit is contained in:
Justin Dalrymple 2024-04-12 17:01:02 -04:00 committed by GitHub
parent acfbd189e7
commit 3fccc967ed
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 3 additions and 3 deletions

View File

@ -57,7 +57,7 @@
## Features
- **Complete** - All features of Gitlab's exposed APIs are covered up to version [16.0](https://docs.gitlab.com/16.0/ee/api/api_resources.html). See [here](./packages/core/README.md#supported-apis) for the full list.
- **Complete** - All features of Gitlab's exposed APIs are covered up to version [16.5](https://docs.gitlab.com/16.5/ee/api/api_resources.html). See [here](./packages/core/README.md#supported-apis) for the full list.
- **Universal** - Works in all modern browsers, [Node.js](https://nodejs.org/), and [Deno](https://deno.land/) and supports [CLI](https://www.npmjs.com/package/@gitbeaker/cli) usage.
- **Tested** - All libraries have > 80% test coverage.
- **Typed** - All libraries have extensive TypeScript declarations.

View File

@ -47,7 +47,7 @@ export interface GroupSchema extends SimpleGroupSchema {
project_creation_level: string;
auto_devops_enabled?: boolean;
subgroup_creation_level: string;
emails_disabled?: boolean;
emails_enabled?: boolean;
mentions_disabled?: boolean;
lfs_enabled: boolean;
default_branch_protection: number;

View File

@ -66,7 +66,7 @@
## Features
- **Complete** - All features of Gitlab's exposed APIs are covered up to version [16.0](https://docs.gitlab.com/16.0/ee/api/api_resources.html). See [here](./packages/core/README.md#supported-apis) for the full list.
- **Complete** - All features of Gitlab's exposed APIs are covered up to version [16.5](https://docs.gitlab.com/16.5/ee/api/api_resources.html). See [here](./packages/core/README.md#supported-apis) for the full list.
- **Universal** - Works in all modern browsers, [Node.js](https://nodejs.org/), and [Deno](https://deno.land/).
- **Tested** - All libraries have > 80% test coverage.
- **Typed** - All libraries have extensive TypeScript declarations.