@aws-sdk/client-connect 3.568.0 → 3.569.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/index.js +391 -81
  3. package/dist-es/Connect.js +10 -0
  4. package/dist-es/commands/BatchGetAttachedFileMetadataCommand.js +24 -0
  5. package/dist-es/commands/CompleteAttachedFileUploadCommand.js +24 -0
  6. package/dist-es/commands/DeleteAttachedFileCommand.js +24 -0
  7. package/dist-es/commands/DescribeInstanceCommand.js +1 -1
  8. package/dist-es/commands/GetAttachedFileCommand.js +24 -0
  9. package/dist-es/commands/ReplicateInstanceCommand.js +1 -1
  10. package/dist-es/commands/StartAttachedFileUploadCommand.js +24 -0
  11. package/dist-es/commands/index.js +5 -0
  12. package/dist-es/models/models_0.js +33 -26
  13. package/dist-es/models/models_1.js +26 -42
  14. package/dist-es/models/models_2.js +42 -1
  15. package/dist-es/protocols/Aws_restJson1.js +163 -0
  16. package/dist-types/Connect.d.ts +35 -0
  17. package/dist-types/ConnectClient.d.ts +7 -2
  18. package/dist-types/commands/BatchGetAttachedFileMetadataCommand.d.ts +105 -0
  19. package/dist-types/commands/CompleteAttachedFileUploadCommand.d.ts +75 -0
  20. package/dist-types/commands/DeleteAttachedFileCommand.d.ts +78 -0
  21. package/dist-types/commands/DescribeHoursOfOperationCommand.d.ts +2 -1
  22. package/dist-types/commands/DescribeInstanceAttributeCommand.d.ts +1 -1
  23. package/dist-types/commands/DescribeInstanceCommand.d.ts +1 -1
  24. package/dist-types/commands/DescribeInstanceStorageConfigCommand.d.ts +1 -1
  25. package/dist-types/commands/DescribePhoneNumberCommand.d.ts +1 -2
  26. package/dist-types/commands/GetAttachedFileCommand.d.ts +97 -0
  27. package/dist-types/commands/ReplicateInstanceCommand.d.ts +2 -1
  28. package/dist-types/commands/ResumeContactCommand.d.ts +1 -1
  29. package/dist-types/commands/ResumeContactRecordingCommand.d.ts +1 -1
  30. package/dist-types/commands/SearchAvailablePhoneNumbersCommand.d.ts +1 -1
  31. package/dist-types/commands/StartAttachedFileUploadCommand.d.ts +108 -0
  32. package/dist-types/commands/index.d.ts +5 -0
  33. package/dist-types/models/models_0.d.ts +308 -239
  34. package/dist-types/models/models_1.d.ts +356 -344
  35. package/dist-types/models/models_2.d.ts +472 -2
  36. package/dist-types/protocols/Aws_restJson1.d.ts +45 -0
  37. package/dist-types/ts3.4/Connect.d.ts +85 -0
  38. package/dist-types/ts3.4/ConnectClient.d.ts +30 -0
  39. package/dist-types/ts3.4/commands/BatchGetAttachedFileMetadataCommand.d.ts +39 -0
  40. package/dist-types/ts3.4/commands/CompleteAttachedFileUploadCommand.d.ts +39 -0
  41. package/dist-types/ts3.4/commands/DeleteAttachedFileCommand.d.ts +39 -0
  42. package/dist-types/ts3.4/commands/DescribeHoursOfOperationCommand.d.ts +2 -4
  43. package/dist-types/ts3.4/commands/DescribeInstanceAttributeCommand.d.ts +1 -1
  44. package/dist-types/ts3.4/commands/DescribeInstanceCommand.d.ts +1 -1
  45. package/dist-types/ts3.4/commands/DescribeInstanceStorageConfigCommand.d.ts +1 -1
  46. package/dist-types/ts3.4/commands/DescribePhoneNumberCommand.d.ts +4 -2
  47. package/dist-types/ts3.4/commands/GetAttachedFileCommand.d.ts +38 -0
  48. package/dist-types/ts3.4/commands/ReplicateInstanceCommand.d.ts +2 -4
  49. package/dist-types/ts3.4/commands/ResumeContactCommand.d.ts +1 -1
  50. package/dist-types/ts3.4/commands/ResumeContactRecordingCommand.d.ts +1 -1
  51. package/dist-types/ts3.4/commands/SearchAvailablePhoneNumbersCommand.d.ts +1 -1
  52. package/dist-types/ts3.4/commands/StartAttachedFileUploadCommand.d.ts +39 -0
  53. package/dist-types/ts3.4/commands/index.d.ts +5 -0
  54. package/dist-types/ts3.4/models/models_0.d.ts +109 -74
  55. package/dist-types/ts3.4/models/models_1.d.ts +101 -99
  56. package/dist-types/ts3.4/models/models_2.d.ts +127 -3
  57. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +60 -0
  58. package/package.json +4 -2
@@ -67,6 +67,10 @@ import {
67
67
  BatchDisassociateAnalyticsDataSetCommandInput,
68
68
  BatchDisassociateAnalyticsDataSetCommandOutput,
69
69
  } from "./commands/BatchDisassociateAnalyticsDataSetCommand";
70
+ import {
71
+ BatchGetAttachedFileMetadataCommandInput,
72
+ BatchGetAttachedFileMetadataCommandOutput,
73
+ } from "./commands/BatchGetAttachedFileMetadataCommand";
70
74
  import {
71
75
  BatchGetFlowAssociationCommandInput,
72
76
  BatchGetFlowAssociationCommandOutput,
@@ -79,6 +83,10 @@ import {
79
83
  ClaimPhoneNumberCommandInput,
80
84
  ClaimPhoneNumberCommandOutput,
81
85
  } from "./commands/ClaimPhoneNumberCommand";
86
+ import {
87
+ CompleteAttachedFileUploadCommandInput,
88
+ CompleteAttachedFileUploadCommandOutput,
89
+ } from "./commands/CompleteAttachedFileUploadCommand";
82
90
  import {
83
91
  CreateAgentStatusCommandInput,
84
92
  CreateAgentStatusCommandOutput,
@@ -179,6 +187,10 @@ import {
179
187
  DeactivateEvaluationFormCommandInput,
180
188
  DeactivateEvaluationFormCommandOutput,
181
189
  } from "./commands/DeactivateEvaluationFormCommand";
190
+ import {
191
+ DeleteAttachedFileCommandInput,
192
+ DeleteAttachedFileCommandOutput,
193
+ } from "./commands/DeleteAttachedFileCommand";
182
194
  import {
183
195
  DeleteContactEvaluationCommandInput,
184
196
  DeleteContactEvaluationCommandOutput,
@@ -419,6 +431,10 @@ import {
419
431
  DismissUserContactCommandInput,
420
432
  DismissUserContactCommandOutput,
421
433
  } from "./commands/DismissUserContactCommand";
434
+ import {
435
+ GetAttachedFileCommandInput,
436
+ GetAttachedFileCommandOutput,
437
+ } from "./commands/GetAttachedFileCommand";
422
438
  import {
423
439
  GetContactAttributesCommandInput,
424
440
  GetContactAttributesCommandOutput,
@@ -719,6 +735,10 @@ import {
719
735
  SendChatIntegrationEventCommandInput,
720
736
  SendChatIntegrationEventCommandOutput,
721
737
  } from "./commands/SendChatIntegrationEventCommand";
738
+ import {
739
+ StartAttachedFileUploadCommandInput,
740
+ StartAttachedFileUploadCommandOutput,
741
+ } from "./commands/StartAttachedFileUploadCommand";
722
742
  import {
723
743
  StartChatContactCommandInput,
724
744
  StartChatContactCommandOutput,
@@ -1206,6 +1226,19 @@ export interface Connect {
1206
1226
  data?: BatchDisassociateAnalyticsDataSetCommandOutput
1207
1227
  ) => void
1208
1228
  ): void;
1229
+ batchGetAttachedFileMetadata(
1230
+ args: BatchGetAttachedFileMetadataCommandInput,
1231
+ options?: __HttpHandlerOptions
1232
+ ): Promise<BatchGetAttachedFileMetadataCommandOutput>;
1233
+ batchGetAttachedFileMetadata(
1234
+ args: BatchGetAttachedFileMetadataCommandInput,
1235
+ cb: (err: any, data?: BatchGetAttachedFileMetadataCommandOutput) => void
1236
+ ): void;
1237
+ batchGetAttachedFileMetadata(
1238
+ args: BatchGetAttachedFileMetadataCommandInput,
1239
+ options: __HttpHandlerOptions,
1240
+ cb: (err: any, data?: BatchGetAttachedFileMetadataCommandOutput) => void
1241
+ ): void;
1209
1242
  batchGetFlowAssociation(
1210
1243
  args: BatchGetFlowAssociationCommandInput,
1211
1244
  options?: __HttpHandlerOptions
@@ -1245,6 +1278,19 @@ export interface Connect {
1245
1278
  options: __HttpHandlerOptions,
1246
1279
  cb: (err: any, data?: ClaimPhoneNumberCommandOutput) => void
1247
1280
  ): void;
1281
+ completeAttachedFileUpload(
1282
+ args: CompleteAttachedFileUploadCommandInput,
1283
+ options?: __HttpHandlerOptions
1284
+ ): Promise<CompleteAttachedFileUploadCommandOutput>;
1285
+ completeAttachedFileUpload(
1286
+ args: CompleteAttachedFileUploadCommandInput,
1287
+ cb: (err: any, data?: CompleteAttachedFileUploadCommandOutput) => void
1288
+ ): void;
1289
+ completeAttachedFileUpload(
1290
+ args: CompleteAttachedFileUploadCommandInput,
1291
+ options: __HttpHandlerOptions,
1292
+ cb: (err: any, data?: CompleteAttachedFileUploadCommandOutput) => void
1293
+ ): void;
1248
1294
  createAgentStatus(
1249
1295
  args: CreateAgentStatusCommandInput,
1250
1296
  options?: __HttpHandlerOptions
@@ -1576,6 +1622,19 @@ export interface Connect {
1576
1622
  options: __HttpHandlerOptions,
1577
1623
  cb: (err: any, data?: DeactivateEvaluationFormCommandOutput) => void
1578
1624
  ): void;
1625
+ deleteAttachedFile(
1626
+ args: DeleteAttachedFileCommandInput,
1627
+ options?: __HttpHandlerOptions
1628
+ ): Promise<DeleteAttachedFileCommandOutput>;
1629
+ deleteAttachedFile(
1630
+ args: DeleteAttachedFileCommandInput,
1631
+ cb: (err: any, data?: DeleteAttachedFileCommandOutput) => void
1632
+ ): void;
1633
+ deleteAttachedFile(
1634
+ args: DeleteAttachedFileCommandInput,
1635
+ options: __HttpHandlerOptions,
1636
+ cb: (err: any, data?: DeleteAttachedFileCommandOutput) => void
1637
+ ): void;
1579
1638
  deleteContactEvaluation(
1580
1639
  args: DeleteContactEvaluationCommandInput,
1581
1640
  options?: __HttpHandlerOptions
@@ -2374,6 +2433,19 @@ export interface Connect {
2374
2433
  options: __HttpHandlerOptions,
2375
2434
  cb: (err: any, data?: DismissUserContactCommandOutput) => void
2376
2435
  ): void;
2436
+ getAttachedFile(
2437
+ args: GetAttachedFileCommandInput,
2438
+ options?: __HttpHandlerOptions
2439
+ ): Promise<GetAttachedFileCommandOutput>;
2440
+ getAttachedFile(
2441
+ args: GetAttachedFileCommandInput,
2442
+ cb: (err: any, data?: GetAttachedFileCommandOutput) => void
2443
+ ): void;
2444
+ getAttachedFile(
2445
+ args: GetAttachedFileCommandInput,
2446
+ options: __HttpHandlerOptions,
2447
+ cb: (err: any, data?: GetAttachedFileCommandOutput) => void
2448
+ ): void;
2377
2449
  getContactAttributes(
2378
2450
  args: GetContactAttributesCommandInput,
2379
2451
  options?: __HttpHandlerOptions
@@ -3364,6 +3436,19 @@ export interface Connect {
3364
3436
  options: __HttpHandlerOptions,
3365
3437
  cb: (err: any, data?: SendChatIntegrationEventCommandOutput) => void
3366
3438
  ): void;
3439
+ startAttachedFileUpload(
3440
+ args: StartAttachedFileUploadCommandInput,
3441
+ options?: __HttpHandlerOptions
3442
+ ): Promise<StartAttachedFileUploadCommandOutput>;
3443
+ startAttachedFileUpload(
3444
+ args: StartAttachedFileUploadCommandInput,
3445
+ cb: (err: any, data?: StartAttachedFileUploadCommandOutput) => void
3446
+ ): void;
3447
+ startAttachedFileUpload(
3448
+ args: StartAttachedFileUploadCommandInput,
3449
+ options: __HttpHandlerOptions,
3450
+ cb: (err: any, data?: StartAttachedFileUploadCommandOutput) => void
3451
+ ): void;
3367
3452
  startChatContact(
3368
3453
  args: StartChatContactCommandInput,
3369
3454
  options?: __HttpHandlerOptions
@@ -113,6 +113,10 @@ import {
113
113
  BatchDisassociateAnalyticsDataSetCommandInput,
114
114
  BatchDisassociateAnalyticsDataSetCommandOutput,
115
115
  } from "./commands/BatchDisassociateAnalyticsDataSetCommand";
116
+ import {
117
+ BatchGetAttachedFileMetadataCommandInput,
118
+ BatchGetAttachedFileMetadataCommandOutput,
119
+ } from "./commands/BatchGetAttachedFileMetadataCommand";
116
120
  import {
117
121
  BatchGetFlowAssociationCommandInput,
118
122
  BatchGetFlowAssociationCommandOutput,
@@ -125,6 +129,10 @@ import {
125
129
  ClaimPhoneNumberCommandInput,
126
130
  ClaimPhoneNumberCommandOutput,
127
131
  } from "./commands/ClaimPhoneNumberCommand";
132
+ import {
133
+ CompleteAttachedFileUploadCommandInput,
134
+ CompleteAttachedFileUploadCommandOutput,
135
+ } from "./commands/CompleteAttachedFileUploadCommand";
128
136
  import {
129
137
  CreateAgentStatusCommandInput,
130
138
  CreateAgentStatusCommandOutput,
@@ -225,6 +233,10 @@ import {
225
233
  DeactivateEvaluationFormCommandInput,
226
234
  DeactivateEvaluationFormCommandOutput,
227
235
  } from "./commands/DeactivateEvaluationFormCommand";
236
+ import {
237
+ DeleteAttachedFileCommandInput,
238
+ DeleteAttachedFileCommandOutput,
239
+ } from "./commands/DeleteAttachedFileCommand";
228
240
  import {
229
241
  DeleteContactEvaluationCommandInput,
230
242
  DeleteContactEvaluationCommandOutput,
@@ -465,6 +477,10 @@ import {
465
477
  DismissUserContactCommandInput,
466
478
  DismissUserContactCommandOutput,
467
479
  } from "./commands/DismissUserContactCommand";
480
+ import {
481
+ GetAttachedFileCommandInput,
482
+ GetAttachedFileCommandOutput,
483
+ } from "./commands/GetAttachedFileCommand";
468
484
  import {
469
485
  GetContactAttributesCommandInput,
470
486
  GetContactAttributesCommandOutput,
@@ -765,6 +781,10 @@ import {
765
781
  SendChatIntegrationEventCommandInput,
766
782
  SendChatIntegrationEventCommandOutput,
767
783
  } from "./commands/SendChatIntegrationEventCommand";
784
+ import {
785
+ StartAttachedFileUploadCommandInput,
786
+ StartAttachedFileUploadCommandOutput,
787
+ } from "./commands/StartAttachedFileUploadCommand";
768
788
  import {
769
789
  StartChatContactCommandInput,
770
790
  StartChatContactCommandOutput,
@@ -1042,9 +1062,11 @@ export type ServiceInputTypes =
1042
1062
  | AssociateUserProficienciesCommandInput
1043
1063
  | BatchAssociateAnalyticsDataSetCommandInput
1044
1064
  | BatchDisassociateAnalyticsDataSetCommandInput
1065
+ | BatchGetAttachedFileMetadataCommandInput
1045
1066
  | BatchGetFlowAssociationCommandInput
1046
1067
  | BatchPutContactCommandInput
1047
1068
  | ClaimPhoneNumberCommandInput
1069
+ | CompleteAttachedFileUploadCommandInput
1048
1070
  | CreateAgentStatusCommandInput
1049
1071
  | CreateContactFlowCommandInput
1050
1072
  | CreateContactFlowModuleCommandInput
@@ -1070,6 +1092,7 @@ export type ServiceInputTypes =
1070
1092
  | CreateViewVersionCommandInput
1071
1093
  | CreateVocabularyCommandInput
1072
1094
  | DeactivateEvaluationFormCommandInput
1095
+ | DeleteAttachedFileCommandInput
1073
1096
  | DeleteContactEvaluationCommandInput
1074
1097
  | DeleteContactFlowCommandInput
1075
1098
  | DeleteContactFlowModuleCommandInput
@@ -1130,6 +1153,7 @@ export type ServiceInputTypes =
1130
1153
  | DisassociateTrafficDistributionGroupUserCommandInput
1131
1154
  | DisassociateUserProficienciesCommandInput
1132
1155
  | DismissUserContactCommandInput
1156
+ | GetAttachedFileCommandInput
1133
1157
  | GetContactAttributesCommandInput
1134
1158
  | GetCurrentMetricDataCommandInput
1135
1159
  | GetCurrentUserDataCommandInput
@@ -1205,6 +1229,7 @@ export type ServiceInputTypes =
1205
1229
  | SearchUsersCommandInput
1206
1230
  | SearchVocabulariesCommandInput
1207
1231
  | SendChatIntegrationEventCommandInput
1232
+ | StartAttachedFileUploadCommandInput
1208
1233
  | StartChatContactCommandInput
1209
1234
  | StartContactEvaluationCommandInput
1210
1235
  | StartContactRecordingCommandInput
@@ -1286,9 +1311,11 @@ export type ServiceOutputTypes =
1286
1311
  | AssociateUserProficienciesCommandOutput
1287
1312
  | BatchAssociateAnalyticsDataSetCommandOutput
1288
1313
  | BatchDisassociateAnalyticsDataSetCommandOutput
1314
+ | BatchGetAttachedFileMetadataCommandOutput
1289
1315
  | BatchGetFlowAssociationCommandOutput
1290
1316
  | BatchPutContactCommandOutput
1291
1317
  | ClaimPhoneNumberCommandOutput
1318
+ | CompleteAttachedFileUploadCommandOutput
1292
1319
  | CreateAgentStatusCommandOutput
1293
1320
  | CreateContactFlowCommandOutput
1294
1321
  | CreateContactFlowModuleCommandOutput
@@ -1314,6 +1341,7 @@ export type ServiceOutputTypes =
1314
1341
  | CreateViewVersionCommandOutput
1315
1342
  | CreateVocabularyCommandOutput
1316
1343
  | DeactivateEvaluationFormCommandOutput
1344
+ | DeleteAttachedFileCommandOutput
1317
1345
  | DeleteContactEvaluationCommandOutput
1318
1346
  | DeleteContactFlowCommandOutput
1319
1347
  | DeleteContactFlowModuleCommandOutput
@@ -1374,6 +1402,7 @@ export type ServiceOutputTypes =
1374
1402
  | DisassociateTrafficDistributionGroupUserCommandOutput
1375
1403
  | DisassociateUserProficienciesCommandOutput
1376
1404
  | DismissUserContactCommandOutput
1405
+ | GetAttachedFileCommandOutput
1377
1406
  | GetContactAttributesCommandOutput
1378
1407
  | GetCurrentMetricDataCommandOutput
1379
1408
  | GetCurrentUserDataCommandOutput
@@ -1449,6 +1478,7 @@ export type ServiceOutputTypes =
1449
1478
  | SearchUsersCommandOutput
1450
1479
  | SearchVocabulariesCommandOutput
1451
1480
  | SendChatIntegrationEventCommandOutput
1481
+ | StartAttachedFileUploadCommandOutput
1452
1482
  | StartChatContactCommandOutput
1453
1483
  | StartContactEvaluationCommandOutput
1454
1484
  | StartContactRecordingCommandOutput
@@ -0,0 +1,39 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ ConnectClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../ConnectClient";
8
+ import {
9
+ BatchGetAttachedFileMetadataRequest,
10
+ BatchGetAttachedFileMetadataResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer, $Command };
13
+ export interface BatchGetAttachedFileMetadataCommandInput
14
+ extends BatchGetAttachedFileMetadataRequest {}
15
+ export interface BatchGetAttachedFileMetadataCommandOutput
16
+ extends BatchGetAttachedFileMetadataResponse,
17
+ __MetadataBearer {}
18
+ declare const BatchGetAttachedFileMetadataCommand_base: {
19
+ new (
20
+ input: BatchGetAttachedFileMetadataCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
22
+ BatchGetAttachedFileMetadataCommandInput,
23
+ BatchGetAttachedFileMetadataCommandOutput,
24
+ ConnectClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
27
+ >;
28
+ new (
29
+ __0_0: BatchGetAttachedFileMetadataCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ BatchGetAttachedFileMetadataCommandInput,
32
+ BatchGetAttachedFileMetadataCommandOutput,
33
+ ConnectClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
37
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
+ };
39
+ export declare class BatchGetAttachedFileMetadataCommand extends BatchGetAttachedFileMetadataCommand_base {}
@@ -0,0 +1,39 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ ConnectClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../ConnectClient";
8
+ import {
9
+ CompleteAttachedFileUploadRequest,
10
+ CompleteAttachedFileUploadResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer, $Command };
13
+ export interface CompleteAttachedFileUploadCommandInput
14
+ extends CompleteAttachedFileUploadRequest {}
15
+ export interface CompleteAttachedFileUploadCommandOutput
16
+ extends CompleteAttachedFileUploadResponse,
17
+ __MetadataBearer {}
18
+ declare const CompleteAttachedFileUploadCommand_base: {
19
+ new (
20
+ input: CompleteAttachedFileUploadCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
22
+ CompleteAttachedFileUploadCommandInput,
23
+ CompleteAttachedFileUploadCommandOutput,
24
+ ConnectClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
27
+ >;
28
+ new (
29
+ __0_0: CompleteAttachedFileUploadCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ CompleteAttachedFileUploadCommandInput,
32
+ CompleteAttachedFileUploadCommandOutput,
33
+ ConnectClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
37
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
+ };
39
+ export declare class CompleteAttachedFileUploadCommand extends CompleteAttachedFileUploadCommand_base {}
@@ -0,0 +1,39 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ ConnectClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../ConnectClient";
8
+ import {
9
+ DeleteAttachedFileRequest,
10
+ DeleteAttachedFileResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer, $Command };
13
+ export interface DeleteAttachedFileCommandInput
14
+ extends DeleteAttachedFileRequest {}
15
+ export interface DeleteAttachedFileCommandOutput
16
+ extends DeleteAttachedFileResponse,
17
+ __MetadataBearer {}
18
+ declare const DeleteAttachedFileCommand_base: {
19
+ new (
20
+ input: DeleteAttachedFileCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
22
+ DeleteAttachedFileCommandInput,
23
+ DeleteAttachedFileCommandOutput,
24
+ ConnectClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
27
+ >;
28
+ new (
29
+ __0_0: DeleteAttachedFileCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ DeleteAttachedFileCommandInput,
32
+ DeleteAttachedFileCommandOutput,
33
+ ConnectClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
37
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
+ };
39
+ export declare class DeleteAttachedFileCommand extends DeleteAttachedFileCommand_base {}
@@ -5,10 +5,8 @@ import {
5
5
  ServiceInputTypes,
6
6
  ServiceOutputTypes,
7
7
  } from "../ConnectClient";
8
- import {
9
- DescribeHoursOfOperationRequest,
10
- DescribeHoursOfOperationResponse,
11
- } from "../models/models_0";
8
+ import { DescribeHoursOfOperationRequest } from "../models/models_0";
9
+ import { DescribeHoursOfOperationResponse } from "../models/models_1";
12
10
  export { __MetadataBearer, $Command };
13
11
  export interface DescribeHoursOfOperationCommandInput
14
12
  extends DescribeHoursOfOperationRequest {}
@@ -8,7 +8,7 @@ import {
8
8
  import {
9
9
  DescribeInstanceAttributeRequest,
10
10
  DescribeInstanceAttributeResponse,
11
- } from "../models/models_0";
11
+ } from "../models/models_1";
12
12
  export { __MetadataBearer, $Command };
13
13
  export interface DescribeInstanceAttributeCommandInput
14
14
  extends DescribeInstanceAttributeRequest {}
@@ -8,7 +8,7 @@ import {
8
8
  import {
9
9
  DescribeInstanceRequest,
10
10
  DescribeInstanceResponse,
11
- } from "../models/models_0";
11
+ } from "../models/models_1";
12
12
  export { __MetadataBearer, $Command };
13
13
  export interface DescribeInstanceCommandInput extends DescribeInstanceRequest {}
14
14
  export interface DescribeInstanceCommandOutput
@@ -8,7 +8,7 @@ import {
8
8
  import {
9
9
  DescribeInstanceStorageConfigRequest,
10
10
  DescribeInstanceStorageConfigResponse,
11
- } from "../models/models_0";
11
+ } from "../models/models_1";
12
12
  export { __MetadataBearer, $Command };
13
13
  export interface DescribeInstanceStorageConfigCommandInput
14
14
  extends DescribeInstanceStorageConfigRequest {}
@@ -5,8 +5,10 @@ import {
5
5
  ServiceInputTypes,
6
6
  ServiceOutputTypes,
7
7
  } from "../ConnectClient";
8
- import { DescribePhoneNumberRequest } from "../models/models_0";
9
- import { DescribePhoneNumberResponse } from "../models/models_1";
8
+ import {
9
+ DescribePhoneNumberRequest,
10
+ DescribePhoneNumberResponse,
11
+ } from "../models/models_1";
10
12
  export { __MetadataBearer, $Command };
11
13
  export interface DescribePhoneNumberCommandInput
12
14
  extends DescribePhoneNumberRequest {}
@@ -0,0 +1,38 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ ConnectClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../ConnectClient";
8
+ import {
9
+ GetAttachedFileRequest,
10
+ GetAttachedFileResponse,
11
+ } from "../models/models_1";
12
+ export { __MetadataBearer, $Command };
13
+ export interface GetAttachedFileCommandInput extends GetAttachedFileRequest {}
14
+ export interface GetAttachedFileCommandOutput
15
+ extends GetAttachedFileResponse,
16
+ __MetadataBearer {}
17
+ declare const GetAttachedFileCommand_base: {
18
+ new (
19
+ input: GetAttachedFileCommandInput
20
+ ): import("@smithy/smithy-client").CommandImpl<
21
+ GetAttachedFileCommandInput,
22
+ GetAttachedFileCommandOutput,
23
+ ConnectClientResolvedConfig,
24
+ ServiceInputTypes,
25
+ ServiceOutputTypes
26
+ >;
27
+ new (
28
+ __0_0: GetAttachedFileCommandInput
29
+ ): import("@smithy/smithy-client").CommandImpl<
30
+ GetAttachedFileCommandInput,
31
+ GetAttachedFileCommandOutput,
32
+ ConnectClientResolvedConfig,
33
+ ServiceInputTypes,
34
+ ServiceOutputTypes
35
+ >;
36
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
37
+ };
38
+ export declare class GetAttachedFileCommand extends GetAttachedFileCommand_base {}
@@ -5,10 +5,8 @@ import {
5
5
  ServiceInputTypes,
6
6
  ServiceOutputTypes,
7
7
  } from "../ConnectClient";
8
- import {
9
- ReplicateInstanceRequest,
10
- ReplicateInstanceResponse,
11
- } from "../models/models_1";
8
+ import { ReplicateInstanceRequest } from "../models/models_1";
9
+ import { ReplicateInstanceResponse } from "../models/models_2";
12
10
  export { __MetadataBearer, $Command };
13
11
  export interface ReplicateInstanceCommandInput
14
12
  extends ReplicateInstanceRequest {}
@@ -8,7 +8,7 @@ import {
8
8
  import {
9
9
  ResumeContactRequest,
10
10
  ResumeContactResponse,
11
- } from "../models/models_1";
11
+ } from "../models/models_2";
12
12
  export { __MetadataBearer, $Command };
13
13
  export interface ResumeContactCommandInput extends ResumeContactRequest {}
14
14
  export interface ResumeContactCommandOutput
@@ -8,7 +8,7 @@ import {
8
8
  import {
9
9
  ResumeContactRecordingRequest,
10
10
  ResumeContactRecordingResponse,
11
- } from "../models/models_1";
11
+ } from "../models/models_2";
12
12
  export { __MetadataBearer, $Command };
13
13
  export interface ResumeContactRecordingCommandInput
14
14
  extends ResumeContactRecordingRequest {}
@@ -8,7 +8,7 @@ import {
8
8
  import {
9
9
  SearchAvailablePhoneNumbersRequest,
10
10
  SearchAvailablePhoneNumbersResponse,
11
- } from "../models/models_1";
11
+ } from "../models/models_2";
12
12
  export { __MetadataBearer, $Command };
13
13
  export interface SearchAvailablePhoneNumbersCommandInput
14
14
  extends SearchAvailablePhoneNumbersRequest {}
@@ -0,0 +1,39 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ ConnectClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../ConnectClient";
8
+ import {
9
+ StartAttachedFileUploadRequest,
10
+ StartAttachedFileUploadResponse,
11
+ } from "../models/models_2";
12
+ export { __MetadataBearer, $Command };
13
+ export interface StartAttachedFileUploadCommandInput
14
+ extends StartAttachedFileUploadRequest {}
15
+ export interface StartAttachedFileUploadCommandOutput
16
+ extends StartAttachedFileUploadResponse,
17
+ __MetadataBearer {}
18
+ declare const StartAttachedFileUploadCommand_base: {
19
+ new (
20
+ input: StartAttachedFileUploadCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
22
+ StartAttachedFileUploadCommandInput,
23
+ StartAttachedFileUploadCommandOutput,
24
+ ConnectClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
27
+ >;
28
+ new (
29
+ __0_0: StartAttachedFileUploadCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ StartAttachedFileUploadCommandInput,
32
+ StartAttachedFileUploadCommandOutput,
33
+ ConnectClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
37
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
+ };
39
+ export declare class StartAttachedFileUploadCommand extends StartAttachedFileUploadCommand_base {}
@@ -15,9 +15,11 @@ export * from "./AssociateTrafficDistributionGroupUserCommand";
15
15
  export * from "./AssociateUserProficienciesCommand";
16
16
  export * from "./BatchAssociateAnalyticsDataSetCommand";
17
17
  export * from "./BatchDisassociateAnalyticsDataSetCommand";
18
+ export * from "./BatchGetAttachedFileMetadataCommand";
18
19
  export * from "./BatchGetFlowAssociationCommand";
19
20
  export * from "./BatchPutContactCommand";
20
21
  export * from "./ClaimPhoneNumberCommand";
22
+ export * from "./CompleteAttachedFileUploadCommand";
21
23
  export * from "./CreateAgentStatusCommand";
22
24
  export * from "./CreateContactFlowCommand";
23
25
  export * from "./CreateContactFlowModuleCommand";
@@ -43,6 +45,7 @@ export * from "./CreateViewCommand";
43
45
  export * from "./CreateViewVersionCommand";
44
46
  export * from "./CreateVocabularyCommand";
45
47
  export * from "./DeactivateEvaluationFormCommand";
48
+ export * from "./DeleteAttachedFileCommand";
46
49
  export * from "./DeleteContactEvaluationCommand";
47
50
  export * from "./DeleteContactFlowCommand";
48
51
  export * from "./DeleteContactFlowModuleCommand";
@@ -103,6 +106,7 @@ export * from "./DisassociateSecurityKeyCommand";
103
106
  export * from "./DisassociateTrafficDistributionGroupUserCommand";
104
107
  export * from "./DisassociateUserProficienciesCommand";
105
108
  export * from "./DismissUserContactCommand";
109
+ export * from "./GetAttachedFileCommand";
106
110
  export * from "./GetContactAttributesCommand";
107
111
  export * from "./GetCurrentMetricDataCommand";
108
112
  export * from "./GetCurrentUserDataCommand";
@@ -178,6 +182,7 @@ export * from "./SearchSecurityProfilesCommand";
178
182
  export * from "./SearchUsersCommand";
179
183
  export * from "./SearchVocabulariesCommand";
180
184
  export * from "./SendChatIntegrationEventCommand";
185
+ export * from "./StartAttachedFileUploadCommand";
181
186
  export * from "./StartChatContactCommand";
182
187
  export * from "./StartContactEvaluationCommand";
183
188
  export * from "./StartContactRecordingCommand";