@rivet-gg/chat 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,7 @@
1
+ export * from "./GetDirectThreadCommand";
2
+ export * from "./GetThreadHistoryCommand";
3
+ export * from "./GetThreadTopicCommand";
4
+ export * from "./SendChatMessageCommand";
5
+ export * from "./SetThreadReadCommand";
6
+ export * from "./SetTypingStatusCommand";
7
+ export * from "./WatchThreadCommand";
@@ -0,0 +1,6 @@
1
+ export * from "./ChatServiceClient";
2
+ export * from "./ChatService";
3
+ export * from "./commands";
4
+ export * from "./models";
5
+ export * as common from "@rivet-gg/common";
6
+ export { ChatServiceServiceException } from "./models/ChatServiceServiceException";
@@ -0,0 +1,10 @@
1
+ import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
2
+ /**
3
+ * Base exception class for all service exceptions from ChatService service.
4
+ */
5
+ export declare class ChatServiceServiceException extends __ServiceException {
6
+ /**
7
+ * @internal
8
+ */
9
+ constructor(options: __ServiceExceptionOptions);
10
+ }
@@ -0,0 +1 @@
1
+ export * from "./models_0";