@botpress/client
Advanced tools
Comparing version 0.23.1 to 0.23.2
@@ -64,2 +64,6 @@ import { AxiosInstance } from 'axios'; | ||
import * as listBotIssueEvents from './operations/listBotIssueEvents'; | ||
import * as listBotVersions from './operations/listBotVersions'; | ||
import * as getBotVersion from './operations/getBotVersion'; | ||
import * as createBotVersion from './operations/createBotVersion'; | ||
import * as deployBotVersion from './operations/deployBotVersion'; | ||
import * as setWorkspacePaymentMethod from './operations/setWorkspacePaymentMethod'; | ||
@@ -192,2 +196,6 @@ import * as listWorkspaceInvoices from './operations/listWorkspaceInvoices'; | ||
export * as listBotIssueEvents from './operations/listBotIssueEvents'; | ||
export * as listBotVersions from './operations/listBotVersions'; | ||
export * as getBotVersion from './operations/getBotVersion'; | ||
export * as createBotVersion from './operations/createBotVersion'; | ||
export * as deployBotVersion from './operations/deployBotVersion'; | ||
export * as setWorkspacePaymentMethod from './operations/setWorkspacePaymentMethod'; | ||
@@ -326,2 +334,6 @@ export * as listWorkspaceInvoices from './operations/listWorkspaceInvoices'; | ||
readonly listBotIssueEvents: (input: listBotIssueEvents.ListBotIssueEventsInput) => Promise<listBotIssueEvents.ListBotIssueEventsResponse>; | ||
readonly listBotVersions: (input: listBotVersions.ListBotVersionsInput) => Promise<listBotVersions.ListBotVersionsResponse>; | ||
readonly getBotVersion: (input: getBotVersion.GetBotVersionInput) => Promise<getBotVersion.GetBotVersionResponse>; | ||
readonly createBotVersion: (input: createBotVersion.CreateBotVersionInput) => Promise<createBotVersion.CreateBotVersionResponse>; | ||
readonly deployBotVersion: (input: deployBotVersion.DeployBotVersionInput) => Promise<deployBotVersion.DeployBotVersionResponse>; | ||
readonly setWorkspacePaymentMethod: (input: setWorkspacePaymentMethod.SetWorkspacePaymentMethodInput) => Promise<setWorkspacePaymentMethod.SetWorkspacePaymentMethodResponse>; | ||
@@ -328,0 +340,0 @@ readonly listWorkspaceInvoices: (input: listWorkspaceInvoices.ListWorkspaceInvoicesInput) => Promise<listWorkspaceInvoices.ListWorkspaceInvoicesResponse>; |
@@ -766,2 +766,7 @@ export interface Bot { | ||
} | ||
export interface Version { | ||
id: string; | ||
name: string; | ||
description?: string; | ||
} | ||
/** | ||
@@ -768,0 +773,0 @@ * The user object represents someone interacting with the bot within a specific integration. The same person interacting with a bot in slack and messenger will be represented with two different users. |
/// <reference types="node" /> | ||
import { Client as AutoGeneratedClient } from './gen'; | ||
import { UpsertFileInput, UpsertFileResponse } from './gen/operations/upsertFile'; | ||
export type { Message, Conversation, User, State, Event, File, Bot, Integration, Issue, IssueEvent, Account, Workspace, Usage, } from './gen/models'; | ||
export type { Message, Conversation, User, State, Event, File, Bot, Integration, Interface, Issue, IssueEvent, Account, Workspace, Usage, } from './gen/models'; | ||
type UploadFileInput = Omit<UpsertFileInput, 'size'> & { | ||
@@ -6,0 +6,0 @@ content?: Buffer | string; |
{ | ||
"name": "@botpress/client", | ||
"version": "0.23.1", | ||
"version": "0.23.2", | ||
"description": "Botpress Client", | ||
@@ -33,3 +33,3 @@ "main": "./dist/index.cjs", | ||
"devDependencies": { | ||
"@botpress/api": "0.32.3", | ||
"@botpress/api": "0.33.0", | ||
"@types/qs": "^6.9.7", | ||
@@ -36,0 +36,0 @@ "esbuild": "^0.16.12", |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Environment variable access
Supply chain riskPackage accesses environment variables, which may be a sign of credential stuffing or data theft.
Found 11 instances in 1 package
Environment variable access
Supply chain riskPackage accesses environment variables, which may be a sign of credential stuffing or data theft.
Found 11 instances in 1 package
3642167
156
14690