UNPKG

openai

Version:

The official TypeScript library for the OpenAI API

68 lines 2.38 kB
"use strict"; // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. Object.defineProperty(exports, "__esModule", { value: true }); exports.Roles = void 0; const resource_1 = require("../../../../../core/resource.js"); const pagination_1 = require("../../../../../core/pagination.js"); const path_1 = require("../../../../../internal/utils/path.js"); class Roles extends resource_1.APIResource { /** * Assigns a project role to a group within a project. * * @example * ```ts * const role = * await client.admin.organization.projects.groups.roles.create( * 'group_id', * { project_id: 'project_id', role_id: 'role_id' }, * ); * ``` */ create(groupID, params, options) { const { project_id, ...body } = params; return this._client.post((0, path_1.path) `/projects/${project_id}/groups/${groupID}/roles`, { body, ...options, __security: { adminAPIKeyAuth: true }, }); } /** * Lists the project roles assigned to a group within a project. * * @example * ```ts * // Automatically fetches more pages as needed. * for await (const roleListResponse of client.admin.organization.projects.groups.roles.list( * 'group_id', * { project_id: 'project_id' }, * )) { * // ... * } * ``` */ list(groupID, params, options) { const { project_id, ...query } = params; return this._client.getAPIList((0, path_1.path) `/projects/${project_id}/groups/${groupID}/roles`, (pagination_1.NextCursorPage), { query, ...options, __security: { adminAPIKeyAuth: true } }); } /** * Unassigns a project role from a group within a project. * * @example * ```ts * const role = * await client.admin.organization.projects.groups.roles.delete( * 'role_id', * { project_id: 'project_id', group_id: 'group_id' }, * ); * ``` */ delete(roleID, params, options) { const { project_id, group_id } = params; return this._client.delete((0, path_1.path) `/projects/${project_id}/groups/${group_id}/roles/${roleID}`, { ...options, __security: { adminAPIKeyAuth: true }, }); } } exports.Roles = Roles; //# sourceMappingURL=roles.js.map