@wildix/wda-stream-client 1.1.63 → 1.1.64
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/dist-cjs/protocols/Aws_restJson1.js +2 -1
- package/dist-es/protocols/Aws_restJson1.js +2 -1
- package/dist-types/commands/ConsumeEventCommand.d.ts +2 -1
- package/dist-types/models/models_0.d.ts +2 -1
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/package.json +1 -1
|
@@ -717,7 +717,8 @@ const se_ChatAnnotateConsumeEvent = (input, context) => {
|
|
|
717
717
|
const se_ChatAnnotateConsumeEventData = (input, context) => {
|
|
718
718
|
return (0, smithy_client_1.take)(input, {
|
|
719
719
|
'annotation': _ => se_Annotation(_, context),
|
|
720
|
-
'
|
|
720
|
+
'channelId': [],
|
|
721
|
+
'channelType': [],
|
|
721
722
|
});
|
|
722
723
|
};
|
|
723
724
|
const se_ConferenceAnnotateConsumeEvent = (input, context) => {
|
|
@@ -684,7 +684,8 @@ const se_ChatAnnotateConsumeEvent = (input, context) => {
|
|
|
684
684
|
const se_ChatAnnotateConsumeEventData = (input, context) => {
|
|
685
685
|
return take(input, {
|
|
686
686
|
'annotation': _ => se_Annotation(_, context),
|
|
687
|
-
'
|
|
687
|
+
'channelId': [],
|
|
688
|
+
'channelType': [],
|
|
688
689
|
});
|
|
689
690
|
};
|
|
690
691
|
const se_ConferenceAnnotateConsumeEvent = (input, context) => {
|
|
@@ -864,7 +864,8 @@ declare const ConsumeEventCommand_base: {
|
|
|
864
864
|
* company: "STRING_VALUE", // required
|
|
865
865
|
* time: Number("long"), // required
|
|
866
866
|
* data: { // ChatAnnotateConsumeEventData
|
|
867
|
-
*
|
|
867
|
+
* channelId: "STRING_VALUE", // required
|
|
868
|
+
* channelType: "direct" || "group", // required
|
|
868
869
|
* annotation: {
|
|
869
870
|
* id: "STRING_VALUE", // required
|
|
870
871
|
* time: Number("long"), // required
|
|
@@ -2624,7 +2624,8 @@ export interface ChatAnalyticsTranscriptionRecordEvent {
|
|
|
2624
2624
|
* @public
|
|
2625
2625
|
*/
|
|
2626
2626
|
export interface ChatAnnotateConsumeEventData {
|
|
2627
|
-
|
|
2627
|
+
channelId: string;
|
|
2628
|
+
channelType: ChannelType;
|
|
2628
2629
|
annotation: Annotation;
|
|
2629
2630
|
}
|
|
2630
2631
|
/**
|
|
@@ -9,7 +9,7 @@ export declare const getRuntimeConfig: (config: WdaStreamClientConfig) => {
|
|
|
9
9
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
10
10
|
defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
|
|
11
11
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
12
|
-
requestHandler: import("@smithy/
|
|
12
|
+
requestHandler: import("@smithy/core/protocols").HttpHandler<any> | RequestHandler;
|
|
13
13
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
14
14
|
sha256: import("@smithy/types").HashConstructor;
|
|
15
15
|
streamCollector: import("@smithy/types").StreamCollector;
|
|
@@ -9,7 +9,7 @@ export declare const getRuntimeConfig: (config: WdaStreamClientConfig) => {
|
|
|
9
9
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
10
10
|
defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-node").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
|
|
11
11
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
12
|
-
requestHandler: RequestHandler | import("@smithy/
|
|
12
|
+
requestHandler: RequestHandler | import("@smithy/core/protocols").HttpHandler<any>;
|
|
13
13
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
14
14
|
sha256: import("@smithy/types").HashConstructor;
|
|
15
15
|
streamCollector: import("@smithy/types").StreamCollector;
|
|
@@ -7,7 +7,7 @@ export declare const getRuntimeConfig: (config: WdaStreamClientConfig) => {
|
|
|
7
7
|
sha256: import("@smithy/types").HashConstructor;
|
|
8
8
|
env?: "stage" | "stable" | "prod" | undefined;
|
|
9
9
|
token: import("@wildix/smithy-utils").TokenProvider;
|
|
10
|
-
requestHandler: import("@smithy/types").NodeHttpHandlerOptions | import("@smithy/types").FetchHttpHandlerOptions | Record<string, unknown> | import("@smithy/
|
|
10
|
+
requestHandler: import("@smithy/types").NodeHttpHandlerOptions | import("@smithy/types").FetchHttpHandlerOptions | Record<string, unknown> | import("@smithy/core/protocols").HttpHandler<any> | import("@smithy/fetch-http-handler").FetchHttpHandler;
|
|
11
11
|
cacheMiddleware?: boolean | undefined;
|
|
12
12
|
protocol?: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").$ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | import("@smithy/types").$ClientProtocolCtor<any, any> | undefined;
|
|
13
13
|
protocolSettings?: {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wildix/wda-stream-client",
|
|
3
3
|
"description": "@wildix/wda-stream-client client",
|
|
4
|
-
"version": "1.1.
|
|
4
|
+
"version": "1.1.64",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|