@rivet-gg/chat 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +201 -0
- package/dist-types/ChatService.d.ts +56 -0
- package/dist-types/ChatServiceClient.d.ts +133 -0
- package/dist-types/commands/GetDirectThreadCommand.d.ts +35 -0
- package/dist-types/commands/GetThreadHistoryCommand.d.ts +37 -0
- package/dist-types/commands/GetThreadTopicCommand.d.ts +35 -0
- package/dist-types/commands/SendChatMessageCommand.d.ts +35 -0
- package/dist-types/commands/SetThreadReadCommand.d.ts +35 -0
- package/dist-types/commands/SetTypingStatusCommand.d.ts +35 -0
- package/dist-types/commands/WatchThreadCommand.d.ts +36 -0
- package/dist-types/commands/index.d.ts +7 -0
- package/dist-types/index.d.ts +6 -0
- package/dist-types/models/ChatServiceServiceException.d.ts +10 -0
- package/dist-types/models/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +1317 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +23 -0
- package/dist-types/runtimeConfig.browser.d.ts +31 -0
- package/dist-types/runtimeConfig.d.ts +31 -0
- package/dist-types/runtimeConfig.native.d.ts +30 -0
- package/dist-types/runtimeConfig.shared.d.ts +11 -0
- package/package.json +1 -0
@@ -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,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";
|