@aws-sdk/client-connect 3.1076.0 → 3.1077.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.
Files changed (64) hide show
  1. package/README.md +14 -0
  2. package/dist-cjs/index.js +199 -53
  3. package/dist-es/Connect.js +4 -0
  4. package/dist-es/commands/CreateAttachedFileCommand.js +16 -0
  5. package/dist-es/commands/StartContactConversationalAnalyticsJobCommand.js +16 -0
  6. package/dist-es/commands/index.js +2 -0
  7. package/dist-es/models/enums.js +25 -0
  8. package/dist-es/runtimeConfig.browser.js +0 -2
  9. package/dist-es/runtimeConfig.js +1 -2
  10. package/dist-es/runtimeConfig.native.js +0 -2
  11. package/dist-es/runtimeConfig.shared.js +2 -0
  12. package/dist-es/schemas/schemas_0.js +128 -50
  13. package/dist-types/Connect.d.ts +14 -0
  14. package/dist-types/ConnectClient.d.ts +4 -2
  15. package/dist-types/commands/BatchGetAttachedFileMetadataCommand.d.ts +1 -1
  16. package/dist-types/commands/CreateAttachedFileCommand.d.ts +115 -0
  17. package/dist-types/commands/CreateEvaluationFormCommand.d.ts +1 -1
  18. package/dist-types/commands/GetAttachedFileCommand.d.ts +1 -1
  19. package/dist-types/commands/GetMetricDataCommand.d.ts +2 -1
  20. package/dist-types/commands/SearchEmailAddressesCommand.d.ts +1 -2
  21. package/dist-types/commands/StartAttachedFileUploadCommand.d.ts +1 -1
  22. package/dist-types/commands/StartChatContactCommand.d.ts +2 -1
  23. package/dist-types/commands/StartContactConversationalAnalyticsJobCommand.d.ts +135 -0
  24. package/dist-types/commands/StartEmailContactCommand.d.ts +2 -1
  25. package/dist-types/commands/StartOutboundChatContactCommand.d.ts +2 -1
  26. package/dist-types/commands/StartTaskContactCommand.d.ts +2 -1
  27. package/dist-types/commands/UpdateContactCommand.d.ts +2 -1
  28. package/dist-types/commands/index.d.ts +2 -0
  29. package/dist-types/models/enums.d.ts +65 -0
  30. package/dist-types/models/models_0.d.ts +75 -94
  31. package/dist-types/models/models_1.d.ts +95 -33
  32. package/dist-types/models/models_2.d.ts +34 -60
  33. package/dist-types/models/models_3.d.ts +218 -728
  34. package/dist-types/models/models_4.d.ts +728 -3
  35. package/dist-types/runtimeConfig.browser.d.ts +1 -1
  36. package/dist-types/runtimeConfig.d.ts +1 -1
  37. package/dist-types/runtimeConfig.native.d.ts +1 -1
  38. package/dist-types/runtimeConfig.shared.d.ts +1 -0
  39. package/dist-types/schemas/schemas_0.d.ts +12 -0
  40. package/dist-types/ts3.4/Connect.d.ts +40 -0
  41. package/dist-types/ts3.4/ConnectClient.d.ts +12 -0
  42. package/dist-types/ts3.4/commands/CreateAttachedFileCommand.d.ts +53 -0
  43. package/dist-types/ts3.4/commands/CreateEvaluationFormCommand.d.ts +1 -1
  44. package/dist-types/ts3.4/commands/GetMetricDataCommand.d.ts +2 -4
  45. package/dist-types/ts3.4/commands/SearchEmailAddressesCommand.d.ts +4 -2
  46. package/dist-types/ts3.4/commands/StartChatContactCommand.d.ts +2 -4
  47. package/dist-types/ts3.4/commands/StartContactConversationalAnalyticsJobCommand.d.ts +53 -0
  48. package/dist-types/ts3.4/commands/StartEmailContactCommand.d.ts +2 -4
  49. package/dist-types/ts3.4/commands/StartOutboundChatContactCommand.d.ts +2 -4
  50. package/dist-types/ts3.4/commands/StartTaskContactCommand.d.ts +2 -4
  51. package/dist-types/ts3.4/commands/UpdateContactCommand.d.ts +2 -4
  52. package/dist-types/ts3.4/commands/index.d.ts +2 -0
  53. package/dist-types/ts3.4/models/enums.d.ts +30 -0
  54. package/dist-types/ts3.4/models/models_0.d.ts +14 -21
  55. package/dist-types/ts3.4/models/models_1.d.ts +22 -9
  56. package/dist-types/ts3.4/models/models_2.d.ts +9 -15
  57. package/dist-types/ts3.4/models/models_3.d.ts +56 -145
  58. package/dist-types/ts3.4/models/models_4.d.ts +155 -3
  59. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -1
  60. package/dist-types/ts3.4/runtimeConfig.d.ts +1 -1
  61. package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -1
  62. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -0
  63. package/dist-types/ts3.4/schemas/schemas_0.d.ts +12 -0
  64. package/package.json +6 -8
@@ -13,7 +13,6 @@ export declare const getRuntimeConfig: (config: ConnectClientConfig) => {
13
13
  region: string | import("@smithy/types").Provider<any>;
14
14
  requestHandler: import("@smithy/core/protocols").HttpHandler<any> | RequestHandler;
15
15
  retryMode: string | import("@smithy/types").Provider<string>;
16
- sha256: import("@smithy/types").HashConstructor;
17
16
  streamCollector: (stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob) => Promise<Uint8Array>;
18
17
  useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
19
18
  useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
@@ -24,6 +23,7 @@ export declare const getRuntimeConfig: (config: ConnectClientConfig) => {
24
23
  [setting: string]: unknown;
25
24
  };
26
25
  apiVersion: string;
26
+ sha256: import("@smithy/types").HashConstructor;
27
27
  urlParser: import("@smithy/types").UrlParser;
28
28
  base64Decoder: import("@smithy/types").Decoder;
29
29
  base64Encoder: (_input: Uint8Array | string) => string;
@@ -14,7 +14,6 @@ export declare const getRuntimeConfig: (config: ConnectClientConfig) => {
14
14
  region: string | import("@smithy/types").Provider<string>;
15
15
  requestHandler: RequestHandler | import("@smithy/core/protocols").HttpHandler<any>;
16
16
  retryMode: string | import("@smithy/types").Provider<string>;
17
- sha256: import("@smithy/types").HashConstructor;
18
17
  streamCollector: (stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob) => Promise<Uint8Array>;
19
18
  useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
20
19
  useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
@@ -26,6 +25,7 @@ export declare const getRuntimeConfig: (config: ConnectClientConfig) => {
26
25
  [setting: string]: unknown;
27
26
  };
28
27
  apiVersion: string;
28
+ sha256: import("@smithy/types").HashConstructor;
29
29
  urlParser: import("@smithy/types").UrlParser;
30
30
  base64Decoder: import("@smithy/types").Decoder;
31
31
  base64Encoder: (_input: Uint8Array | string) => string;
@@ -4,7 +4,6 @@ import type { ConnectClientConfig } from "./ConnectClient";
4
4
  */
5
5
  export declare const getRuntimeConfig: (config: ConnectClientConfig) => {
6
6
  runtime: string;
7
- sha256: import("@smithy/types").HashConstructor;
8
7
  requestHandler: import("@smithy/types").NodeHttpHandlerOptions | import("@smithy/types").FetchHttpHandlerOptions | Record<string, unknown> | import("@smithy/core/protocols").HttpHandler<any> | import("@smithy/fetch-http-handler").FetchHttpHandler;
9
8
  cacheMiddleware?: boolean;
10
9
  protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core/protocols").AwsRestJsonProtocol;
@@ -13,6 +12,7 @@ export declare const getRuntimeConfig: (config: ConnectClientConfig) => {
13
12
  [setting: string]: unknown;
14
13
  };
15
14
  apiVersion: string;
15
+ sha256: import("@smithy/types").HashConstructor;
16
16
  urlParser: import("@smithy/types").UrlParser;
17
17
  bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
18
18
  streamCollector: (stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob) => Promise<Uint8Array>;
@@ -21,6 +21,7 @@ export declare const getRuntimeConfig: (config: ConnectClientConfig) => {
21
21
  defaultNamespace?: string;
22
22
  };
23
23
  serviceId: string;
24
+ sha256: import("@smithy/types").HashConstructor;
24
25
  urlParser: import("@smithy/types").UrlParser;
25
26
  utf8Decoder: import("@smithy/types").Decoder;
26
27
  utf8Encoder: (input: Uint8Array | string) => string;
@@ -61,6 +61,7 @@ export declare var AiAgentSearchCriteria$: StaticStructureSchema;
61
61
  export declare var AliasConfiguration$: StaticStructureSchema;
62
62
  export declare var AllowedCapabilities$: StaticStructureSchema;
63
63
  export declare var AllowedExtension$: StaticStructureSchema;
64
+ export declare var AnalyticsConfiguration$: StaticStructureSchema;
64
65
  export declare var AnalyticsDataAssociationResult$: StaticStructureSchema;
65
66
  export declare var AnalyticsDataSetsResult$: StaticStructureSchema;
66
67
  export declare var AnswerMachineDetectionConfig$: StaticStructureSchema;
@@ -197,6 +198,8 @@ export declare var ControlPlaneTagFilter$: StaticStructureSchema;
197
198
  export declare var ControlPlaneUserAttributeFilter$: StaticStructureSchema;
198
199
  export declare var CreateAgentStatusRequest$: StaticStructureSchema;
199
200
  export declare var CreateAgentStatusResponse$: StaticStructureSchema;
201
+ export declare var CreateAttachedFileRequest$: StaticStructureSchema;
202
+ export declare var CreateAttachedFileResponse$: StaticStructureSchema;
200
203
  export declare var CreateCaseActionDefinition$: StaticStructureSchema;
201
204
  export declare var CreateContactFlowModuleAliasRequest$: StaticStructureSchema;
202
205
  export declare var CreateContactFlowModuleAliasResponse$: StaticStructureSchema;
@@ -623,6 +626,7 @@ export declare var InvisibleFieldInfo$: StaticStructureSchema;
623
626
  export declare var KinesisFirehoseConfig$: StaticStructureSchema;
624
627
  export declare var KinesisStreamConfig$: StaticStructureSchema;
625
628
  export declare var KinesisVideoStreamConfig$: StaticStructureSchema;
629
+ export declare var LanguageConfiguration$: StaticStructureSchema;
626
630
  export declare var LexBot$: StaticStructureSchema;
627
631
  export declare var LexBotConfig$: StaticStructureSchema;
628
632
  export declare var LexV2Bot$: StaticStructureSchema;
@@ -878,6 +882,7 @@ export declare var RecordingInfo$: StaticStructureSchema;
878
882
  export declare var RecordPrimaryValue$: StaticStructureSchema;
879
883
  export declare var RecurrenceConfig$: StaticStructureSchema;
880
884
  export declare var RecurrencePattern$: StaticStructureSchema;
885
+ export declare var RedactionConfiguration$: StaticStructureSchema;
881
886
  export declare var Reference$: StaticStructureSchema;
882
887
  export declare var ReleasePhoneNumberRequest$: StaticStructureSchema;
883
888
  export declare var ReplicateInstanceRequest$: StaticStructureSchema;
@@ -906,6 +911,7 @@ export declare var RoutingProfileSearchFilter$: StaticStructureSchema;
906
911
  export declare var RoutingProfileSummary$: StaticStructureSchema;
907
912
  export declare var Rule$: StaticStructureSchema;
908
913
  export declare var RuleAction$: StaticStructureSchema;
914
+ export declare var RulesConfiguration$: StaticStructureSchema;
909
915
  export declare var RuleSummary$: StaticStructureSchema;
910
916
  export declare var RuleTriggerEventSource$: StaticStructureSchema;
911
917
  export declare var S3Config$: StaticStructureSchema;
@@ -986,6 +992,7 @@ export declare var SendChatIntegrationEventResponse$: StaticStructureSchema;
986
992
  export declare var SendNotificationActionDefinition$: StaticStructureSchema;
987
993
  export declare var SendOutboundEmailRequest$: StaticStructureSchema;
988
994
  export declare var SendOutboundEmailResponse$: StaticStructureSchema;
995
+ export declare var SentimentConfiguration$: StaticStructureSchema;
989
996
  export declare var SignInConfig$: StaticStructureSchema;
990
997
  export declare var SignInDistribution$: StaticStructureSchema;
991
998
  export declare var SingleSelectQuestionRuleCategoryAutomation$: StaticStructureSchema;
@@ -995,6 +1002,8 @@ export declare var StartAttachedFileUploadRequest$: StaticStructureSchema;
995
1002
  export declare var StartAttachedFileUploadResponse$: StaticStructureSchema;
996
1003
  export declare var StartChatContactRequest$: StaticStructureSchema;
997
1004
  export declare var StartChatContactResponse$: StaticStructureSchema;
1005
+ export declare var StartContactConversationalAnalyticsJobRequest$: StaticStructureSchema;
1006
+ export declare var StartContactConversationalAnalyticsJobResponse$: StaticStructureSchema;
998
1007
  export declare var StartContactEvaluationRequest$: StaticStructureSchema;
999
1008
  export declare var StartContactEvaluationResponse$: StaticStructureSchema;
1000
1009
  export declare var StartContactMediaProcessingRequest$: StaticStructureSchema;
@@ -1040,6 +1049,7 @@ export declare var SubmitContactEvaluationRequest$: StaticStructureSchema;
1040
1049
  export declare var SubmitContactEvaluationResponse$: StaticStructureSchema;
1041
1050
  export declare var SuccessfulBatchAssociationSummary$: StaticStructureSchema;
1042
1051
  export declare var SuccessfulRequest$: StaticStructureSchema;
1052
+ export declare var SummaryConfiguration$: StaticStructureSchema;
1043
1053
  export declare var SuspendContactRecordingRequest$: StaticStructureSchema;
1044
1054
  export declare var SuspendContactRecordingResponse$: StaticStructureSchema;
1045
1055
  export declare var TagCondition$: StaticStructureSchema;
@@ -1278,6 +1288,7 @@ export declare var BatchUpdateDataTableValue$: StaticOperationSchema;
1278
1288
  export declare var ClaimPhoneNumber$: StaticOperationSchema;
1279
1289
  export declare var CompleteAttachedFileUpload$: StaticOperationSchema;
1280
1290
  export declare var CreateAgentStatus$: StaticOperationSchema;
1291
+ export declare var CreateAttachedFile$: StaticOperationSchema;
1281
1292
  export declare var CreateContact$: StaticOperationSchema;
1282
1293
  export declare var CreateContactFlow$: StaticOperationSchema;
1283
1294
  export declare var CreateContactFlowModule$: StaticOperationSchema;
@@ -1528,6 +1539,7 @@ export declare var SendChatIntegrationEvent$: StaticOperationSchema;
1528
1539
  export declare var SendOutboundEmail$: StaticOperationSchema;
1529
1540
  export declare var StartAttachedFileUpload$: StaticOperationSchema;
1530
1541
  export declare var StartChatContact$: StaticOperationSchema;
1542
+ export declare var StartContactConversationalAnalyticsJob$: StaticOperationSchema;
1531
1543
  export declare var StartContactEvaluation$: StaticOperationSchema;
1532
1544
  export declare var StartContactMediaProcessing$: StaticOperationSchema;
1533
1545
  export declare var StartContactRecording$: StaticOperationSchema;
@@ -135,6 +135,10 @@ import {
135
135
  CreateAgentStatusCommandInput,
136
136
  CreateAgentStatusCommandOutput,
137
137
  } from "./commands/CreateAgentStatusCommand";
138
+ import {
139
+ CreateAttachedFileCommandInput,
140
+ CreateAttachedFileCommandOutput,
141
+ } from "./commands/CreateAttachedFileCommand";
138
142
  import {
139
143
  CreateContactCommandInput,
140
144
  CreateContactCommandOutput,
@@ -1135,6 +1139,10 @@ import {
1135
1139
  StartChatContactCommandInput,
1136
1140
  StartChatContactCommandOutput,
1137
1141
  } from "./commands/StartChatContactCommand";
1142
+ import {
1143
+ StartContactConversationalAnalyticsJobCommandInput,
1144
+ StartContactConversationalAnalyticsJobCommandOutput,
1145
+ } from "./commands/StartContactConversationalAnalyticsJobCommand";
1138
1146
  import {
1139
1147
  StartContactEvaluationCommandInput,
1140
1148
  StartContactEvaluationCommandOutput,
@@ -1934,6 +1942,19 @@ export interface Connect {
1934
1942
  options: __HttpHandlerOptions,
1935
1943
  cb: (err: any, data?: CreateAgentStatusCommandOutput) => void
1936
1944
  ): void;
1945
+ createAttachedFile(
1946
+ args: CreateAttachedFileCommandInput,
1947
+ options?: __HttpHandlerOptions
1948
+ ): Promise<CreateAttachedFileCommandOutput>;
1949
+ createAttachedFile(
1950
+ args: CreateAttachedFileCommandInput,
1951
+ cb: (err: any, data?: CreateAttachedFileCommandOutput) => void
1952
+ ): void;
1953
+ createAttachedFile(
1954
+ args: CreateAttachedFileCommandInput,
1955
+ options: __HttpHandlerOptions,
1956
+ cb: (err: any, data?: CreateAttachedFileCommandOutput) => void
1957
+ ): void;
1937
1958
  createContact(
1938
1959
  args: CreateContactCommandInput,
1939
1960
  options?: __HttpHandlerOptions
@@ -5247,6 +5268,25 @@ export interface Connect {
5247
5268
  options: __HttpHandlerOptions,
5248
5269
  cb: (err: any, data?: StartChatContactCommandOutput) => void
5249
5270
  ): void;
5271
+ startContactConversationalAnalyticsJob(
5272
+ args: StartContactConversationalAnalyticsJobCommandInput,
5273
+ options?: __HttpHandlerOptions
5274
+ ): Promise<StartContactConversationalAnalyticsJobCommandOutput>;
5275
+ startContactConversationalAnalyticsJob(
5276
+ args: StartContactConversationalAnalyticsJobCommandInput,
5277
+ cb: (
5278
+ err: any,
5279
+ data?: StartContactConversationalAnalyticsJobCommandOutput
5280
+ ) => void
5281
+ ): void;
5282
+ startContactConversationalAnalyticsJob(
5283
+ args: StartContactConversationalAnalyticsJobCommandInput,
5284
+ options: __HttpHandlerOptions,
5285
+ cb: (
5286
+ err: any,
5287
+ data?: StartContactConversationalAnalyticsJobCommandOutput
5288
+ ) => void
5289
+ ): void;
5250
5290
  startContactEvaluation(
5251
5291
  args: StartContactEvaluationCommandInput,
5252
5292
  options?: __HttpHandlerOptions
@@ -168,6 +168,10 @@ import {
168
168
  CreateAgentStatusCommandInput,
169
169
  CreateAgentStatusCommandOutput,
170
170
  } from "./commands/CreateAgentStatusCommand";
171
+ import {
172
+ CreateAttachedFileCommandInput,
173
+ CreateAttachedFileCommandOutput,
174
+ } from "./commands/CreateAttachedFileCommand";
171
175
  import {
172
176
  CreateContactCommandInput,
173
177
  CreateContactCommandOutput,
@@ -1168,6 +1172,10 @@ import {
1168
1172
  StartChatContactCommandInput,
1169
1173
  StartChatContactCommandOutput,
1170
1174
  } from "./commands/StartChatContactCommand";
1175
+ import {
1176
+ StartContactConversationalAnalyticsJobCommandInput,
1177
+ StartContactConversationalAnalyticsJobCommandOutput,
1178
+ } from "./commands/StartContactConversationalAnalyticsJobCommand";
1171
1179
  import {
1172
1180
  StartContactEvaluationCommandInput,
1173
1181
  StartContactEvaluationCommandOutput,
@@ -1565,6 +1573,7 @@ export type ServiceInputTypes =
1565
1573
  | ClaimPhoneNumberCommandInput
1566
1574
  | CompleteAttachedFileUploadCommandInput
1567
1575
  | CreateAgentStatusCommandInput
1576
+ | CreateAttachedFileCommandInput
1568
1577
  | CreateContactCommandInput
1569
1578
  | CreateContactFlowCommandInput
1570
1579
  | CreateContactFlowModuleAliasCommandInput
@@ -1815,6 +1824,7 @@ export type ServiceInputTypes =
1815
1824
  | SendOutboundEmailCommandInput
1816
1825
  | StartAttachedFileUploadCommandInput
1817
1826
  | StartChatContactCommandInput
1827
+ | StartContactConversationalAnalyticsJobCommandInput
1818
1828
  | StartContactEvaluationCommandInput
1819
1829
  | StartContactMediaProcessingCommandInput
1820
1830
  | StartContactRecordingCommandInput
@@ -1938,6 +1948,7 @@ export type ServiceOutputTypes =
1938
1948
  | ClaimPhoneNumberCommandOutput
1939
1949
  | CompleteAttachedFileUploadCommandOutput
1940
1950
  | CreateAgentStatusCommandOutput
1951
+ | CreateAttachedFileCommandOutput
1941
1952
  | CreateContactCommandOutput
1942
1953
  | CreateContactFlowCommandOutput
1943
1954
  | CreateContactFlowModuleAliasCommandOutput
@@ -2188,6 +2199,7 @@ export type ServiceOutputTypes =
2188
2199
  | SendOutboundEmailCommandOutput
2189
2200
  | StartAttachedFileUploadCommandOutput
2190
2201
  | StartChatContactCommandOutput
2202
+ | StartContactConversationalAnalyticsJobCommandOutput
2191
2203
  | StartContactEvaluationCommandOutput
2192
2204
  | StartContactMediaProcessingCommandOutput
2193
2205
  | StartContactRecordingCommandOutput
@@ -0,0 +1,53 @@
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ ConnectClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../ConnectClient";
8
+ import {
9
+ CreateAttachedFileRequest,
10
+ CreateAttachedFileResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface CreateAttachedFileCommandInput
15
+ extends CreateAttachedFileRequest {}
16
+ export interface CreateAttachedFileCommandOutput
17
+ extends CreateAttachedFileResponse,
18
+ __MetadataBearer {}
19
+ declare const CreateAttachedFileCommand_base: {
20
+ new (
21
+ input: CreateAttachedFileCommandInput
22
+ ): import("@smithy/core/client").CommandImpl<
23
+ CreateAttachedFileCommandInput,
24
+ CreateAttachedFileCommandOutput,
25
+ ConnectClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: CreateAttachedFileCommandInput
31
+ ): import("@smithy/core/client").CommandImpl<
32
+ CreateAttachedFileCommandInput,
33
+ CreateAttachedFileCommandOutput,
34
+ ConnectClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): {
39
+ [x: string]: unknown;
40
+ };
41
+ };
42
+ export declare class CreateAttachedFileCommand extends CreateAttachedFileCommand_base {
43
+ protected static __types: {
44
+ api: {
45
+ input: CreateAttachedFileRequest;
46
+ output: CreateAttachedFileResponse;
47
+ };
48
+ sdk: {
49
+ input: CreateAttachedFileCommandInput;
50
+ output: CreateAttachedFileCommandOutput;
51
+ };
52
+ };
53
+ }
@@ -6,7 +6,7 @@ import {
6
6
  ServiceOutputTypes,
7
7
  } from "../ConnectClient";
8
8
  import { CreateEvaluationFormResponse } from "../models/models_0";
9
- import { CreateEvaluationFormRequest } from "../models/models_3";
9
+ import { CreateEvaluationFormRequest } from "../models/models_4";
10
10
  export { __MetadataBearer };
11
11
  export { $Command };
12
12
  export interface CreateEvaluationFormCommandInput
@@ -5,10 +5,8 @@ import {
5
5
  ServiceInputTypes,
6
6
  ServiceOutputTypes,
7
7
  } from "../ConnectClient";
8
- import {
9
- GetMetricDataRequest,
10
- GetMetricDataResponse,
11
- } from "../models/models_1";
8
+ import { GetMetricDataRequest } from "../models/models_1";
9
+ import { GetMetricDataResponse } from "../models/models_2";
12
10
  export { __MetadataBearer };
13
11
  export { $Command };
14
12
  export interface GetMetricDataCommandInput extends GetMetricDataRequest {}
@@ -5,8 +5,10 @@ import {
5
5
  ServiceInputTypes,
6
6
  ServiceOutputTypes,
7
7
  } from "../ConnectClient";
8
- import { SearchEmailAddressesResponse } from "../models/models_2";
9
- import { SearchEmailAddressesRequest } from "../models/models_3";
8
+ import {
9
+ SearchEmailAddressesRequest,
10
+ SearchEmailAddressesResponse,
11
+ } from "../models/models_3";
10
12
  export { __MetadataBearer };
11
13
  export { $Command };
12
14
  export interface SearchEmailAddressesCommandInput
@@ -5,10 +5,8 @@ import {
5
5
  ServiceInputTypes,
6
6
  ServiceOutputTypes,
7
7
  } from "../ConnectClient";
8
- import {
9
- StartChatContactRequest,
10
- StartChatContactResponse,
11
- } from "../models/models_3";
8
+ import { StartChatContactResponse } from "../models/models_3";
9
+ import { StartChatContactRequest } from "../models/models_4";
12
10
  export { __MetadataBearer };
13
11
  export { $Command };
14
12
  export interface StartChatContactCommandInput extends StartChatContactRequest {}
@@ -0,0 +1,53 @@
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ ConnectClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../ConnectClient";
8
+ import {
9
+ StartContactConversationalAnalyticsJobRequest,
10
+ StartContactConversationalAnalyticsJobResponse,
11
+ } from "../models/models_3";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface StartContactConversationalAnalyticsJobCommandInput
15
+ extends StartContactConversationalAnalyticsJobRequest {}
16
+ export interface StartContactConversationalAnalyticsJobCommandOutput
17
+ extends StartContactConversationalAnalyticsJobResponse,
18
+ __MetadataBearer {}
19
+ declare const StartContactConversationalAnalyticsJobCommand_base: {
20
+ new (
21
+ input: StartContactConversationalAnalyticsJobCommandInput
22
+ ): import("@smithy/core/client").CommandImpl<
23
+ StartContactConversationalAnalyticsJobCommandInput,
24
+ StartContactConversationalAnalyticsJobCommandOutput,
25
+ ConnectClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: StartContactConversationalAnalyticsJobCommandInput
31
+ ): import("@smithy/core/client").CommandImpl<
32
+ StartContactConversationalAnalyticsJobCommandInput,
33
+ StartContactConversationalAnalyticsJobCommandOutput,
34
+ ConnectClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): {
39
+ [x: string]: unknown;
40
+ };
41
+ };
42
+ export declare class StartContactConversationalAnalyticsJobCommand extends StartContactConversationalAnalyticsJobCommand_base {
43
+ protected static __types: {
44
+ api: {
45
+ input: StartContactConversationalAnalyticsJobRequest;
46
+ output: StartContactConversationalAnalyticsJobResponse;
47
+ };
48
+ sdk: {
49
+ input: StartContactConversationalAnalyticsJobCommandInput;
50
+ output: StartContactConversationalAnalyticsJobCommandOutput;
51
+ };
52
+ };
53
+ }
@@ -5,10 +5,8 @@ import {
5
5
  ServiceInputTypes,
6
6
  ServiceOutputTypes,
7
7
  } from "../ConnectClient";
8
- import {
9
- StartEmailContactRequest,
10
- StartEmailContactResponse,
11
- } from "../models/models_3";
8
+ import { StartEmailContactResponse } from "../models/models_3";
9
+ import { StartEmailContactRequest } from "../models/models_4";
12
10
  export { __MetadataBearer };
13
11
  export { $Command };
14
12
  export interface StartEmailContactCommandInput
@@ -5,10 +5,8 @@ import {
5
5
  ServiceInputTypes,
6
6
  ServiceOutputTypes,
7
7
  } from "../ConnectClient";
8
- import {
9
- StartOutboundChatContactRequest,
10
- StartOutboundChatContactResponse,
11
- } from "../models/models_3";
8
+ import { StartOutboundChatContactResponse } from "../models/models_3";
9
+ import { StartOutboundChatContactRequest } from "../models/models_4";
12
10
  export { __MetadataBearer };
13
11
  export { $Command };
14
12
  export interface StartOutboundChatContactCommandInput
@@ -5,10 +5,8 @@ import {
5
5
  ServiceInputTypes,
6
6
  ServiceOutputTypes,
7
7
  } from "../ConnectClient";
8
- import {
9
- StartTaskContactRequest,
10
- StartTaskContactResponse,
11
- } from "../models/models_3";
8
+ import { StartTaskContactResponse } from "../models/models_3";
9
+ import { StartTaskContactRequest } from "../models/models_4";
12
10
  export { __MetadataBearer };
13
11
  export { $Command };
14
12
  export interface StartTaskContactCommandInput extends StartTaskContactRequest {}
@@ -5,10 +5,8 @@ import {
5
5
  ServiceInputTypes,
6
6
  ServiceOutputTypes,
7
7
  } from "../ConnectClient";
8
- import {
9
- UpdateContactRequest,
10
- UpdateContactResponse,
11
- } from "../models/models_3";
8
+ import { UpdateContactResponse } from "../models/models_3";
9
+ import { UpdateContactRequest } from "../models/models_4";
12
10
  export { __MetadataBearer };
13
11
  export { $Command };
14
12
  export interface UpdateContactCommandInput extends UpdateContactRequest {}
@@ -31,6 +31,7 @@ export * from "./BatchUpdateDataTableValueCommand";
31
31
  export * from "./ClaimPhoneNumberCommand";
32
32
  export * from "./CompleteAttachedFileUploadCommand";
33
33
  export * from "./CreateAgentStatusCommand";
34
+ export * from "./CreateAttachedFileCommand";
34
35
  export * from "./CreateContactCommand";
35
36
  export * from "./CreateContactFlowCommand";
36
37
  export * from "./CreateContactFlowModuleAliasCommand";
@@ -281,6 +282,7 @@ export * from "./SendChatIntegrationEventCommand";
281
282
  export * from "./SendOutboundEmailCommand";
282
283
  export * from "./StartAttachedFileUploadCommand";
283
284
  export * from "./StartChatContactCommand";
285
+ export * from "./StartContactConversationalAnalyticsJobCommand";
284
286
  export * from "./StartContactEvaluationCommand";
285
287
  export * from "./StartContactMediaProcessingCommand";
286
288
  export * from "./StartContactRecordingCommand";
@@ -230,6 +230,7 @@ export declare const FileUseCaseType: {
230
230
  readonly EMAIL_MESSAGE_PLAIN_TEXT: "EMAIL_MESSAGE_PLAIN_TEXT";
231
231
  readonly EMAIL_MESSAGE_PLAIN_TEXT_REDACTED: "EMAIL_MESSAGE_PLAIN_TEXT_REDACTED";
232
232
  readonly EMAIL_MESSAGE_REDACTED: "EMAIL_MESSAGE_REDACTED";
233
+ readonly VOICE_RECORDING: "VOICE_RECORDING";
233
234
  };
234
235
  export type FileUseCaseType =
235
236
  (typeof FileUseCaseType)[keyof typeof FileUseCaseType];
@@ -1567,6 +1568,35 @@ export declare const ResponseMode: {
1567
1568
  readonly INCREMENTAL: "INCREMENTAL";
1568
1569
  };
1569
1570
  export type ResponseMode = (typeof ResponseMode)[keyof typeof ResponseMode];
1571
+ export declare const Behavior: {
1572
+ readonly Disable: "Disable";
1573
+ readonly Enable: "Enable";
1574
+ };
1575
+ export type Behavior = (typeof Behavior)[keyof typeof Behavior];
1576
+ export declare const MaskMode: {
1577
+ readonly EntityType: "EntityType";
1578
+ readonly PII: "PII";
1579
+ };
1580
+ export type MaskMode = (typeof MaskMode)[keyof typeof MaskMode];
1581
+ export declare const Policy: {
1582
+ readonly None: "None";
1583
+ readonly RedactedAndOriginal: "RedactedAndOriginal";
1584
+ readonly RedactedOnly: "RedactedOnly";
1585
+ };
1586
+ export type Policy = (typeof Policy)[keyof typeof Policy];
1587
+ export declare const SummaryMode: {
1588
+ readonly AutomatedInteraction: "AutomatedInteraction";
1589
+ readonly ContactChain: "ContactChain";
1590
+ readonly PostContact: "PostContact";
1591
+ };
1592
+ export type SummaryMode = (typeof SummaryMode)[keyof typeof SummaryMode];
1593
+ export declare const AnalyticsMode: {
1594
+ readonly AutomatedInteraction: "AutomatedInteraction";
1595
+ readonly ContactLens: "ContactLens";
1596
+ readonly PostContact: "PostContact";
1597
+ readonly RealTime: "RealTime";
1598
+ };
1599
+ export type AnalyticsMode = (typeof AnalyticsMode)[keyof typeof AnalyticsMode];
1570
1600
  export declare const ContactMediaProcessingFailureMode: {
1571
1601
  readonly DELIVER_UNPROCESSED_MESSAGE: "DELIVER_UNPROCESSED_MESSAGE";
1572
1602
  readonly DO_NOT_DELIVER_UNPROCESSED_MESSAGE: "DO_NOT_DELIVER_UNPROCESSED_MESSAGE";
@@ -78,7 +78,6 @@ import {
78
78
  UseCaseType,
79
79
  VideoCapability,
80
80
  ViewStatus,
81
- ViewType,
82
81
  VocabularyLanguageCode,
83
82
  VoiceEnhancementMode,
84
83
  } from "./enums";
@@ -791,6 +790,20 @@ export interface CreateAgentStatusResponse {
791
790
  AgentStatusARN?: string | undefined;
792
791
  AgentStatusId?: string | undefined;
793
792
  }
793
+ export interface CreateAttachedFileRequest {
794
+ ClientToken?: string | undefined;
795
+ InstanceId: string | undefined;
796
+ FileUseCaseType: FileUseCaseType | undefined;
797
+ FileSourceUri: string | undefined;
798
+ AssociatedResourceArn: string | undefined;
799
+ Tags?: Record<string, string> | undefined;
800
+ }
801
+ export interface CreateAttachedFileResponse {
802
+ FileArn?: string | undefined;
803
+ FileId?: string | undefined;
804
+ CreationTime?: string | undefined;
805
+ FileStatus?: FileStatusType | undefined;
806
+ }
794
807
  export interface Reference {
795
808
  Value?: string | undefined;
796
809
  Type: ReferenceType | undefined;
@@ -1744,23 +1757,3 @@ export interface CreateViewRequest {
1744
1757
  Name: string | undefined;
1745
1758
  Tags?: Record<string, string> | undefined;
1746
1759
  }
1747
- export interface ViewContent {
1748
- InputSchema?: string | undefined;
1749
- Template?: string | undefined;
1750
- Actions?: string[] | undefined;
1751
- }
1752
- export interface View {
1753
- Id?: string | undefined;
1754
- Arn?: string | undefined;
1755
- Name?: string | undefined;
1756
- Status?: ViewStatus | undefined;
1757
- Type?: ViewType | undefined;
1758
- Description?: string | undefined;
1759
- Version?: number | undefined;
1760
- VersionDescription?: string | undefined;
1761
- Content?: ViewContent | undefined;
1762
- Tags?: Record<string, string> | undefined;
1763
- CreatedTime?: Date | undefined;
1764
- LastModifiedTime?: Date | undefined;
1765
- ViewContentSha256?: string | undefined;
1766
- }
@@ -28,7 +28,6 @@ import {
28
28
  EvaluationType,
29
29
  FileStatusType,
30
30
  FileUseCaseType,
31
- FilterV2StringConditionComparisonOperator,
32
31
  FlowAssociationResourceType,
33
32
  Grouping,
34
33
  HistoricalMetricName,
@@ -60,6 +59,8 @@ import {
60
59
  TestCaseStatus,
61
60
  TrafficDistributionGroupStatus,
62
61
  Unit,
62
+ ViewStatus,
63
+ ViewType,
63
64
  Visibility,
64
65
  VocabularyLanguageCode,
65
66
  VocabularyState,
@@ -110,9 +111,28 @@ import {
110
111
  UserIdentityInfo,
111
112
  UserPhoneConfig,
112
113
  Validation,
113
- View,
114
114
  VoiceEnhancementConfig,
115
115
  } from "./models_0";
116
+ export interface ViewContent {
117
+ InputSchema?: string | undefined;
118
+ Template?: string | undefined;
119
+ Actions?: string[] | undefined;
120
+ }
121
+ export interface View {
122
+ Id?: string | undefined;
123
+ Arn?: string | undefined;
124
+ Name?: string | undefined;
125
+ Status?: ViewStatus | undefined;
126
+ Type?: ViewType | undefined;
127
+ Description?: string | undefined;
128
+ Version?: number | undefined;
129
+ VersionDescription?: string | undefined;
130
+ Content?: ViewContent | undefined;
131
+ Tags?: Record<string, string> | undefined;
132
+ CreatedTime?: Date | undefined;
133
+ LastModifiedTime?: Date | undefined;
134
+ ViewContentSha256?: string | undefined;
135
+ }
116
136
  export interface CreateViewResponse {
117
137
  View?: View | undefined;
118
138
  }
@@ -1765,10 +1785,3 @@ export interface HistoricalMetricResult {
1765
1785
  Dimensions?: Dimensions | undefined;
1766
1786
  Collections?: HistoricalMetricData[] | undefined;
1767
1787
  }
1768
- export interface GetMetricDataResponse {
1769
- NextToken?: string | undefined;
1770
- MetricResults?: HistoricalMetricResult[] | undefined;
1771
- }
1772
- export interface FilterV2StringCondition {
1773
- Comparison?: FilterV2StringConditionComparisonOperator | undefined;
1774
- }