@aws-sdk/client-connect-contact-lens 3.687.0 → 3.691.0

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.
@@ -20,7 +20,7 @@ export declare class AccessDeniedException extends __BaseException {
20
20
  export declare class InternalServiceException extends __BaseException {
21
21
  readonly name: "InternalServiceException";
22
22
  readonly $fault: "server";
23
- Message?: string;
23
+ Message?: string | undefined;
24
24
  /**
25
25
  * @internal
26
26
  */
@@ -33,7 +33,7 @@ export declare class InternalServiceException extends __BaseException {
33
33
  export declare class InvalidRequestException extends __BaseException {
34
34
  readonly name: "InvalidRequestException";
35
35
  readonly $fault: "client";
36
- Message?: string;
36
+ Message?: string | undefined;
37
37
  /**
38
38
  * @internal
39
39
  */
@@ -57,13 +57,13 @@ export interface ListRealtimeContactAnalysisSegmentsRequest {
57
57
  * <p>The maximum number of results to return per page.</p>
58
58
  * @public
59
59
  */
60
- MaxResults?: number;
60
+ MaxResults?: number | undefined;
61
61
  /**
62
62
  * <p>The token for the next set of results. Use the value returned in the previous
63
63
  * response in the next request to retrieve the next set of results.</p>
64
64
  * @public
65
65
  */
66
- NextToken?: string;
66
+ NextToken?: string | undefined;
67
67
  }
68
68
  /**
69
69
  * <p>The section of the contact audio where that category rule was detected.</p>
@@ -145,7 +145,7 @@ export interface PostContactSummary {
145
145
  * <p>The content of the summary.</p>
146
146
  * @public
147
147
  */
148
- Content?: string;
148
+ Content?: string | undefined;
149
149
  /**
150
150
  * <p>Whether the summary was successfully COMPLETED or FAILED to be generated.</p>
151
151
  * @public
@@ -186,7 +186,7 @@ export interface PostContactSummary {
186
186
  * </ul>
187
187
  * @public
188
188
  */
189
- FailureCode?: PostContactSummaryFailureCode;
189
+ FailureCode?: PostContactSummaryFailureCode | undefined;
190
190
  }
191
191
  /**
192
192
  * <p>For characters that were detected as issues, where they occur in the
@@ -274,7 +274,7 @@ export interface Transcript {
274
274
  * <p>List of positions where issues were detected on the transcript.</p>
275
275
  * @public
276
276
  */
277
- IssuesDetected?: IssueDetected[];
277
+ IssuesDetected?: IssueDetected[] | undefined;
278
278
  }
279
279
  /**
280
280
  * <p>An analyzed segment for a real-time analysis session.</p>
@@ -285,17 +285,17 @@ export interface RealtimeContactAnalysisSegment {
285
285
  * <p>The analyzed transcript.</p>
286
286
  * @public
287
287
  */
288
- Transcript?: Transcript;
288
+ Transcript?: Transcript | undefined;
289
289
  /**
290
290
  * <p>The matched category rules.</p>
291
291
  * @public
292
292
  */
293
- Categories?: Categories;
293
+ Categories?: Categories | undefined;
294
294
  /**
295
295
  * <p>Information about the post-contact summary.</p>
296
296
  * @public
297
297
  */
298
- PostContactSummary?: PostContactSummary;
298
+ PostContactSummary?: PostContactSummary | undefined;
299
299
  }
300
300
  /**
301
301
  * @public
@@ -323,7 +323,7 @@ export interface ListRealtimeContactAnalysisSegmentsResponse {
323
323
  * (successfully or failed) and there are no more segments to retrieve.</p>
324
324
  * @public
325
325
  */
326
- NextToken?: string;
326
+ NextToken?: string | undefined;
327
327
  }
328
328
  /**
329
329
  * <p>The specified resource was not found.</p>
@@ -332,7 +332,7 @@ export interface ListRealtimeContactAnalysisSegmentsResponse {
332
332
  export declare class ResourceNotFoundException extends __BaseException {
333
333
  readonly name: "ResourceNotFoundException";
334
334
  readonly $fault: "client";
335
- Message?: string;
335
+ Message?: string | undefined;
336
336
  /**
337
337
  * @internal
338
338
  */
@@ -11,7 +11,7 @@ export declare class AccessDeniedException extends __BaseException {
11
11
  export declare class InternalServiceException extends __BaseException {
12
12
  readonly name: "InternalServiceException";
13
13
  readonly $fault: "server";
14
- Message?: string;
14
+ Message?: string | undefined;
15
15
  constructor(
16
16
  opts: __ExceptionOptionType<InternalServiceException, __BaseException>
17
17
  );
@@ -19,7 +19,7 @@ export declare class InternalServiceException extends __BaseException {
19
19
  export declare class InvalidRequestException extends __BaseException {
20
20
  readonly name: "InvalidRequestException";
21
21
  readonly $fault: "client";
22
- Message?: string;
22
+ Message?: string | undefined;
23
23
  constructor(
24
24
  opts: __ExceptionOptionType<InvalidRequestException, __BaseException>
25
25
  );
@@ -27,8 +27,8 @@ export declare class InvalidRequestException extends __BaseException {
27
27
  export interface ListRealtimeContactAnalysisSegmentsRequest {
28
28
  InstanceId: string | undefined;
29
29
  ContactId: string | undefined;
30
- MaxResults?: number;
31
- NextToken?: string;
30
+ MaxResults?: number | undefined;
31
+ NextToken?: string | undefined;
32
32
  }
33
33
  export interface PointOfInterest {
34
34
  BeginOffsetMillis: number | undefined;
@@ -57,9 +57,9 @@ export declare const PostContactSummaryStatus: {
57
57
  export type PostContactSummaryStatus =
58
58
  (typeof PostContactSummaryStatus)[keyof typeof PostContactSummaryStatus];
59
59
  export interface PostContactSummary {
60
- Content?: string;
60
+ Content?: string | undefined;
61
61
  Status: PostContactSummaryStatus | undefined;
62
- FailureCode?: PostContactSummaryFailureCode;
62
+ FailureCode?: PostContactSummaryFailureCode | undefined;
63
63
  }
64
64
  export interface CharacterOffsets {
65
65
  BeginOffsetChar: number | undefined;
@@ -83,21 +83,21 @@ export interface Transcript {
83
83
  BeginOffsetMillis: number | undefined;
84
84
  EndOffsetMillis: number | undefined;
85
85
  Sentiment: SentimentValue | undefined;
86
- IssuesDetected?: IssueDetected[];
86
+ IssuesDetected?: IssueDetected[] | undefined;
87
87
  }
88
88
  export interface RealtimeContactAnalysisSegment {
89
- Transcript?: Transcript;
90
- Categories?: Categories;
91
- PostContactSummary?: PostContactSummary;
89
+ Transcript?: Transcript | undefined;
90
+ Categories?: Categories | undefined;
91
+ PostContactSummary?: PostContactSummary | undefined;
92
92
  }
93
93
  export interface ListRealtimeContactAnalysisSegmentsResponse {
94
94
  Segments: RealtimeContactAnalysisSegment[] | undefined;
95
- NextToken?: string;
95
+ NextToken?: string | undefined;
96
96
  }
97
97
  export declare class ResourceNotFoundException extends __BaseException {
98
98
  readonly name: "ResourceNotFoundException";
99
99
  readonly $fault: "client";
100
- Message?: string;
100
+ Message?: string | undefined;
101
101
  constructor(
102
102
  opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
103
103
  );
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-connect-contact-lens",
3
3
  "description": "AWS SDK for JavaScript Connect Contact Lens Client for Node.js, Browser and React Native",
4
- "version": "3.687.0",
4
+ "version": "3.691.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-connect-contact-lens",
@@ -20,19 +20,19 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
- "@aws-sdk/client-sso-oidc": "3.687.0",
24
- "@aws-sdk/client-sts": "3.687.0",
25
- "@aws-sdk/core": "3.686.0",
26
- "@aws-sdk/credential-provider-node": "3.687.0",
23
+ "@aws-sdk/client-sso-oidc": "3.691.0",
24
+ "@aws-sdk/client-sts": "3.691.0",
25
+ "@aws-sdk/core": "3.691.0",
26
+ "@aws-sdk/credential-provider-node": "3.691.0",
27
27
  "@aws-sdk/middleware-host-header": "3.686.0",
28
28
  "@aws-sdk/middleware-logger": "3.686.0",
29
29
  "@aws-sdk/middleware-recursion-detection": "3.686.0",
30
- "@aws-sdk/middleware-user-agent": "3.687.0",
30
+ "@aws-sdk/middleware-user-agent": "3.691.0",
31
31
  "@aws-sdk/region-config-resolver": "3.686.0",
32
32
  "@aws-sdk/types": "3.686.0",
33
33
  "@aws-sdk/util-endpoints": "3.686.0",
34
34
  "@aws-sdk/util-user-agent-browser": "3.686.0",
35
- "@aws-sdk/util-user-agent-node": "3.687.0",
35
+ "@aws-sdk/util-user-agent-node": "3.691.0",
36
36
  "@smithy/config-resolver": "^3.0.10",
37
37
  "@smithy/core": "^2.5.1",
38
38
  "@smithy/fetch-http-handler": "^4.0.0",