box-node-sdk
Version:
Official SDK for Box Platform APIs
322 lines • 13.7 kB
JavaScript
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.AiStudioManager = exports.DeleteAiAgentByIdHeaders = exports.GetAiAgentByIdHeaders = exports.UpdateAiAgentByIdHeaders = exports.CreateAiAgentHeaders = exports.GetAiAgentsHeaders = exports.DeleteAiAgentByIdOptionals = exports.GetAiAgentByIdOptionals = exports.UpdateAiAgentByIdOptionals = exports.CreateAiAgentOptionals = void 0;
const aiMultipleAgentResponse_1 = require("../schemas/aiMultipleAgentResponse");
const aiSingleAgentResponseFull_1 = require("../schemas/aiSingleAgentResponseFull");
const createAiAgent_1 = require("../schemas/createAiAgent");
const createAiAgent_2 = require("../schemas/createAiAgent");
const network_1 = require("../networking/network");
const fetchOptions_1 = require("../networking/fetchOptions");
const utils_1 = require("../internal/utils");
const utils_2 = require("../internal/utils");
class CreateAiAgentOptionals {
headers = new CreateAiAgentHeaders({});
cancellationToken = void 0;
constructor(fields) {
if (fields.headers !== undefined) {
this.headers = fields.headers;
}
if (fields.cancellationToken !== undefined) {
this.cancellationToken = fields.cancellationToken;
}
}
}
exports.CreateAiAgentOptionals = CreateAiAgentOptionals;
class UpdateAiAgentByIdOptionals {
headers = new UpdateAiAgentByIdHeaders({});
cancellationToken = void 0;
constructor(fields) {
if (fields.headers !== undefined) {
this.headers = fields.headers;
}
if (fields.cancellationToken !== undefined) {
this.cancellationToken = fields.cancellationToken;
}
}
}
exports.UpdateAiAgentByIdOptionals = UpdateAiAgentByIdOptionals;
class GetAiAgentByIdOptionals {
queryParams = {};
headers = new GetAiAgentByIdHeaders({});
cancellationToken = void 0;
constructor(fields) {
if (fields.queryParams !== undefined) {
this.queryParams = fields.queryParams;
}
if (fields.headers !== undefined) {
this.headers = fields.headers;
}
if (fields.cancellationToken !== undefined) {
this.cancellationToken = fields.cancellationToken;
}
}
}
exports.GetAiAgentByIdOptionals = GetAiAgentByIdOptionals;
class DeleteAiAgentByIdOptionals {
headers = new DeleteAiAgentByIdHeaders({});
cancellationToken = void 0;
constructor(fields) {
if (fields.headers !== undefined) {
this.headers = fields.headers;
}
if (fields.cancellationToken !== undefined) {
this.cancellationToken = fields.cancellationToken;
}
}
}
exports.DeleteAiAgentByIdOptionals = DeleteAiAgentByIdOptionals;
class GetAiAgentsHeaders {
/**
* Extra headers that will be included in the HTTP request. */
extraHeaders = {};
constructor(fields) {
if (fields.extraHeaders !== undefined) {
this.extraHeaders = fields.extraHeaders;
}
}
}
exports.GetAiAgentsHeaders = GetAiAgentsHeaders;
class CreateAiAgentHeaders {
/**
* Extra headers that will be included in the HTTP request. */
extraHeaders = {};
constructor(fields) {
if (fields.extraHeaders !== undefined) {
this.extraHeaders = fields.extraHeaders;
}
}
}
exports.CreateAiAgentHeaders = CreateAiAgentHeaders;
class UpdateAiAgentByIdHeaders {
/**
* Extra headers that will be included in the HTTP request. */
extraHeaders = {};
constructor(fields) {
if (fields.extraHeaders !== undefined) {
this.extraHeaders = fields.extraHeaders;
}
}
}
exports.UpdateAiAgentByIdHeaders = UpdateAiAgentByIdHeaders;
class GetAiAgentByIdHeaders {
/**
* Extra headers that will be included in the HTTP request. */
extraHeaders = {};
constructor(fields) {
if (fields.extraHeaders !== undefined) {
this.extraHeaders = fields.extraHeaders;
}
}
}
exports.GetAiAgentByIdHeaders = GetAiAgentByIdHeaders;
class DeleteAiAgentByIdHeaders {
/**
* Extra headers that will be included in the HTTP request. */
extraHeaders = {};
constructor(fields) {
if (fields.extraHeaders !== undefined) {
this.extraHeaders = fields.extraHeaders;
}
}
}
exports.DeleteAiAgentByIdHeaders = DeleteAiAgentByIdHeaders;
class AiStudioManager {
auth;
networkSession = new network_1.NetworkSession({});
constructor(fields) {
if (fields.auth !== undefined) {
this.auth = fields.auth;
}
if (fields.networkSession !== undefined) {
this.networkSession = fields.networkSession;
}
}
/**
* Lists AI agents based on the provided parameters.
* @param {GetAiAgentsQueryParams} queryParams Query parameters of getAiAgents method
* @param {GetAiAgentsHeadersInput} headersInput Headers of getAiAgents method
* @param {CancellationToken} cancellationToken Token used for request cancellation.
* @returns {Promise<AiMultipleAgentResponse>}
*/
async getAiAgents(queryParams = {}, headersInput = new GetAiAgentsHeaders({}), cancellationToken) {
const headers = new GetAiAgentsHeaders({
extraHeaders: headersInput.extraHeaders,
});
const queryParamsMap = (0, utils_1.prepareParams)({
['mode']: queryParams.mode
? queryParams.mode.map(utils_2.toString).join(',')
: undefined,
['fields']: queryParams.fields
? queryParams.fields.map(utils_2.toString).join(',')
: undefined,
['agent_state']: queryParams.agentState
? queryParams.agentState.map(utils_2.toString).join(',')
: undefined,
['include_box_default']: (0, utils_2.toString)(queryParams.includeBoxDefault),
['marker']: (0, utils_2.toString)(queryParams.marker),
['limit']: (0, utils_2.toString)(queryParams.limit),
});
const headersMap = (0, utils_1.prepareParams)({ ...{}, ...headers.extraHeaders });
const response = await this.networkSession.networkClient.fetch(new fetchOptions_1.FetchOptions({
url: ''.concat(this.networkSession.baseUrls.baseUrl, '/2.0/ai_agents'),
method: 'GET',
params: queryParamsMap,
headers: headersMap,
responseFormat: 'json',
auth: this.auth,
networkSession: this.networkSession,
cancellationToken: cancellationToken,
}));
return {
...(0, aiMultipleAgentResponse_1.deserializeAiMultipleAgentResponse)(response.data),
rawData: response.data,
};
}
/**
* Creates an AI agent. At least one of the following capabilities must be provided: `ask`, `text_gen`, `extract`.
* @param {CreateAiAgentInput} requestBodyInput Request body of createAiAgent method
* @param {CreateAiAgentOptionalsInput} optionalsInput
* @returns {Promise<AiSingleAgentResponseFull>}
*/
async createAiAgent(requestBodyInput, optionalsInput = {}) {
const requestBody = new createAiAgent_2.CreateAiAgent({
type: requestBodyInput.type,
name: requestBodyInput.name,
accessState: requestBodyInput.accessState,
iconReference: requestBodyInput.iconReference,
allowedEntities: requestBodyInput.allowedEntities,
ask: requestBodyInput.ask,
textGen: requestBodyInput.textGen,
extract: requestBodyInput.extract,
});
const optionals = new CreateAiAgentOptionals({
headers: optionalsInput.headers,
cancellationToken: optionalsInput.cancellationToken,
});
const headers = optionals.headers;
const cancellationToken = optionals.cancellationToken;
const headersMap = (0, utils_1.prepareParams)({ ...{}, ...headers.extraHeaders });
const response = await this.networkSession.networkClient.fetch(new fetchOptions_1.FetchOptions({
url: ''.concat(this.networkSession.baseUrls.baseUrl, '/2.0/ai_agents'),
method: 'POST',
headers: headersMap,
data: (0, createAiAgent_1.serializeCreateAiAgent)(requestBody),
contentType: 'application/json',
responseFormat: 'json',
auth: this.auth,
networkSession: this.networkSession,
cancellationToken: cancellationToken,
}));
return {
...(0, aiSingleAgentResponseFull_1.deserializeAiSingleAgentResponseFull)(response.data),
rawData: response.data,
};
}
/**
* Updates an AI agent.
* @param {string} agentId The ID of the agent to update.
Example: "1234"
* @param {CreateAiAgentInput} requestBodyInput Request body of updateAiAgentById method
* @param {UpdateAiAgentByIdOptionalsInput} optionalsInput
* @returns {Promise<AiSingleAgentResponseFull>}
*/
async updateAiAgentById(agentId, requestBodyInput, optionalsInput = {}) {
const requestBody = new createAiAgent_2.CreateAiAgent({
type: requestBodyInput.type,
name: requestBodyInput.name,
accessState: requestBodyInput.accessState,
iconReference: requestBodyInput.iconReference,
allowedEntities: requestBodyInput.allowedEntities,
ask: requestBodyInput.ask,
textGen: requestBodyInput.textGen,
extract: requestBodyInput.extract,
});
const optionals = new UpdateAiAgentByIdOptionals({
headers: optionalsInput.headers,
cancellationToken: optionalsInput.cancellationToken,
});
const headers = optionals.headers;
const cancellationToken = optionals.cancellationToken;
const headersMap = (0, utils_1.prepareParams)({ ...{}, ...headers.extraHeaders });
const response = await this.networkSession.networkClient.fetch(new fetchOptions_1.FetchOptions({
url: ''.concat(this.networkSession.baseUrls.baseUrl, '/2.0/ai_agents/', (0, utils_2.toString)(agentId)),
method: 'PUT',
headers: headersMap,
data: (0, createAiAgent_1.serializeCreateAiAgent)(requestBody),
contentType: 'application/json',
responseFormat: 'json',
auth: this.auth,
networkSession: this.networkSession,
cancellationToken: cancellationToken,
}));
return {
...(0, aiSingleAgentResponseFull_1.deserializeAiSingleAgentResponseFull)(response.data),
rawData: response.data,
};
}
/**
* Gets an AI Agent using the `agent_id` parameter.
* @param {string} agentId The agent id to get.
Example: "1234"
* @param {GetAiAgentByIdOptionalsInput} optionalsInput
* @returns {Promise<AiSingleAgentResponseFull>}
*/
async getAiAgentById(agentId, optionalsInput = {}) {
const optionals = new GetAiAgentByIdOptionals({
queryParams: optionalsInput.queryParams,
headers: optionalsInput.headers,
cancellationToken: optionalsInput.cancellationToken,
});
const queryParams = optionals.queryParams;
const headers = optionals.headers;
const cancellationToken = optionals.cancellationToken;
const queryParamsMap = (0, utils_1.prepareParams)({
['fields']: queryParams.fields
? queryParams.fields.map(utils_2.toString).join(',')
: undefined,
});
const headersMap = (0, utils_1.prepareParams)({ ...{}, ...headers.extraHeaders });
const response = await this.networkSession.networkClient.fetch(new fetchOptions_1.FetchOptions({
url: ''.concat(this.networkSession.baseUrls.baseUrl, '/2.0/ai_agents/', (0, utils_2.toString)(agentId)),
method: 'GET',
params: queryParamsMap,
headers: headersMap,
responseFormat: 'json',
auth: this.auth,
networkSession: this.networkSession,
cancellationToken: cancellationToken,
}));
return {
...(0, aiSingleAgentResponseFull_1.deserializeAiSingleAgentResponseFull)(response.data),
rawData: response.data,
};
}
/**
* Deletes an AI agent using the provided parameters.
* @param {string} agentId The ID of the agent to delete.
Example: "1234"
* @param {DeleteAiAgentByIdOptionalsInput} optionalsInput
* @returns {Promise<undefined>}
*/
async deleteAiAgentById(agentId, optionalsInput = {}) {
const optionals = new DeleteAiAgentByIdOptionals({
headers: optionalsInput.headers,
cancellationToken: optionalsInput.cancellationToken,
});
const headers = optionals.headers;
const cancellationToken = optionals.cancellationToken;
const headersMap = (0, utils_1.prepareParams)({ ...{}, ...headers.extraHeaders });
const response = await this.networkSession.networkClient.fetch(new fetchOptions_1.FetchOptions({
url: ''.concat(this.networkSession.baseUrls.baseUrl, '/2.0/ai_agents/', (0, utils_2.toString)(agentId)),
method: 'DELETE',
headers: headersMap,
responseFormat: 'no_content',
auth: this.auth,
networkSession: this.networkSession,
cancellationToken: cancellationToken,
}));
return void 0;
}
}
exports.AiStudioManager = AiStudioManager;
//# sourceMappingURL=aiStudio.js.map