@aws-sdk/client-connect 3.693.0 → 3.696.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 (47) hide show
  1. package/README.md +16 -0
  2. package/dist-cjs/index.js +134 -3
  3. package/dist-es/Connect.js +4 -0
  4. package/dist-es/commands/CreateContactFlowVersionCommand.js +22 -0
  5. package/dist-es/commands/ListContactFlowVersionsCommand.js +22 -0
  6. package/dist-es/commands/index.js +2 -0
  7. package/dist-es/models/models_0.js +1 -0
  8. package/dist-es/pagination/ListContactFlowVersionsPaginator.js +4 -0
  9. package/dist-es/pagination/index.js +1 -0
  10. package/dist-es/protocols/Aws_restJson1.js +92 -2
  11. package/dist-types/Connect.d.ts +14 -0
  12. package/dist-types/ConnectClient.d.ts +4 -2
  13. package/dist-types/commands/AssociateTrafficDistributionGroupUserCommand.d.ts +2 -2
  14. package/dist-types/commands/CreateContactFlowCommand.d.ts +1 -0
  15. package/dist-types/commands/CreateContactFlowVersionCommand.d.ts +103 -0
  16. package/dist-types/commands/CreateIntegrationAssociationCommand.d.ts +1 -1
  17. package/dist-types/commands/DescribeContactFlowCommand.d.ts +6 -0
  18. package/dist-types/commands/DisassociateTrafficDistributionGroupUserCommand.d.ts +2 -2
  19. package/dist-types/commands/ListContactFlowVersionsCommand.d.ts +100 -0
  20. package/dist-types/commands/ListIntegrationAssociationsCommand.d.ts +2 -2
  21. package/dist-types/commands/ListSecurityProfilePermissionsCommand.d.ts +2 -1
  22. package/dist-types/commands/ListSecurityProfilesCommand.d.ts +1 -1
  23. package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -2
  24. package/dist-types/commands/SearchContactFlowsCommand.d.ts +6 -0
  25. package/dist-types/commands/StartScreenSharingCommand.d.ts +2 -1
  26. package/dist-types/commands/index.d.ts +2 -0
  27. package/dist-types/models/models_0.d.ts +68 -38
  28. package/dist-types/models/models_1.d.ts +192 -146
  29. package/dist-types/models/models_2.d.ts +107 -2
  30. package/dist-types/pagination/ListContactFlowVersionsPaginator.d.ts +7 -0
  31. package/dist-types/pagination/index.d.ts +1 -0
  32. package/dist-types/protocols/Aws_restJson1.d.ts +18 -0
  33. package/dist-types/ts3.4/Connect.d.ts +34 -0
  34. package/dist-types/ts3.4/ConnectClient.d.ts +12 -0
  35. package/dist-types/ts3.4/commands/CreateContactFlowVersionCommand.d.ts +51 -0
  36. package/dist-types/ts3.4/commands/ListContactFlowVersionsCommand.d.ts +51 -0
  37. package/dist-types/ts3.4/commands/ListSecurityProfilePermissionsCommand.d.ts +2 -4
  38. package/dist-types/ts3.4/commands/ListSecurityProfilesCommand.d.ts +1 -1
  39. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +4 -2
  40. package/dist-types/ts3.4/commands/index.d.ts +2 -0
  41. package/dist-types/ts3.4/models/models_0.d.ts +14 -7
  42. package/dist-types/ts3.4/models/models_1.d.ts +29 -26
  43. package/dist-types/ts3.4/models/models_2.d.ts +26 -1
  44. package/dist-types/ts3.4/pagination/ListContactFlowVersionsPaginator.d.ts +11 -0
  45. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  46. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +24 -0
  47. package/package.json +35 -35
@@ -99,6 +99,10 @@ import {
99
99
  CreateContactFlowModuleCommandInput,
100
100
  CreateContactFlowModuleCommandOutput,
101
101
  } from "./commands/CreateContactFlowModuleCommand";
102
+ import {
103
+ CreateContactFlowVersionCommandInput,
104
+ CreateContactFlowVersionCommandOutput,
105
+ } from "./commands/CreateContactFlowVersionCommand";
102
106
  import {
103
107
  CreateEvaluationFormCommandInput,
104
108
  CreateEvaluationFormCommandOutput,
@@ -515,6 +519,10 @@ import {
515
519
  ListContactFlowsCommandInput,
516
520
  ListContactFlowsCommandOutput,
517
521
  } from "./commands/ListContactFlowsCommand";
522
+ import {
523
+ ListContactFlowVersionsCommandInput,
524
+ ListContactFlowVersionsCommandOutput,
525
+ } from "./commands/ListContactFlowVersionsCommand";
518
526
  import {
519
527
  ListContactReferencesCommandInput,
520
528
  ListContactReferencesCommandOutput,
@@ -1366,6 +1374,19 @@ export interface Connect {
1366
1374
  options: __HttpHandlerOptions,
1367
1375
  cb: (err: any, data?: CreateContactFlowModuleCommandOutput) => void
1368
1376
  ): void;
1377
+ createContactFlowVersion(
1378
+ args: CreateContactFlowVersionCommandInput,
1379
+ options?: __HttpHandlerOptions
1380
+ ): Promise<CreateContactFlowVersionCommandOutput>;
1381
+ createContactFlowVersion(
1382
+ args: CreateContactFlowVersionCommandInput,
1383
+ cb: (err: any, data?: CreateContactFlowVersionCommandOutput) => void
1384
+ ): void;
1385
+ createContactFlowVersion(
1386
+ args: CreateContactFlowVersionCommandInput,
1387
+ options: __HttpHandlerOptions,
1388
+ cb: (err: any, data?: CreateContactFlowVersionCommandOutput) => void
1389
+ ): void;
1369
1390
  createEvaluationForm(
1370
1391
  args: CreateEvaluationFormCommandInput,
1371
1392
  options?: __HttpHandlerOptions
@@ -2742,6 +2763,19 @@ export interface Connect {
2742
2763
  options: __HttpHandlerOptions,
2743
2764
  cb: (err: any, data?: ListContactFlowsCommandOutput) => void
2744
2765
  ): void;
2766
+ listContactFlowVersions(
2767
+ args: ListContactFlowVersionsCommandInput,
2768
+ options?: __HttpHandlerOptions
2769
+ ): Promise<ListContactFlowVersionsCommandOutput>;
2770
+ listContactFlowVersions(
2771
+ args: ListContactFlowVersionsCommandInput,
2772
+ cb: (err: any, data?: ListContactFlowVersionsCommandOutput) => void
2773
+ ): void;
2774
+ listContactFlowVersions(
2775
+ args: ListContactFlowVersionsCommandInput,
2776
+ options: __HttpHandlerOptions,
2777
+ cb: (err: any, data?: ListContactFlowVersionsCommandOutput) => void
2778
+ ): void;
2745
2779
  listContactReferences(
2746
2780
  args: ListContactReferencesCommandInput,
2747
2781
  options?: __HttpHandlerOptions
@@ -145,6 +145,10 @@ import {
145
145
  CreateContactFlowModuleCommandInput,
146
146
  CreateContactFlowModuleCommandOutput,
147
147
  } from "./commands/CreateContactFlowModuleCommand";
148
+ import {
149
+ CreateContactFlowVersionCommandInput,
150
+ CreateContactFlowVersionCommandOutput,
151
+ } from "./commands/CreateContactFlowVersionCommand";
148
152
  import {
149
153
  CreateEvaluationFormCommandInput,
150
154
  CreateEvaluationFormCommandOutput,
@@ -561,6 +565,10 @@ import {
561
565
  ListContactFlowsCommandInput,
562
566
  ListContactFlowsCommandOutput,
563
567
  } from "./commands/ListContactFlowsCommand";
568
+ import {
569
+ ListContactFlowVersionsCommandInput,
570
+ ListContactFlowVersionsCommandOutput,
571
+ } from "./commands/ListContactFlowVersionsCommand";
564
572
  import {
565
573
  ListContactReferencesCommandInput,
566
574
  ListContactReferencesCommandOutput,
@@ -1106,6 +1114,7 @@ export type ServiceInputTypes =
1106
1114
  | CreateAgentStatusCommandInput
1107
1115
  | CreateContactFlowCommandInput
1108
1116
  | CreateContactFlowModuleCommandInput
1117
+ | CreateContactFlowVersionCommandInput
1109
1118
  | CreateEvaluationFormCommandInput
1110
1119
  | CreateHoursOfOperationCommandInput
1111
1120
  | CreateInstanceCommandInput
@@ -1209,6 +1218,7 @@ export type ServiceInputTypes =
1209
1218
  | ListBotsCommandInput
1210
1219
  | ListContactEvaluationsCommandInput
1211
1220
  | ListContactFlowModulesCommandInput
1221
+ | ListContactFlowVersionsCommandInput
1212
1222
  | ListContactFlowsCommandInput
1213
1223
  | ListContactReferencesCommandInput
1214
1224
  | ListDefaultVocabulariesCommandInput
@@ -1364,6 +1374,7 @@ export type ServiceOutputTypes =
1364
1374
  | CreateAgentStatusCommandOutput
1365
1375
  | CreateContactFlowCommandOutput
1366
1376
  | CreateContactFlowModuleCommandOutput
1377
+ | CreateContactFlowVersionCommandOutput
1367
1378
  | CreateEvaluationFormCommandOutput
1368
1379
  | CreateHoursOfOperationCommandOutput
1369
1380
  | CreateInstanceCommandOutput
@@ -1467,6 +1478,7 @@ export type ServiceOutputTypes =
1467
1478
  | ListBotsCommandOutput
1468
1479
  | ListContactEvaluationsCommandOutput
1469
1480
  | ListContactFlowModulesCommandOutput
1481
+ | ListContactFlowVersionsCommandOutput
1470
1482
  | ListContactFlowsCommandOutput
1471
1483
  | ListContactReferencesCommandOutput
1472
1484
  | ListDefaultVocabulariesCommandOutput
@@ -0,0 +1,51 @@
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
+ CreateContactFlowVersionRequest,
10
+ CreateContactFlowVersionResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface CreateContactFlowVersionCommandInput
15
+ extends CreateContactFlowVersionRequest {}
16
+ export interface CreateContactFlowVersionCommandOutput
17
+ extends CreateContactFlowVersionResponse,
18
+ __MetadataBearer {}
19
+ declare const CreateContactFlowVersionCommand_base: {
20
+ new (
21
+ input: CreateContactFlowVersionCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ CreateContactFlowVersionCommandInput,
24
+ CreateContactFlowVersionCommandOutput,
25
+ ConnectClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ __0_0: CreateContactFlowVersionCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ CreateContactFlowVersionCommandInput,
33
+ CreateContactFlowVersionCommandOutput,
34
+ ConnectClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class CreateContactFlowVersionCommand extends CreateContactFlowVersionCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: CreateContactFlowVersionRequest;
44
+ output: CreateContactFlowVersionResponse;
45
+ };
46
+ sdk: {
47
+ input: CreateContactFlowVersionCommandInput;
48
+ output: CreateContactFlowVersionCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,51 @@
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
+ ListContactFlowVersionsRequest,
10
+ ListContactFlowVersionsResponse,
11
+ } from "../models/models_1";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface ListContactFlowVersionsCommandInput
15
+ extends ListContactFlowVersionsRequest {}
16
+ export interface ListContactFlowVersionsCommandOutput
17
+ extends ListContactFlowVersionsResponse,
18
+ __MetadataBearer {}
19
+ declare const ListContactFlowVersionsCommand_base: {
20
+ new (
21
+ input: ListContactFlowVersionsCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ ListContactFlowVersionsCommandInput,
24
+ ListContactFlowVersionsCommandOutput,
25
+ ConnectClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ __0_0: ListContactFlowVersionsCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ ListContactFlowVersionsCommandInput,
33
+ ListContactFlowVersionsCommandOutput,
34
+ ConnectClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class ListContactFlowVersionsCommand extends ListContactFlowVersionsCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: ListContactFlowVersionsRequest;
44
+ output: ListContactFlowVersionsResponse;
45
+ };
46
+ sdk: {
47
+ input: ListContactFlowVersionsCommandInput;
48
+ output: ListContactFlowVersionsCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -5,10 +5,8 @@ import {
5
5
  ServiceInputTypes,
6
6
  ServiceOutputTypes,
7
7
  } from "../ConnectClient";
8
- import {
9
- ListSecurityProfilePermissionsRequest,
10
- ListSecurityProfilePermissionsResponse,
11
- } from "../models/models_1";
8
+ import { ListSecurityProfilePermissionsRequest } from "../models/models_1";
9
+ import { ListSecurityProfilePermissionsResponse } from "../models/models_2";
12
10
  export { __MetadataBearer };
13
11
  export { $Command };
14
12
  export interface ListSecurityProfilePermissionsCommandInput
@@ -8,7 +8,7 @@ import {
8
8
  import {
9
9
  ListSecurityProfilesRequest,
10
10
  ListSecurityProfilesResponse,
11
- } from "../models/models_1";
11
+ } from "../models/models_2";
12
12
  export { __MetadataBearer };
13
13
  export { $Command };
14
14
  export interface ListSecurityProfilesCommandInput
@@ -5,8 +5,10 @@ import {
5
5
  ServiceInputTypes,
6
6
  ServiceOutputTypes,
7
7
  } from "../ConnectClient";
8
- import { ListTagsForResourceRequest } from "../models/models_1";
9
- import { ListTagsForResourceResponse } from "../models/models_2";
8
+ import {
9
+ ListTagsForResourceRequest,
10
+ ListTagsForResourceResponse,
11
+ } from "../models/models_2";
10
12
  export { __MetadataBearer };
11
13
  export { $Command };
12
14
  export interface ListTagsForResourceCommandInput
@@ -23,6 +23,7 @@ export * from "./CompleteAttachedFileUploadCommand";
23
23
  export * from "./CreateAgentStatusCommand";
24
24
  export * from "./CreateContactFlowCommand";
25
25
  export * from "./CreateContactFlowModuleCommand";
26
+ export * from "./CreateContactFlowVersionCommand";
26
27
  export * from "./CreateEvaluationFormCommand";
27
28
  export * from "./CreateHoursOfOperationCommand";
28
29
  export * from "./CreateInstanceCommand";
@@ -126,6 +127,7 @@ export * from "./ListAuthenticationProfilesCommand";
126
127
  export * from "./ListBotsCommand";
127
128
  export * from "./ListContactEvaluationsCommand";
128
129
  export * from "./ListContactFlowModulesCommand";
130
+ export * from "./ListContactFlowVersionsCommand";
129
131
  export * from "./ListContactFlowsCommand";
130
132
  export * from "./ListContactReferencesCommand";
131
133
  export * from "./ListDefaultVocabulariesCommand";
@@ -757,6 +757,7 @@ export interface CreateContactFlowRequest {
757
757
  export interface CreateContactFlowResponse {
758
758
  ContactFlowId?: string | undefined;
759
759
  ContactFlowArn?: string | undefined;
760
+ FlowContentSha256?: string | undefined;
760
761
  }
761
762
  export interface ProblemDetail {
762
763
  message?: string | undefined;
@@ -792,6 +793,18 @@ export declare class InvalidContactFlowModuleException extends __BaseException {
792
793
  >
793
794
  );
794
795
  }
796
+ export interface CreateContactFlowVersionRequest {
797
+ InstanceId: string | undefined;
798
+ Description?: string | undefined;
799
+ ContactFlowId: string | undefined;
800
+ FlowContentSha256?: string | undefined;
801
+ LastModifiedTime?: Date | undefined;
802
+ LastModifiedRegion?: string | undefined;
803
+ }
804
+ export interface CreateContactFlowVersionResponse {
805
+ ContactFlowArn?: string | undefined;
806
+ Version?: number | undefined;
807
+ }
795
808
  export declare const EvaluationFormQuestionType: {
796
809
  readonly NUMERIC: "NUMERIC";
797
810
  readonly SINGLESELECT: "SINGLESELECT";
@@ -1016,6 +1029,7 @@ export declare const IntegrationType: {
1016
1029
  readonly EVENT: "EVENT";
1017
1030
  readonly FILE_SCANNER: "FILE_SCANNER";
1018
1031
  readonly PINPOINT_APP: "PINPOINT_APP";
1032
+ readonly Q_MESSAGE_TEMPLATES: "Q_MESSAGE_TEMPLATES";
1019
1033
  readonly VOICE_ID: "VOICE_ID";
1020
1034
  readonly WISDOM_ASSISTANT: "WISDOM_ASSISTANT";
1021
1035
  readonly WISDOM_KNOWLEDGE_BASE: "WISDOM_KNOWLEDGE_BASE";
@@ -1799,13 +1813,6 @@ export interface QueueInfo {
1799
1813
  Id?: string | undefined;
1800
1814
  EnqueueTimestamp?: Date | undefined;
1801
1815
  }
1802
- export interface Expiry {
1803
- DurationInSeconds?: number | undefined;
1804
- ExpiryTimestamp?: Date | undefined;
1805
- }
1806
- export interface MatchCriteria {
1807
- AgentsCriteria?: AgentsCriteria | undefined;
1808
- }
1809
1816
  export declare const CreateInstanceRequestFilterSensitiveLog: (
1810
1817
  obj: CreateInstanceRequest
1811
1818
  ) => any;
@@ -5,6 +5,7 @@ import {
5
5
  AgentAvailabilityTimer,
6
6
  AgentConfig,
7
7
  AgentContactReference,
8
+ AgentsCriteria,
8
9
  AgentStatusReference,
9
10
  AgentStatusSummary,
10
11
  AgentStatusType,
@@ -29,7 +30,6 @@ import {
29
30
  LexBot,
30
31
  LexV2Bot,
31
32
  ListFlowAssociationResourceType,
32
- MatchCriteria,
33
33
  MediaConcurrency,
34
34
  OutboundCallerConfig,
35
35
  ParticipantRole,
@@ -53,6 +53,13 @@ import {
53
53
  VocabularyLanguageCode,
54
54
  VocabularyState,
55
55
  } from "./models_0";
56
+ export interface Expiry {
57
+ DurationInSeconds?: number | undefined;
58
+ ExpiryTimestamp?: Date | undefined;
59
+ }
60
+ export interface MatchCriteria {
61
+ AgentsCriteria?: AgentsCriteria | undefined;
62
+ }
56
63
  export interface AttributeCondition {
57
64
  Name?: string | undefined;
58
65
  Value?: string | undefined;
@@ -183,6 +190,12 @@ export interface ContactFlow {
183
190
  Description?: string | undefined;
184
191
  Content?: string | undefined;
185
192
  Tags?: Record<string, string> | undefined;
193
+ IsDefault?: boolean | undefined;
194
+ FlowContentSha256?: string | undefined;
195
+ Version?: number | undefined;
196
+ VersionDescription?: string | undefined;
197
+ LastModifiedTime?: Date | undefined;
198
+ LastModifiedRegion?: string | undefined;
186
199
  }
187
200
  export interface DescribeContactFlowResponse {
188
201
  ContactFlow?: ContactFlow | undefined;
@@ -1447,6 +1460,21 @@ export interface ListContactFlowsResponse {
1447
1460
  ContactFlowSummaryList?: ContactFlowSummary[] | undefined;
1448
1461
  NextToken?: string | undefined;
1449
1462
  }
1463
+ export interface ListContactFlowVersionsRequest {
1464
+ InstanceId: string | undefined;
1465
+ ContactFlowId: string | undefined;
1466
+ NextToken?: string | undefined;
1467
+ MaxResults?: number | undefined;
1468
+ }
1469
+ export interface ContactFlowVersionSummary {
1470
+ Arn?: string | undefined;
1471
+ VersionDescription?: string | undefined;
1472
+ Version?: number | undefined;
1473
+ }
1474
+ export interface ListContactFlowVersionsResponse {
1475
+ ContactFlowVersionSummaryList?: ContactFlowVersionSummary[] | undefined;
1476
+ NextToken?: string | undefined;
1477
+ }
1450
1478
  export interface ListContactReferencesRequest {
1451
1479
  InstanceId: string | undefined;
1452
1480
  ContactId: string | undefined;
@@ -2218,31 +2246,6 @@ export interface ListSecurityProfilePermissionsRequest {
2218
2246
  NextToken?: string | undefined;
2219
2247
  MaxResults?: number | undefined;
2220
2248
  }
2221
- export interface ListSecurityProfilePermissionsResponse {
2222
- Permissions?: string[] | undefined;
2223
- NextToken?: string | undefined;
2224
- LastModifiedTime?: Date | undefined;
2225
- LastModifiedRegion?: string | undefined;
2226
- }
2227
- export interface ListSecurityProfilesRequest {
2228
- InstanceId: string | undefined;
2229
- NextToken?: string | undefined;
2230
- MaxResults?: number | undefined;
2231
- }
2232
- export interface SecurityProfileSummary {
2233
- Id?: string | undefined;
2234
- Arn?: string | undefined;
2235
- Name?: string | undefined;
2236
- LastModifiedTime?: Date | undefined;
2237
- LastModifiedRegion?: string | undefined;
2238
- }
2239
- export interface ListSecurityProfilesResponse {
2240
- SecurityProfileSummaryList?: SecurityProfileSummary[] | undefined;
2241
- NextToken?: string | undefined;
2242
- }
2243
- export interface ListTagsForResourceRequest {
2244
- resourceArn: string | undefined;
2245
- }
2246
2249
  export declare const InstanceFilterSensitiveLog: (obj: Instance) => any;
2247
2250
  export declare const DescribeInstanceResponseFilterSensitiveLog: (
2248
2251
  obj: DescribeInstanceResponse
@@ -24,7 +24,6 @@ import {
24
24
  Endpoint,
25
25
  EvaluationFormQuestion,
26
26
  EvaluationFormScoringStrategy,
27
- Expiry,
28
27
  FileStatusType,
29
28
  FileUseCaseType,
30
29
  HoursOfOperationConfig,
@@ -71,6 +70,7 @@ import {
71
70
  EvaluationAnswerData,
72
71
  EvaluationFormVersionStatus,
73
72
  EvaluationNote,
73
+ Expiry,
74
74
  HierarchyGroup,
75
75
  HierarchyGroupSummary,
76
76
  HoursOfOperation,
@@ -91,6 +91,31 @@ import {
91
91
  TrafficDistributionGroupStatus,
92
92
  WisdomInfo,
93
93
  } from "./models_1";
94
+ export interface ListSecurityProfilePermissionsResponse {
95
+ Permissions?: string[] | undefined;
96
+ NextToken?: string | undefined;
97
+ LastModifiedTime?: Date | undefined;
98
+ LastModifiedRegion?: string | undefined;
99
+ }
100
+ export interface ListSecurityProfilesRequest {
101
+ InstanceId: string | undefined;
102
+ NextToken?: string | undefined;
103
+ MaxResults?: number | undefined;
104
+ }
105
+ export interface SecurityProfileSummary {
106
+ Id?: string | undefined;
107
+ Arn?: string | undefined;
108
+ Name?: string | undefined;
109
+ LastModifiedTime?: Date | undefined;
110
+ LastModifiedRegion?: string | undefined;
111
+ }
112
+ export interface ListSecurityProfilesResponse {
113
+ SecurityProfileSummaryList?: SecurityProfileSummary[] | undefined;
114
+ NextToken?: string | undefined;
115
+ }
116
+ export interface ListTagsForResourceRequest {
117
+ resourceArn: string | undefined;
118
+ }
94
119
  export interface ListTagsForResourceResponse {
95
120
  tags?: Record<string, string> | undefined;
96
121
  }
@@ -0,0 +1,11 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import {
3
+ ListContactFlowVersionsCommandInput,
4
+ ListContactFlowVersionsCommandOutput,
5
+ } from "../commands/ListContactFlowVersionsCommand";
6
+ import { ConnectPaginationConfiguration } from "./Interfaces";
7
+ export declare const paginateListContactFlowVersions: (
8
+ config: ConnectPaginationConfiguration,
9
+ input: ListContactFlowVersionsCommandInput,
10
+ ...rest: any[]
11
+ ) => Paginator<ListContactFlowVersionsCommandOutput>;
@@ -9,6 +9,7 @@ export * from "./ListAuthenticationProfilesPaginator";
9
9
  export * from "./ListBotsPaginator";
10
10
  export * from "./ListContactEvaluationsPaginator";
11
11
  export * from "./ListContactFlowModulesPaginator";
12
+ export * from "./ListContactFlowVersionsPaginator";
12
13
  export * from "./ListContactFlowsPaginator";
13
14
  export * from "./ListContactReferencesPaginator";
14
15
  export * from "./ListDefaultVocabulariesPaginator";
@@ -103,6 +103,10 @@ import {
103
103
  CreateContactFlowModuleCommandInput,
104
104
  CreateContactFlowModuleCommandOutput,
105
105
  } from "../commands/CreateContactFlowModuleCommand";
106
+ import {
107
+ CreateContactFlowVersionCommandInput,
108
+ CreateContactFlowVersionCommandOutput,
109
+ } from "../commands/CreateContactFlowVersionCommand";
106
110
  import {
107
111
  CreateEvaluationFormCommandInput,
108
112
  CreateEvaluationFormCommandOutput,
@@ -519,6 +523,10 @@ import {
519
523
  ListContactFlowsCommandInput,
520
524
  ListContactFlowsCommandOutput,
521
525
  } from "../commands/ListContactFlowsCommand";
526
+ import {
527
+ ListContactFlowVersionsCommandInput,
528
+ ListContactFlowVersionsCommandOutput,
529
+ } from "../commands/ListContactFlowVersionsCommand";
522
530
  import {
523
531
  ListContactReferencesCommandInput,
524
532
  ListContactReferencesCommandOutput,
@@ -1131,6 +1139,10 @@ export declare const se_CreateContactFlowModuleCommand: (
1131
1139
  input: CreateContactFlowModuleCommandInput,
1132
1140
  context: __SerdeContext
1133
1141
  ) => Promise<__HttpRequest>;
1142
+ export declare const se_CreateContactFlowVersionCommand: (
1143
+ input: CreateContactFlowVersionCommandInput,
1144
+ context: __SerdeContext
1145
+ ) => Promise<__HttpRequest>;
1134
1146
  export declare const se_CreateEvaluationFormCommand: (
1135
1147
  input: CreateEvaluationFormCommandInput,
1136
1148
  context: __SerdeContext
@@ -1547,6 +1559,10 @@ export declare const se_ListContactFlowsCommand: (
1547
1559
  input: ListContactFlowsCommandInput,
1548
1560
  context: __SerdeContext
1549
1561
  ) => Promise<__HttpRequest>;
1562
+ export declare const se_ListContactFlowVersionsCommand: (
1563
+ input: ListContactFlowVersionsCommandInput,
1564
+ context: __SerdeContext
1565
+ ) => Promise<__HttpRequest>;
1550
1566
  export declare const se_ListContactReferencesCommand: (
1551
1567
  input: ListContactReferencesCommandInput,
1552
1568
  context: __SerdeContext
@@ -2159,6 +2175,10 @@ export declare const de_CreateContactFlowModuleCommand: (
2159
2175
  output: __HttpResponse,
2160
2176
  context: __SerdeContext
2161
2177
  ) => Promise<CreateContactFlowModuleCommandOutput>;
2178
+ export declare const de_CreateContactFlowVersionCommand: (
2179
+ output: __HttpResponse,
2180
+ context: __SerdeContext
2181
+ ) => Promise<CreateContactFlowVersionCommandOutput>;
2162
2182
  export declare const de_CreateEvaluationFormCommand: (
2163
2183
  output: __HttpResponse,
2164
2184
  context: __SerdeContext
@@ -2575,6 +2595,10 @@ export declare const de_ListContactFlowsCommand: (
2575
2595
  output: __HttpResponse,
2576
2596
  context: __SerdeContext
2577
2597
  ) => Promise<ListContactFlowsCommandOutput>;
2598
+ export declare const de_ListContactFlowVersionsCommand: (
2599
+ output: __HttpResponse,
2600
+ context: __SerdeContext
2601
+ ) => Promise<ListContactFlowVersionsCommandOutput>;
2578
2602
  export declare const de_ListContactReferencesCommand: (
2579
2603
  output: __HttpResponse,
2580
2604
  context: __SerdeContext
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-connect",
3
3
  "description": "AWS SDK for JavaScript Connect Client for Node.js, Browser and React Native",
4
- "version": "3.693.0",
4
+ "version": "3.696.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-connect",
@@ -20,43 +20,43 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
- "@aws-sdk/client-sso-oidc": "3.693.0",
24
- "@aws-sdk/client-sts": "3.693.0",
25
- "@aws-sdk/core": "3.693.0",
26
- "@aws-sdk/credential-provider-node": "3.693.0",
27
- "@aws-sdk/middleware-host-header": "3.693.0",
28
- "@aws-sdk/middleware-logger": "3.693.0",
29
- "@aws-sdk/middleware-recursion-detection": "3.693.0",
30
- "@aws-sdk/middleware-user-agent": "3.693.0",
31
- "@aws-sdk/region-config-resolver": "3.693.0",
32
- "@aws-sdk/types": "3.692.0",
33
- "@aws-sdk/util-endpoints": "3.693.0",
34
- "@aws-sdk/util-user-agent-browser": "3.693.0",
35
- "@aws-sdk/util-user-agent-node": "3.693.0",
36
- "@smithy/config-resolver": "^3.0.11",
37
- "@smithy/core": "^2.5.2",
38
- "@smithy/fetch-http-handler": "^4.1.0",
39
- "@smithy/hash-node": "^3.0.9",
40
- "@smithy/invalid-dependency": "^3.0.9",
41
- "@smithy/middleware-content-length": "^3.0.11",
42
- "@smithy/middleware-endpoint": "^3.2.2",
43
- "@smithy/middleware-retry": "^3.0.26",
44
- "@smithy/middleware-serde": "^3.0.9",
45
- "@smithy/middleware-stack": "^3.0.9",
46
- "@smithy/node-config-provider": "^3.1.10",
47
- "@smithy/node-http-handler": "^3.3.0",
48
- "@smithy/protocol-http": "^4.1.6",
49
- "@smithy/smithy-client": "^3.4.3",
50
- "@smithy/types": "^3.7.0",
51
- "@smithy/url-parser": "^3.0.9",
23
+ "@aws-sdk/client-sso-oidc": "3.696.0",
24
+ "@aws-sdk/client-sts": "3.696.0",
25
+ "@aws-sdk/core": "3.696.0",
26
+ "@aws-sdk/credential-provider-node": "3.696.0",
27
+ "@aws-sdk/middleware-host-header": "3.696.0",
28
+ "@aws-sdk/middleware-logger": "3.696.0",
29
+ "@aws-sdk/middleware-recursion-detection": "3.696.0",
30
+ "@aws-sdk/middleware-user-agent": "3.696.0",
31
+ "@aws-sdk/region-config-resolver": "3.696.0",
32
+ "@aws-sdk/types": "3.696.0",
33
+ "@aws-sdk/util-endpoints": "3.696.0",
34
+ "@aws-sdk/util-user-agent-browser": "3.696.0",
35
+ "@aws-sdk/util-user-agent-node": "3.696.0",
36
+ "@smithy/config-resolver": "^3.0.12",
37
+ "@smithy/core": "^2.5.3",
38
+ "@smithy/fetch-http-handler": "^4.1.1",
39
+ "@smithy/hash-node": "^3.0.10",
40
+ "@smithy/invalid-dependency": "^3.0.10",
41
+ "@smithy/middleware-content-length": "^3.0.12",
42
+ "@smithy/middleware-endpoint": "^3.2.3",
43
+ "@smithy/middleware-retry": "^3.0.27",
44
+ "@smithy/middleware-serde": "^3.0.10",
45
+ "@smithy/middleware-stack": "^3.0.10",
46
+ "@smithy/node-config-provider": "^3.1.11",
47
+ "@smithy/node-http-handler": "^3.3.1",
48
+ "@smithy/protocol-http": "^4.1.7",
49
+ "@smithy/smithy-client": "^3.4.4",
50
+ "@smithy/types": "^3.7.1",
51
+ "@smithy/url-parser": "^3.0.10",
52
52
  "@smithy/util-base64": "^3.0.0",
53
53
  "@smithy/util-body-length-browser": "^3.0.0",
54
54
  "@smithy/util-body-length-node": "^3.0.0",
55
- "@smithy/util-defaults-mode-browser": "^3.0.26",
56
- "@smithy/util-defaults-mode-node": "^3.0.26",
57
- "@smithy/util-endpoints": "^2.1.5",
58
- "@smithy/util-middleware": "^3.0.9",
59
- "@smithy/util-retry": "^3.0.9",
55
+ "@smithy/util-defaults-mode-browser": "^3.0.27",
56
+ "@smithy/util-defaults-mode-node": "^3.0.27",
57
+ "@smithy/util-endpoints": "^2.1.6",
58
+ "@smithy/util-middleware": "^3.0.10",
59
+ "@smithy/util-retry": "^3.0.10",
60
60
  "@smithy/util-utf8": "^3.0.0",
61
61
  "@types/uuid": "^9.0.1",
62
62
  "tslib": "^2.6.2",