@salesforce/agents
Advanced tools
Comparing version 0.2.1 to 0.2.2
import { Connection } from '@salesforce/core'; | ||
import { Duration } from '@salesforce/kit'; | ||
type Format = 'human' | 'json'; | ||
type TestStatus = 'NEW' | 'IN_PROGRESS' | 'COMPLETED' | 'ERROR'; | ||
type AgentTestStartResponse = { | ||
export type TestStatus = 'NEW' | 'IN_PROGRESS' | 'COMPLETED' | 'ERROR'; | ||
export type AgentTestStartResponse = { | ||
aiEvaluationId: string; | ||
status: TestStatus; | ||
}; | ||
type AgentTestStatusResponse = { | ||
export type AgentTestStatusResponse = { | ||
status: TestStatus; | ||
@@ -15,3 +15,3 @@ startTime: string; | ||
}; | ||
type TestCaseResult = { | ||
export type TestCaseResult = { | ||
status: TestStatus; | ||
@@ -44,3 +44,3 @@ number: string; | ||
}; | ||
type AgentTestDetailsResponse = { | ||
export type AgentTestDetailsResponse = { | ||
status: TestStatus; | ||
@@ -47,0 +47,0 @@ startTime: string; |
@@ -1,3 +0,3 @@ | ||
export { AgentCreateConfig, AgentCreateResponse, AgentJobSpec, AgentJobSpecCreateConfig, AgentJobSpecCreateResponse, SfAgent, } from './types'; | ||
export { type AgentCreateConfig, type AgentCreateResponse, type AgentJobSpec, type AgentJobSpecCreateConfig, type AgentJobSpecCreateResponse, SfAgent, } from './types'; | ||
export { Agent } from './agent'; | ||
export { AgentTester } from './agentTester'; | ||
export { AgentTester, type AgentTestDetailsResponse, type AgentTestStartResponse, type AgentTestStatusResponse, type TestCaseResult, type TestStatus, } from './agentTester'; |
{ | ||
"name": "@salesforce/agents", | ||
"description": "Client side APIs for working with Salesforce agents", | ||
"version": "0.2.1", | ||
"version": "0.2.2", | ||
"license": "BSD-3-Clause", | ||
@@ -6,0 +6,0 @@ "author": "Salesforce", |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
36984