mirror of
https://github.com/jdalrymple/gitbeaker.git
synced 2026-01-18 15:55:30 +00:00
Add missing topLevelOnly typing to Namespaces.all (#3637)
This commit is contained in:
parent
73f38ddc91
commit
89be21f23e
@ -34,7 +34,11 @@ export interface NamespaceExistsSchema extends Record<string, unknown> {
|
||||
|
||||
export class Namespaces<C extends boolean = false> extends BaseResource<C> {
|
||||
all<E extends boolean = false, P extends PaginationTypes = 'offset'>(
|
||||
options?: { search?: string; ownedOnly?: string } & PaginationRequestOptions<P> &
|
||||
options?: {
|
||||
search?: string;
|
||||
ownedOnly?: string;
|
||||
topLevelOnly?: boolean;
|
||||
} & PaginationRequestOptions<P> &
|
||||
Sudo &
|
||||
ShowExpanded<E>,
|
||||
): Promise<GitlabAPIResponse<NamespaceSchema[], C, E, P>> {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user