@proficient/api
Advanced tools
Comparing version 0.1.0 to 0.2.0
import type { Agent } from './resources/Agent'; | ||
import type { Interaction } from './resources/Interaction'; | ||
import type { Message } from './resources/Message'; | ||
export declare namespace ClientApi { | ||
@@ -19,2 +21,33 @@ type Operations = { | ||
}; | ||
GetAgentsAgentInteractions: { | ||
pathParams: { | ||
agent_id: string; | ||
}; | ||
requestBody: undefined; | ||
responseBody: { | ||
data: Interaction[]; | ||
has_more: boolean; | ||
}; | ||
}; | ||
PostAgentsAgentInteractionsMessage: { | ||
pathParams: { | ||
agent_id: string; | ||
}; | ||
requestBody: undefined; | ||
responseBody: Message; | ||
}; | ||
GetInteractionsInteraction: { | ||
pathParams: { | ||
interaction_id: string; | ||
}; | ||
requestBody: undefined; | ||
responseBody: Interaction; | ||
}; | ||
DeleteInteractionsInteraction: { | ||
pathParams: { | ||
interaction_id: string; | ||
}; | ||
requestBody: undefined; | ||
responseBody: Interaction; | ||
}; | ||
}; | ||
@@ -21,0 +54,0 @@ type OperationId = keyof Operations; |
@@ -6,3 +6,5 @@ "use strict"; | ||
agent: 'agent', | ||
agent_config: 'agent configuration' | ||
agent_config: 'agent configuration', | ||
interaction: 'interaction', | ||
message: 'message' | ||
}; | ||
@@ -9,0 +11,0 @@ function nameOf(resourceType) { |
export * from './resources/Agent'; | ||
export * from './resources/AgentConfig'; | ||
export * from './resources/Interaction'; | ||
export * from './resources/Message'; | ||
export * from './helpers'; | ||
@@ -4,0 +6,0 @@ export * from './types'; |
@@ -19,3 +19,5 @@ "use strict"; | ||
__exportStar(require("./resources/AgentConfig"), exports); | ||
__exportStar(require("./resources/Interaction"), exports); | ||
__exportStar(require("./resources/Message"), exports); | ||
__exportStar(require("./helpers"), exports); | ||
__exportStar(require("./types"), exports); |
import type { Agent } from './resources/Agent'; | ||
import type { AgentConfig } from './resources/AgentConfig'; | ||
export type ResourceType = (Agent | AgentConfig)['object']; | ||
import type { Interaction } from './resources/Interaction'; | ||
import type { Message } from './resources/Message'; | ||
export type ResourceType = (Agent | AgentConfig | Interaction | Message)['object']; | ||
//# sourceMappingURL=types.d.ts.map |
{ | ||
"name": "@proficient/api", | ||
"version": "0.1.0", | ||
"version": "0.2.0", | ||
"main": "./dist/index.js", | ||
@@ -5,0 +5,0 @@ "source": "./src/index.ts", |
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
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
14629
28
250