@proficient/api
Advanced tools
Comparing version 0.2.1 to 0.3.0
@@ -52,2 +52,34 @@ import type { Agent } from './resources/Agent'; | ||
}; | ||
GetInteractionsInteractionMessages: { | ||
pathParams: { | ||
interaction_id: string; | ||
}; | ||
requestBody: undefined; | ||
responseBody: { | ||
data: Message[]; | ||
has_more: boolean; | ||
}; | ||
}; | ||
GetInteractions: { | ||
pathParams: {}; | ||
requestBody: undefined; | ||
responseBody: { | ||
data: Interaction[]; | ||
has_more: boolean; | ||
}; | ||
}; | ||
GetMessagesMessage: { | ||
pathParams: { | ||
message_id: string; | ||
}; | ||
requestBody: undefined; | ||
responseBody: Message; | ||
}; | ||
PostMessagesMessageReply: { | ||
pathParams: { | ||
message_id: string; | ||
}; | ||
requestBody: MessageCreateParams; | ||
responseBody: Message; | ||
}; | ||
}; | ||
@@ -54,0 +86,0 @@ type OperationId = keyof Operations; |
{ | ||
"name": "@proficient/api", | ||
"version": "0.2.1", | ||
"version": "0.3.0", | ||
"main": "./dist/index.js", | ||
@@ -5,0 +5,0 @@ "source": "./src/index.ts", |
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
16367
286