@wildix/wda-history-client 1.0.18 → 1.0.20

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.
@@ -61,7 +61,7 @@ declare const GetConferenceTranscriptionCommand_base: {
61
61
  * // isFinal: true || false, // required
62
62
  * // start: Number("long"), // required
63
63
  * // end: Number("long"), // required
64
- * // sentiment: "STRING_VALUE", // required
64
+ * // sentiment: "STRING_VALUE",
65
65
  * // },
66
66
  * // ],
67
67
  * // },
@@ -479,7 +479,7 @@ export interface ConferenceTranscriptionChunk {
479
479
  isFinal: boolean;
480
480
  start: number;
481
481
  end: number;
482
- sentiment: string;
482
+ sentiment?: string;
483
483
  }
484
484
  /**
485
485
  * @public
@@ -16,6 +16,7 @@ export declare const getRuntimeConfig: (config: WdaHistoryClientConfig) => {
16
16
  env?: "stage" | "stable" | "prod" | undefined;
17
17
  token: import("@wildix/smithy-utils").TokenProvider;
18
18
  apiVersion: string;
19
+ cacheMiddleware?: boolean | undefined;
19
20
  urlParser: import("@smithy/types").UrlParser;
20
21
  base64Decoder: import("@smithy/types").Decoder;
21
22
  base64Encoder: (_input: string | Uint8Array) => string;
@@ -16,6 +16,7 @@ export declare const getRuntimeConfig: (config: WdaHistoryClientConfig) => {
16
16
  env?: "stage" | "stable" | "prod" | undefined;
17
17
  token: import("@wildix/smithy-utils").TokenProvider;
18
18
  apiVersion: string;
19
+ cacheMiddleware?: boolean | undefined;
19
20
  urlParser: import("@smithy/types").UrlParser;
20
21
  base64Decoder: import("@smithy/types").Decoder;
21
22
  base64Encoder: (_input: string | Uint8Array) => string;
@@ -9,6 +9,7 @@ export declare const getRuntimeConfig: (config: WdaHistoryClientConfig) => {
9
9
  token: import("@wildix/smithy-utils").TokenProvider;
10
10
  requestHandler: import("@smithy/types").NodeHttpHandlerOptions | import("@smithy/types").FetchHttpHandlerOptions | Record<string, unknown> | import("@smithy/protocol-http").HttpHandler<any> | import("@smithy/fetch-http-handler").FetchHttpHandler;
11
11
  apiVersion: string;
12
+ cacheMiddleware?: boolean | undefined;
12
13
  urlParser: import("@smithy/types").UrlParser;
13
14
  bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
14
15
  streamCollector: import("@smithy/types").StreamCollector;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@wildix/wda-history-client",
3
3
  "description": "@wildix/wda-history-client client",
4
- "version": "1.0.18",
4
+ "version": "1.0.20",
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",