@proficient/api
Advanced tools
Comparing version 0.2.0 to 0.2.1
import type { Agent } from './resources/Agent'; | ||
import type { Interaction } from './resources/Interaction'; | ||
import type { Message } from './resources/Message'; | ||
import type { Message, MessageCreateParams } from './resources/Message'; | ||
export declare namespace ClientApi { | ||
@@ -35,3 +35,3 @@ type Operations = { | ||
}; | ||
requestBody: undefined; | ||
requestBody: MessageCreateParams; | ||
responseBody: Message; | ||
@@ -38,0 +38,0 @@ }; |
@@ -10,2 +10,6 @@ export interface Message { | ||
} | ||
export interface MessageCreateParams { | ||
[key: string]: any; | ||
content: string; | ||
} | ||
//# sourceMappingURL=Message.d.ts.map |
{ | ||
"name": "@proficient/api", | ||
"version": "0.2.0", | ||
"version": "0.2.1", | ||
"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
14855
254