Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@proficient/api

Package Overview
Dependencies
Maintainers
1
Versions
27
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@proficient/api - npm Package Compare versions

Comparing version 0.4.0 to 0.5.0

47

dist/client.d.ts
import type { Agent } from './resources/Agent';
import type { Interaction } from './resources/Interaction';
import type { Message, MessageCreateParams } from './resources/Message';
import type { Interaction, InteractionCreateParams } from './resources/Interaction';
import type { Message, MessageCreateParams, MessageResendParams, MessageSendResponse } from './resources/Message';
export declare namespace ClientApi {

@@ -12,3 +12,2 @@ type Operations = {

data: Agent[];
has_more: boolean;
};

@@ -24,7 +23,9 @@ };

};
GetAgentsAgentInteractions: {
pathParams: {
agent_id: string;
GetInteractions: {
pathParams: {};
queryParams: {
agent_id?: string;
limit?: number;
starting_after?: string;
};
queryParams: {};
requestBody: undefined;

@@ -36,9 +37,7 @@ responseBody: {

};
PostAgentsAgentInteractionsMessage: {
pathParams: {
agent_id: string;
};
PostInteractions: {
pathParams: {};
queryParams: {};
requestBody: MessageCreateParams;
responseBody: Message;
requestBody: InteractionCreateParams;
responseBody: Interaction;
};

@@ -61,7 +60,6 @@ GetInteractionsInteraction: {

};
GetInteractionsInteractionMessages: {
pathParams: {
GetMessages: {
pathParams: {};
queryParams: {
interaction_id: string;
};
queryParams: {
limit?: number;

@@ -76,10 +74,7 @@ starting_after?: string;

};
GetInteractions: {
PostMessages: {
pathParams: {};
queryParams: {};
requestBody: undefined;
responseBody: {
data: Interaction[];
has_more: boolean;
};
requestBody: MessageCreateParams;
responseBody: MessageSendResponse;
};

@@ -94,3 +89,3 @@ GetMessagesMessage: {

};
PostMessagesMessageReply: {
PostMessagesMessage: {
pathParams: {

@@ -100,4 +95,4 @@ message_id: string;

queryParams: {};
requestBody: MessageCreateParams;
responseBody: Message;
requestBody: MessageResendParams;
responseBody: MessageSendResponse;
};

@@ -104,0 +99,0 @@ };

@@ -11,2 +11,6 @@ export interface Interaction {

}
export interface InteractionCreateParams {
[key: string]: any;
agent_id: string;
}
//# sourceMappingURL=Interaction.d.ts.map

@@ -12,4 +12,15 @@ export interface Message {

[key: string]: any;
interaction_id: string;
content: string;
reply_to: string;
}
export interface MessageResendParams {
[key: string]: any;
content: string;
}
export interface MessageSendResponse {
[key: string]: any;
sent: Message;
received: Message;
}
//# sourceMappingURL=Message.d.ts.map
{
"name": "@proficient/api",
"version": "0.4.0",
"version": "0.5.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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc