@aws-sdk/client-connect 3.329.0 → 3.335.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 (58) hide show
  1. package/README.md +40 -0
  2. package/dist-cjs/Connect.js +10 -0
  3. package/dist-cjs/commands/CreatePromptCommand.js +45 -0
  4. package/dist-cjs/commands/DeletePromptCommand.js +45 -0
  5. package/dist-cjs/commands/DescribePromptCommand.js +45 -0
  6. package/dist-cjs/commands/GetPromptFileCommand.js +45 -0
  7. package/dist-cjs/commands/UpdatePromptCommand.js +45 -0
  8. package/dist-cjs/commands/index.js +5 -0
  9. package/dist-cjs/protocols/Aws_restJson1.js +344 -9
  10. package/dist-es/Connect.js +10 -0
  11. package/dist-es/commands/CreatePromptCommand.js +41 -0
  12. package/dist-es/commands/DeletePromptCommand.js +41 -0
  13. package/dist-es/commands/DescribePromptCommand.js +41 -0
  14. package/dist-es/commands/GetPromptFileCommand.js +41 -0
  15. package/dist-es/commands/UpdatePromptCommand.js +41 -0
  16. package/dist-es/commands/index.js +5 -0
  17. package/dist-es/protocols/Aws_restJson1.js +326 -1
  18. package/dist-types/Connect.d.ts +35 -0
  19. package/dist-types/ConnectClient.d.ts +10 -4
  20. package/dist-types/commands/CreateEvaluationFormCommand.d.ts +4 -3
  21. package/dist-types/commands/CreateParticipantCommand.d.ts +1 -1
  22. package/dist-types/commands/CreatePromptCommand.d.ts +94 -0
  23. package/dist-types/commands/DeleteEvaluationFormCommand.d.ts +2 -2
  24. package/dist-types/commands/DeletePromptCommand.d.ts +83 -0
  25. package/dist-types/commands/DescribePromptCommand.d.ts +93 -0
  26. package/dist-types/commands/GetCurrentMetricDataCommand.d.ts +2 -1
  27. package/dist-types/commands/GetMetricDataV2Command.d.ts +1 -1
  28. package/dist-types/commands/GetPromptFileCommand.d.ts +85 -0
  29. package/dist-types/commands/UpdateEvaluationFormCommand.d.ts +4 -3
  30. package/dist-types/commands/UpdatePhoneNumberCommand.d.ts +4 -0
  31. package/dist-types/commands/UpdatePromptCommand.d.ts +89 -0
  32. package/dist-types/commands/index.d.ts +5 -0
  33. package/dist-types/endpoint/EndpointParameters.d.ts +2 -1
  34. package/dist-types/models/models_0.d.ts +107 -102
  35. package/dist-types/models/models_1.d.ts +166 -7
  36. package/dist-types/protocols/Aws_restJson1.d.ts +47 -2
  37. package/dist-types/runtimeConfig.browser.d.ts +12 -12
  38. package/dist-types/runtimeConfig.d.ts +9 -9
  39. package/dist-types/runtimeConfig.native.d.ts +13 -13
  40. package/dist-types/runtimeConfig.shared.d.ts +4 -4
  41. package/dist-types/ts3.4/Connect.d.ts +85 -0
  42. package/dist-types/ts3.4/ConnectClient.d.ts +37 -5
  43. package/dist-types/ts3.4/commands/CreatePromptCommand.d.ts +34 -0
  44. package/dist-types/ts3.4/commands/DeletePromptCommand.d.ts +32 -0
  45. package/dist-types/ts3.4/commands/DescribePromptCommand.d.ts +37 -0
  46. package/dist-types/ts3.4/commands/GetCurrentMetricDataCommand.d.ts +2 -4
  47. package/dist-types/ts3.4/commands/GetPromptFileCommand.d.ts +37 -0
  48. package/dist-types/ts3.4/commands/UpdatePromptCommand.d.ts +34 -0
  49. package/dist-types/ts3.4/commands/index.d.ts +5 -0
  50. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -2
  51. package/dist-types/ts3.4/models/models_0.d.ts +29 -26
  52. package/dist-types/ts3.4/models/models_1.d.ts +47 -3
  53. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +62 -2
  54. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +18 -15
  55. package/dist-types/ts3.4/runtimeConfig.d.ts +12 -12
  56. package/dist-types/ts3.4/runtimeConfig.native.d.ts +20 -15
  57. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -4
  58. package/package.json +7 -6
@@ -0,0 +1,32 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
2
+ import { Command as $Command } from "@aws-sdk/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@aws-sdk/types";
9
+ import {
10
+ ConnectClientResolvedConfig,
11
+ ServiceInputTypes,
12
+ ServiceOutputTypes,
13
+ } from "../ConnectClient";
14
+ import { DeletePromptRequest } from "../models/models_0";
15
+ export interface DeletePromptCommandInput extends DeletePromptRequest {}
16
+ export interface DeletePromptCommandOutput extends __MetadataBearer {}
17
+ export declare class DeletePromptCommand extends $Command<
18
+ DeletePromptCommandInput,
19
+ DeletePromptCommandOutput,
20
+ ConnectClientResolvedConfig
21
+ > {
22
+ readonly input: DeletePromptCommandInput;
23
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
24
+ constructor(input: DeletePromptCommandInput);
25
+ resolveMiddleware(
26
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
27
+ configuration: ConnectClientResolvedConfig,
28
+ options?: __HttpHandlerOptions
29
+ ): Handler<DeletePromptCommandInput, DeletePromptCommandOutput>;
30
+ private serialize;
31
+ private deserialize;
32
+ }
@@ -0,0 +1,37 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
2
+ import { Command as $Command } from "@aws-sdk/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@aws-sdk/types";
9
+ import {
10
+ ConnectClientResolvedConfig,
11
+ ServiceInputTypes,
12
+ ServiceOutputTypes,
13
+ } from "../ConnectClient";
14
+ import {
15
+ DescribePromptRequest,
16
+ DescribePromptResponse,
17
+ } from "../models/models_0";
18
+ export interface DescribePromptCommandInput extends DescribePromptRequest {}
19
+ export interface DescribePromptCommandOutput
20
+ extends DescribePromptResponse,
21
+ __MetadataBearer {}
22
+ export declare class DescribePromptCommand extends $Command<
23
+ DescribePromptCommandInput,
24
+ DescribePromptCommandOutput,
25
+ ConnectClientResolvedConfig
26
+ > {
27
+ readonly input: DescribePromptCommandInput;
28
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
29
+ constructor(input: DescribePromptCommandInput);
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: ConnectClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<DescribePromptCommandInput, DescribePromptCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -11,10 +11,8 @@ import {
11
11
  ServiceInputTypes,
12
12
  ServiceOutputTypes,
13
13
  } from "../ConnectClient";
14
- import {
15
- GetCurrentMetricDataRequest,
16
- GetCurrentMetricDataResponse,
17
- } from "../models/models_0";
14
+ import { GetCurrentMetricDataRequest } from "../models/models_0";
15
+ import { GetCurrentMetricDataResponse } from "../models/models_1";
18
16
  export interface GetCurrentMetricDataCommandInput
19
17
  extends GetCurrentMetricDataRequest {}
20
18
  export interface GetCurrentMetricDataCommandOutput
@@ -0,0 +1,37 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
2
+ import { Command as $Command } from "@aws-sdk/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@aws-sdk/types";
9
+ import {
10
+ ConnectClientResolvedConfig,
11
+ ServiceInputTypes,
12
+ ServiceOutputTypes,
13
+ } from "../ConnectClient";
14
+ import {
15
+ GetPromptFileRequest,
16
+ GetPromptFileResponse,
17
+ } from "../models/models_1";
18
+ export interface GetPromptFileCommandInput extends GetPromptFileRequest {}
19
+ export interface GetPromptFileCommandOutput
20
+ extends GetPromptFileResponse,
21
+ __MetadataBearer {}
22
+ export declare class GetPromptFileCommand extends $Command<
23
+ GetPromptFileCommandInput,
24
+ GetPromptFileCommandOutput,
25
+ ConnectClientResolvedConfig
26
+ > {
27
+ readonly input: GetPromptFileCommandInput;
28
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
29
+ constructor(input: GetPromptFileCommandInput);
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: ConnectClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<GetPromptFileCommandInput, GetPromptFileCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -0,0 +1,34 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
2
+ import { Command as $Command } from "@aws-sdk/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@aws-sdk/types";
9
+ import {
10
+ ConnectClientResolvedConfig,
11
+ ServiceInputTypes,
12
+ ServiceOutputTypes,
13
+ } from "../ConnectClient";
14
+ import { UpdatePromptRequest, UpdatePromptResponse } from "../models/models_1";
15
+ export interface UpdatePromptCommandInput extends UpdatePromptRequest {}
16
+ export interface UpdatePromptCommandOutput
17
+ extends UpdatePromptResponse,
18
+ __MetadataBearer {}
19
+ export declare class UpdatePromptCommand extends $Command<
20
+ UpdatePromptCommandInput,
21
+ UpdatePromptCommandOutput,
22
+ ConnectClientResolvedConfig
23
+ > {
24
+ readonly input: UpdatePromptCommandInput;
25
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
26
+ constructor(input: UpdatePromptCommandInput);
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: ConnectClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<UpdatePromptCommandInput, UpdatePromptCommandOutput>;
32
+ private serialize;
33
+ private deserialize;
34
+ }
@@ -18,6 +18,7 @@ export * from "./CreateHoursOfOperationCommand";
18
18
  export * from "./CreateInstanceCommand";
19
19
  export * from "./CreateIntegrationAssociationCommand";
20
20
  export * from "./CreateParticipantCommand";
21
+ export * from "./CreatePromptCommand";
21
22
  export * from "./CreateQueueCommand";
22
23
  export * from "./CreateQuickConnectCommand";
23
24
  export * from "./CreateRoutingProfileCommand";
@@ -37,6 +38,7 @@ export * from "./DeleteEvaluationFormCommand";
37
38
  export * from "./DeleteHoursOfOperationCommand";
38
39
  export * from "./DeleteInstanceCommand";
39
40
  export * from "./DeleteIntegrationAssociationCommand";
41
+ export * from "./DeletePromptCommand";
40
42
  export * from "./DeleteQuickConnectCommand";
41
43
  export * from "./DeleteRuleCommand";
42
44
  export * from "./DeleteSecurityProfileCommand";
@@ -57,6 +59,7 @@ export * from "./DescribeInstanceAttributeCommand";
57
59
  export * from "./DescribeInstanceCommand";
58
60
  export * from "./DescribeInstanceStorageConfigCommand";
59
61
  export * from "./DescribePhoneNumberCommand";
62
+ export * from "./DescribePromptCommand";
60
63
  export * from "./DescribeQueueCommand";
61
64
  export * from "./DescribeQuickConnectCommand";
62
65
  export * from "./DescribeRoutingProfileCommand";
@@ -83,6 +86,7 @@ export * from "./GetCurrentUserDataCommand";
83
86
  export * from "./GetFederationTokenCommand";
84
87
  export * from "./GetMetricDataCommand";
85
88
  export * from "./GetMetricDataV2Command";
89
+ export * from "./GetPromptFileCommand";
86
90
  export * from "./GetTaskTemplateCommand";
87
91
  export * from "./GetTrafficDistributionCommand";
88
92
  export * from "./ListAgentStatusesCommand";
@@ -161,6 +165,7 @@ export * from "./UpdateInstanceAttributeCommand";
161
165
  export * from "./UpdateInstanceStorageConfigCommand";
162
166
  export * from "./UpdateParticipantRoleConfigCommand";
163
167
  export * from "./UpdatePhoneNumberCommand";
168
+ export * from "./UpdatePromptCommand";
164
169
  export * from "./UpdateQueueHoursOfOperationCommand";
165
170
  export * from "./UpdateQueueMaxContactsCommand";
166
171
  export * from "./UpdateQueueNameCommand";
@@ -1,9 +1,8 @@
1
1
  import {
2
- Endpoint,
3
2
  EndpointParameters as __EndpointParameters,
4
3
  EndpointV2,
5
- Provider,
6
4
  } from "@aws-sdk/types";
5
+ import { Endpoint, Provider } from "@smithy/types";
7
6
  export interface ClientInputEndpointParameters {
8
7
  region?: string | Provider<string>;
9
8
  useDualstackEndpoint?: boolean | Provider<boolean>;
@@ -700,6 +700,17 @@ export interface CreateParticipantResponse {
700
700
  ParticipantCredentials?: ParticipantTokenCredentials;
701
701
  ParticipantId?: string;
702
702
  }
703
+ export interface CreatePromptRequest {
704
+ InstanceId: string | undefined;
705
+ Name: string | undefined;
706
+ Description?: string;
707
+ S3Uri: string | undefined;
708
+ Tags?: Record<string, string>;
709
+ }
710
+ export interface CreatePromptResponse {
711
+ PromptARN?: string;
712
+ PromptId?: string;
713
+ }
703
714
  export interface OutboundCallerConfig {
704
715
  OutboundCallerIdName?: string;
705
716
  OutboundCallerIdNumberId?: string;
@@ -1108,6 +1119,10 @@ export interface DeleteIntegrationAssociationRequest {
1108
1119
  InstanceId: string | undefined;
1109
1120
  IntegrationAssociationId: string | undefined;
1110
1121
  }
1122
+ export interface DeletePromptRequest {
1123
+ InstanceId: string | undefined;
1124
+ PromptId: string | undefined;
1125
+ }
1111
1126
  export interface DeleteQuickConnectRequest {
1112
1127
  InstanceId: string | undefined;
1113
1128
  QuickConnectId: string | undefined;
@@ -1714,6 +1729,20 @@ export interface ClaimedPhoneNumberSummary {
1714
1729
  export interface DescribePhoneNumberResponse {
1715
1730
  ClaimedPhoneNumberSummary?: ClaimedPhoneNumberSummary;
1716
1731
  }
1732
+ export interface DescribePromptRequest {
1733
+ InstanceId: string | undefined;
1734
+ PromptId: string | undefined;
1735
+ }
1736
+ export interface Prompt {
1737
+ PromptARN?: string;
1738
+ PromptId?: string;
1739
+ Name?: string;
1740
+ Description?: string;
1741
+ Tags?: Record<string, string>;
1742
+ }
1743
+ export interface DescribePromptResponse {
1744
+ Prompt?: Prompt;
1745
+ }
1717
1746
  export interface DescribeQueueRequest {
1718
1747
  InstanceId: string | undefined;
1719
1748
  QueueId: string | undefined;
@@ -2025,32 +2054,6 @@ export interface GetCurrentMetricDataRequest {
2025
2054
  MaxResults?: number;
2026
2055
  SortCriteria?: CurrentMetricSortCriteria[];
2027
2056
  }
2028
- export interface CurrentMetricData {
2029
- Metric?: CurrentMetric;
2030
- Value?: number;
2031
- }
2032
- export interface RoutingProfileReference {
2033
- Id?: string;
2034
- Arn?: string;
2035
- }
2036
- export interface Dimensions {
2037
- Queue?: QueueReference;
2038
- Channel?: Channel | string;
2039
- RoutingProfile?: RoutingProfileReference;
2040
- }
2041
- export interface CurrentMetricResult {
2042
- Dimensions?: Dimensions;
2043
- Collections?: CurrentMetricData[];
2044
- }
2045
- export interface GetCurrentMetricDataResponse {
2046
- NextToken?: string;
2047
- MetricResults?: CurrentMetricResult[];
2048
- DataSnapshotTime?: Date;
2049
- ApproximateTotalCount?: number;
2050
- }
2051
- export interface ContactFilter {
2052
- ContactStates?: (ContactState | string)[];
2053
- }
2054
2057
  export declare const CreateInstanceRequestFilterSensitiveLog: (
2055
2058
  obj: CreateInstanceRequest
2056
2059
  ) => any;
@@ -9,11 +9,11 @@ import {
9
9
  AgentStatusType,
10
10
  Attribute,
11
11
  Channel,
12
- ContactFilter,
13
12
  ContactFlowModuleState,
14
13
  ContactFlowState,
15
14
  ContactFlowType,
16
- Dimensions,
15
+ ContactState,
16
+ CurrentMetric,
17
17
  DirectoryType,
18
18
  Evaluation,
19
19
  EvaluationAnswerData,
@@ -41,6 +41,7 @@ import {
41
41
  PhoneNumberCountryCode,
42
42
  PhoneNumberType,
43
43
  Queue,
44
+ QueueReference,
44
45
  QueueStatus,
45
46
  QuickConnectConfig,
46
47
  QuickConnectType,
@@ -48,7 +49,6 @@ import {
48
49
  ReferenceType,
49
50
  RoutingProfile,
50
51
  RoutingProfileQueueConfig,
51
- RoutingProfileReference,
52
52
  RuleAction,
53
53
  RulePublishStatus,
54
54
  SourceType,
@@ -64,6 +64,32 @@ import {
64
64
  VocabularyLanguageCode,
65
65
  VocabularyState,
66
66
  } from "./models_0";
67
+ export interface CurrentMetricData {
68
+ Metric?: CurrentMetric;
69
+ Value?: number;
70
+ }
71
+ export interface RoutingProfileReference {
72
+ Id?: string;
73
+ Arn?: string;
74
+ }
75
+ export interface Dimensions {
76
+ Queue?: QueueReference;
77
+ Channel?: Channel | string;
78
+ RoutingProfile?: RoutingProfileReference;
79
+ }
80
+ export interface CurrentMetricResult {
81
+ Dimensions?: Dimensions;
82
+ Collections?: CurrentMetricData[];
83
+ }
84
+ export interface GetCurrentMetricDataResponse {
85
+ NextToken?: string;
86
+ MetricResults?: CurrentMetricResult[];
87
+ DataSnapshotTime?: Date;
88
+ ApproximateTotalCount?: number;
89
+ }
90
+ export interface ContactFilter {
91
+ ContactStates?: (ContactState | string)[];
92
+ }
67
93
  export interface UserDataFilters {
68
94
  Queues?: string[];
69
95
  ContactFilter?: ContactFilter;
@@ -241,6 +267,13 @@ export interface GetMetricDataV2Response {
241
267
  NextToken?: string;
242
268
  MetricResults?: MetricResultV2[];
243
269
  }
270
+ export interface GetPromptFileRequest {
271
+ InstanceId: string | undefined;
272
+ PromptId: string | undefined;
273
+ }
274
+ export interface GetPromptFileResponse {
275
+ PromptPresignedUrl?: string;
276
+ }
244
277
  export interface GetTaskTemplateRequest {
245
278
  InstanceId: string | undefined;
246
279
  TaskTemplateId: string | undefined;
@@ -1461,6 +1494,17 @@ export interface UpdatePhoneNumberResponse {
1461
1494
  PhoneNumberId?: string;
1462
1495
  PhoneNumberArn?: string;
1463
1496
  }
1497
+ export interface UpdatePromptRequest {
1498
+ InstanceId: string | undefined;
1499
+ PromptId: string | undefined;
1500
+ Name?: string;
1501
+ Description?: string;
1502
+ S3Uri?: string;
1503
+ }
1504
+ export interface UpdatePromptResponse {
1505
+ PromptARN?: string;
1506
+ PromptId?: string;
1507
+ }
1464
1508
  export interface UpdateQueueHoursOfOperationRequest {
1465
1509
  InstanceId: string | undefined;
1466
1510
  QueueId: string | undefined;
@@ -1,8 +1,8 @@
1
1
  import {
2
2
  HttpRequest as __HttpRequest,
3
3
  HttpResponse as __HttpResponse,
4
- } from "@aws-sdk/protocol-http";
5
- import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
4
+ } from "@smithy/protocol-http";
5
+ import { SerdeContext as __SerdeContext } from "@smithy/types";
6
6
  import {
7
7
  ActivateEvaluationFormCommandInput,
8
8
  ActivateEvaluationFormCommandOutput,
@@ -83,6 +83,10 @@ import {
83
83
  CreateParticipantCommandInput,
84
84
  CreateParticipantCommandOutput,
85
85
  } from "../commands/CreateParticipantCommand";
86
+ import {
87
+ CreatePromptCommandInput,
88
+ CreatePromptCommandOutput,
89
+ } from "../commands/CreatePromptCommand";
86
90
  import {
87
91
  CreateQueueCommandInput,
88
92
  CreateQueueCommandOutput,
@@ -159,6 +163,10 @@ import {
159
163
  DeleteIntegrationAssociationCommandInput,
160
164
  DeleteIntegrationAssociationCommandOutput,
161
165
  } from "../commands/DeleteIntegrationAssociationCommand";
166
+ import {
167
+ DeletePromptCommandInput,
168
+ DeletePromptCommandOutput,
169
+ } from "../commands/DeletePromptCommand";
162
170
  import {
163
171
  DeleteQuickConnectCommandInput,
164
172
  DeleteQuickConnectCommandOutput,
@@ -239,6 +247,10 @@ import {
239
247
  DescribePhoneNumberCommandInput,
240
248
  DescribePhoneNumberCommandOutput,
241
249
  } from "../commands/DescribePhoneNumberCommand";
250
+ import {
251
+ DescribePromptCommandInput,
252
+ DescribePromptCommandOutput,
253
+ } from "../commands/DescribePromptCommand";
242
254
  import {
243
255
  DescribeQueueCommandInput,
244
256
  DescribeQueueCommandOutput,
@@ -343,6 +355,10 @@ import {
343
355
  GetMetricDataV2CommandInput,
344
356
  GetMetricDataV2CommandOutput,
345
357
  } from "../commands/GetMetricDataV2Command";
358
+ import {
359
+ GetPromptFileCommandInput,
360
+ GetPromptFileCommandOutput,
361
+ } from "../commands/GetPromptFileCommand";
346
362
  import {
347
363
  GetTaskTemplateCommandInput,
348
364
  GetTaskTemplateCommandOutput,
@@ -655,6 +671,10 @@ import {
655
671
  UpdatePhoneNumberCommandInput,
656
672
  UpdatePhoneNumberCommandOutput,
657
673
  } from "../commands/UpdatePhoneNumberCommand";
674
+ import {
675
+ UpdatePromptCommandInput,
676
+ UpdatePromptCommandOutput,
677
+ } from "../commands/UpdatePromptCommand";
658
678
  import {
659
679
  UpdateQueueHoursOfOperationCommandInput,
660
680
  UpdateQueueHoursOfOperationCommandOutput,
@@ -823,6 +843,10 @@ export declare const se_CreateParticipantCommand: (
823
843
  input: CreateParticipantCommandInput,
824
844
  context: __SerdeContext
825
845
  ) => Promise<__HttpRequest>;
846
+ export declare const se_CreatePromptCommand: (
847
+ input: CreatePromptCommandInput,
848
+ context: __SerdeContext
849
+ ) => Promise<__HttpRequest>;
826
850
  export declare const se_CreateQueueCommand: (
827
851
  input: CreateQueueCommandInput,
828
852
  context: __SerdeContext
@@ -899,6 +923,10 @@ export declare const se_DeleteIntegrationAssociationCommand: (
899
923
  input: DeleteIntegrationAssociationCommandInput,
900
924
  context: __SerdeContext
901
925
  ) => Promise<__HttpRequest>;
926
+ export declare const se_DeletePromptCommand: (
927
+ input: DeletePromptCommandInput,
928
+ context: __SerdeContext
929
+ ) => Promise<__HttpRequest>;
902
930
  export declare const se_DeleteQuickConnectCommand: (
903
931
  input: DeleteQuickConnectCommandInput,
904
932
  context: __SerdeContext
@@ -979,6 +1007,10 @@ export declare const se_DescribePhoneNumberCommand: (
979
1007
  input: DescribePhoneNumberCommandInput,
980
1008
  context: __SerdeContext
981
1009
  ) => Promise<__HttpRequest>;
1010
+ export declare const se_DescribePromptCommand: (
1011
+ input: DescribePromptCommandInput,
1012
+ context: __SerdeContext
1013
+ ) => Promise<__HttpRequest>;
982
1014
  export declare const se_DescribeQueueCommand: (
983
1015
  input: DescribeQueueCommandInput,
984
1016
  context: __SerdeContext
@@ -1083,6 +1115,10 @@ export declare const se_GetMetricDataV2Command: (
1083
1115
  input: GetMetricDataV2CommandInput,
1084
1116
  context: __SerdeContext
1085
1117
  ) => Promise<__HttpRequest>;
1118
+ export declare const se_GetPromptFileCommand: (
1119
+ input: GetPromptFileCommandInput,
1120
+ context: __SerdeContext
1121
+ ) => Promise<__HttpRequest>;
1086
1122
  export declare const se_GetTaskTemplateCommand: (
1087
1123
  input: GetTaskTemplateCommandInput,
1088
1124
  context: __SerdeContext
@@ -1395,6 +1431,10 @@ export declare const se_UpdatePhoneNumberCommand: (
1395
1431
  input: UpdatePhoneNumberCommandInput,
1396
1432
  context: __SerdeContext
1397
1433
  ) => Promise<__HttpRequest>;
1434
+ export declare const se_UpdatePromptCommand: (
1435
+ input: UpdatePromptCommandInput,
1436
+ context: __SerdeContext
1437
+ ) => Promise<__HttpRequest>;
1398
1438
  export declare const se_UpdateQueueHoursOfOperationCommand: (
1399
1439
  input: UpdateQueueHoursOfOperationCommandInput,
1400
1440
  context: __SerdeContext
@@ -1563,6 +1603,10 @@ export declare const de_CreateParticipantCommand: (
1563
1603
  output: __HttpResponse,
1564
1604
  context: __SerdeContext
1565
1605
  ) => Promise<CreateParticipantCommandOutput>;
1606
+ export declare const de_CreatePromptCommand: (
1607
+ output: __HttpResponse,
1608
+ context: __SerdeContext
1609
+ ) => Promise<CreatePromptCommandOutput>;
1566
1610
  export declare const de_CreateQueueCommand: (
1567
1611
  output: __HttpResponse,
1568
1612
  context: __SerdeContext
@@ -1639,6 +1683,10 @@ export declare const de_DeleteIntegrationAssociationCommand: (
1639
1683
  output: __HttpResponse,
1640
1684
  context: __SerdeContext
1641
1685
  ) => Promise<DeleteIntegrationAssociationCommandOutput>;
1686
+ export declare const de_DeletePromptCommand: (
1687
+ output: __HttpResponse,
1688
+ context: __SerdeContext
1689
+ ) => Promise<DeletePromptCommandOutput>;
1642
1690
  export declare const de_DeleteQuickConnectCommand: (
1643
1691
  output: __HttpResponse,
1644
1692
  context: __SerdeContext
@@ -1719,6 +1767,10 @@ export declare const de_DescribePhoneNumberCommand: (
1719
1767
  output: __HttpResponse,
1720
1768
  context: __SerdeContext
1721
1769
  ) => Promise<DescribePhoneNumberCommandOutput>;
1770
+ export declare const de_DescribePromptCommand: (
1771
+ output: __HttpResponse,
1772
+ context: __SerdeContext
1773
+ ) => Promise<DescribePromptCommandOutput>;
1722
1774
  export declare const de_DescribeQueueCommand: (
1723
1775
  output: __HttpResponse,
1724
1776
  context: __SerdeContext
@@ -1823,6 +1875,10 @@ export declare const de_GetMetricDataV2Command: (
1823
1875
  output: __HttpResponse,
1824
1876
  context: __SerdeContext
1825
1877
  ) => Promise<GetMetricDataV2CommandOutput>;
1878
+ export declare const de_GetPromptFileCommand: (
1879
+ output: __HttpResponse,
1880
+ context: __SerdeContext
1881
+ ) => Promise<GetPromptFileCommandOutput>;
1826
1882
  export declare const de_GetTaskTemplateCommand: (
1827
1883
  output: __HttpResponse,
1828
1884
  context: __SerdeContext
@@ -2135,6 +2191,10 @@ export declare const de_UpdatePhoneNumberCommand: (
2135
2191
  output: __HttpResponse,
2136
2192
  context: __SerdeContext
2137
2193
  ) => Promise<UpdatePhoneNumberCommandOutput>;
2194
+ export declare const de_UpdatePromptCommand: (
2195
+ output: __HttpResponse,
2196
+ context: __SerdeContext
2197
+ ) => Promise<UpdatePromptCommandOutput>;
2138
2198
  export declare const de_UpdateQueueHoursOfOperationCommand: (
2139
2199
  output: __HttpResponse,
2140
2200
  context: __SerdeContext
@@ -8,11 +8,12 @@ export declare const getRuntimeConfig: (config: ConnectClientConfig) => {
8
8
  bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
9
9
  credentialDefaultProvider: (
10
10
  input: any
11
- ) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
11
+ ) => import("@smithy/types").Provider<import("@aws-sdk/types").Credentials>;
12
12
  defaultUserAgentProvider: import("@aws-sdk/types").Provider<
13
13
  import("@aws-sdk/types").UserAgent
14
14
  >;
15
- maxAttempts: number | import("@aws-sdk/types").Provider<number>;
15
+ maxAttempts: (number | import("@smithy/types").Provider<number>) &
16
+ (number | import("@aws-sdk/types").Provider<number>);
16
17
  region: string | import("@aws-sdk/types").Provider<any>;
17
18
  requestHandler:
18
19
  | (import("@aws-sdk/types").RequestHandler<
@@ -20,19 +21,21 @@ export declare const getRuntimeConfig: (config: ConnectClientConfig) => {
20
21
  any,
21
22
  import("@aws-sdk/types").HttpHandlerOptions
22
23
  > &
23
- import("@aws-sdk/protocol-http").HttpHandler)
24
+ import("@smithy/protocol-http").HttpHandler)
24
25
  | RequestHandler;
25
- retryMode: string | import("@aws-sdk/types").Provider<string>;
26
+ retryMode: string | import("@smithy/types").Provider<string>;
26
27
  sha256: import("@aws-sdk/types").HashConstructor;
27
- streamCollector: import("@aws-sdk/types").StreamCollector;
28
- useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
29
- useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
28
+ streamCollector: import("@smithy/types").StreamCollector;
29
+ useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
30
+ (boolean | import("@aws-sdk/types").Provider<boolean>);
31
+ useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
32
+ (boolean | import("@aws-sdk/types").Provider<boolean>);
30
33
  apiVersion: string;
31
34
  urlParser: import("@aws-sdk/types").UrlParser;
32
- base64Decoder: import("@aws-sdk/types").Decoder;
33
- base64Encoder: import("@aws-sdk/types").Encoder;
34
- utf8Decoder: import("@aws-sdk/types").Decoder;
35
- utf8Encoder: import("@aws-sdk/types").Encoder;
35
+ base64Decoder: import("@smithy/types").Decoder;
36
+ base64Encoder: import("@smithy/types").Encoder;
37
+ utf8Decoder: import("@smithy/types").Decoder;
38
+ utf8Encoder: import("@smithy/types").Encoder;
36
39
  disableHostPrefix: boolean;
37
40
  serviceId: string;
38
41
  logger: import("@aws-sdk/types").Logger;
@@ -46,11 +49,11 @@ export declare const getRuntimeConfig: (config: ConnectClientConfig) => {
46
49
  ) &
47
50
  (
48
51
  | string
49
- | import("@aws-sdk/types").Provider<string>
50
- | import("@aws-sdk/types").Endpoint
51
- | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint>
52
+ | import("@smithy/types").Provider<string>
53
+ | import("@smithy/types").Endpoint
54
+ | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
52
55
  | import("@aws-sdk/types").EndpointV2
53
- | import("@aws-sdk/types").Provider<
56
+ | import("@smithy/types").Provider<
54
57
  import("@aws-sdk/types").EndpointV2
55
58
  >
56
59
  ))
@@ -8,7 +8,7 @@ export declare const getRuntimeConfig: (config: ConnectClientConfig) => {
8
8
  bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
9
9
  credentialDefaultProvider: (
10
10
  input: any
11
- ) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
11
+ ) => import("@smithy/types").Provider<import("@aws-sdk/types").Credentials>;
12
12
  defaultUserAgentProvider: import("@aws-sdk/types").Provider<
13
13
  import("@aws-sdk/types").UserAgent
14
14
  >;
@@ -20,19 +20,19 @@ export declare const getRuntimeConfig: (config: ConnectClientConfig) => {
20
20
  any,
21
21
  import("@aws-sdk/types").HttpHandlerOptions
22
22
  > &
23
- import("@aws-sdk/protocol-http").HttpHandler)
23
+ import("@smithy/protocol-http").HttpHandler)
24
24
  | RequestHandler;
25
- retryMode: string | import("@aws-sdk/types").Provider<string>;
25
+ retryMode: string | import("@smithy/types").Provider<string>;
26
26
  sha256: import("@aws-sdk/types").HashConstructor;
27
- streamCollector: import("@aws-sdk/types").StreamCollector;
27
+ streamCollector: import("@smithy/types").StreamCollector;
28
28
  useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
29
29
  useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
30
30
  apiVersion: string;
31
31
  urlParser: import("@aws-sdk/types").UrlParser;
32
- base64Decoder: import("@aws-sdk/types").Decoder;
33
- base64Encoder: import("@aws-sdk/types").Encoder;
34
- utf8Decoder: import("@aws-sdk/types").Decoder;
35
- utf8Encoder: import("@aws-sdk/types").Encoder;
32
+ base64Decoder: import("@smithy/types").Decoder;
33
+ base64Encoder: import("@smithy/types").Encoder;
34
+ utf8Decoder: import("@smithy/types").Decoder;
35
+ utf8Encoder: import("@smithy/types").Encoder;
36
36
  disableHostPrefix: boolean;
37
37
  serviceId: string;
38
38
  logger: import("@aws-sdk/types").Logger;
@@ -46,11 +46,11 @@ export declare const getRuntimeConfig: (config: ConnectClientConfig) => {
46
46
  ) &
47
47
  (
48
48
  | string
49
- | import("@aws-sdk/types").Provider<string>
50
- | import("@aws-sdk/types").Endpoint
51
- | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint>
49
+ | import("@smithy/types").Provider<string>
50
+ | import("@smithy/types").Endpoint
51
+ | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
52
52
  | import("@aws-sdk/types").EndpointV2
53
- | import("@aws-sdk/types").Provider<
53
+ | import("@smithy/types").Provider<
54
54
  import("@aws-sdk/types").EndpointV2
55
55
  >
56
56
  ))