packages/core/src/resources/FeatureFlagUserLists.ts
import { BaseResource } from '@gitbeaker/requester-utils';
import { RequestHelper, endpoint } from '../infrastructure';
import type {
GitlabAPIResponse,
PaginationRequestOptions,
PaginationTypes,
ShowExpanded,
Sudo,
} from '../infrastructure';
export interface FeatureFlagUserListSchema extends Record<string, unknown> {
name: string;
user_xids: string;
id: number;
iid: number;
project_id: string | number;
created_at: string;
updated_at: string;
}
export class FeatureFlagUserLists<C extends boolean = false> extends BaseResource<C> {
all<E extends boolean = false, P extends PaginationTypes = 'offset'>(
projectId: string | number,
options?: { search?: string } & PaginationRequestOptions<P> & Sudo & ShowExpanded<E>,
): Promise<GitlabAPIResponse<FeatureFlagUserListSchema[], C, E, P>> {
return RequestHelper.get<FeatureFlagUserListSchema[]>()(
this,
endpoint`projects/${projectId}/feature_flags_user_lists`,
options,
);
}
create<E extends boolean = false>(
projectId: string | number,
name: string,
userXids: string,
options?: Sudo & ShowExpanded<E>,
): Promise<GitlabAPIResponse<FeatureFlagUserListSchema, C, E, void>> {
return RequestHelper.post<FeatureFlagUserListSchema>()(
this,
endpoint`projects/${projectId}/feature_flags_user_lists`,
{
name,
userXids,
...options,
},
);
}
edit<E extends boolean = false>(
projectId: string | number,
featureFlagUserListIId: string | number,
options?: { name?: string; userXIds?: string } & Sudo & ShowExpanded<E>,
): Promise<GitlabAPIResponse<FeatureFlagUserListSchema, C, E, void>> {
return RequestHelper.put<FeatureFlagUserListSchema>()(
this,
endpoint`projects/${projectId}/feature_flags_user_lists/${featureFlagUserListIId}`,
options,
);
}
remove<E extends boolean = false>(
projectId: string | number,
featureFlagUserListIId: string | number,
options?: Sudo & ShowExpanded<E>,
): Promise<GitlabAPIResponse<void, C, E, void>> {
return RequestHelper.del()(
this,
endpoint`projects/${projectId}/feature_flags_user_lists/${featureFlagUserListIId}`,
options,
);
}
show<E extends boolean = false>(
projectId: string | number,
featureFlagUserListIId: string | number,
options?: Sudo & ShowExpanded<E>,
): Promise<GitlabAPIResponse<FeatureFlagUserListSchema, C, E, void>> {
return RequestHelper.get<FeatureFlagUserListSchema>()(
this,
endpoint`projects/${projectId}/feature_flags_user_lists/${featureFlagUserListIId}`,
options,
);
}
}