@aws-sdk/client-connect 3.575.0 → 3.577.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.
- package/README.md +16 -0
- package/dist-cjs/index.js +167 -11
- package/dist-es/Connect.js +4 -0
- package/dist-es/commands/ReplicateInstanceCommand.js +1 -1
- package/dist-es/commands/SearchContactFlowModulesCommand.js +24 -0
- package/dist-es/commands/SearchContactFlowsCommand.js +24 -0
- package/dist-es/commands/index.js +2 -0
- package/dist-es/models/models_0.js +4 -0
- package/dist-es/models/models_1.js +0 -4
- package/dist-es/models/models_2.js +9 -5
- package/dist-es/pagination/SearchContactFlowModulesPaginator.js +4 -0
- package/dist-es/pagination/SearchContactFlowsPaginator.js +4 -0
- package/dist-es/pagination/index.js +2 -0
- package/dist-es/protocols/Aws_restJson1.js +98 -0
- package/dist-types/Connect.d.ts +14 -0
- package/dist-types/ConnectClient.d.ts +4 -2
- package/dist-types/commands/CreateContactFlowCommand.d.ts +1 -0
- package/dist-types/commands/DescribeContactFlowCommand.d.ts +10 -0
- package/dist-types/commands/DescribeContactFlowModuleCommand.d.ts +4 -0
- package/dist-types/commands/ListContactFlowsCommand.d.ts +1 -0
- package/dist-types/commands/ReplicateInstanceCommand.d.ts +1 -2
- package/dist-types/commands/SearchContactFlowModulesCommand.d.ts +135 -0
- package/dist-types/commands/SearchContactFlowsCommand.d.ts +143 -0
- package/dist-types/commands/UpdateContactFlowContentCommand.d.ts +4 -0
- package/dist-types/commands/UpdateContactFlowModuleContentCommand.d.ts +4 -0
- package/dist-types/commands/index.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +27 -52
- package/dist-types/models/models_1.d.ts +131 -97
- package/dist-types/models/models_2.d.ts +352 -92
- package/dist-types/pagination/SearchContactFlowModulesPaginator.d.ts +7 -0
- package/dist-types/pagination/SearchContactFlowsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +2 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +18 -0
- package/dist-types/ts3.4/Connect.d.ts +34 -0
- package/dist-types/ts3.4/ConnectClient.d.ts +12 -0
- package/dist-types/ts3.4/commands/ReplicateInstanceCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/SearchContactFlowModulesCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/SearchContactFlowsCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/index.d.ts +2 -0
- package/dist-types/ts3.4/models/models_0.d.ts +8 -11
- package/dist-types/ts3.4/models/models_1.d.ts +14 -10
- package/dist-types/ts3.4/models/models_2.d.ts +78 -22
- package/dist-types/ts3.4/pagination/SearchContactFlowModulesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/SearchContactFlowsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +2 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +24 -0
- package/package.json +14 -14
|
@@ -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
|
+
SearchContactFlowModulesRequest,
|
|
10
|
+
SearchContactFlowModulesResponse,
|
|
11
|
+
} from "../models/models_2";
|
|
12
|
+
export { __MetadataBearer, $Command };
|
|
13
|
+
export interface SearchContactFlowModulesCommandInput
|
|
14
|
+
extends SearchContactFlowModulesRequest {}
|
|
15
|
+
export interface SearchContactFlowModulesCommandOutput
|
|
16
|
+
extends SearchContactFlowModulesResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
declare const SearchContactFlowModulesCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: SearchContactFlowModulesCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
22
|
+
SearchContactFlowModulesCommandInput,
|
|
23
|
+
SearchContactFlowModulesCommandOutput,
|
|
24
|
+
ConnectClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
27
|
+
>;
|
|
28
|
+
new (
|
|
29
|
+
__0_0: SearchContactFlowModulesCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
SearchContactFlowModulesCommandInput,
|
|
32
|
+
SearchContactFlowModulesCommandOutput,
|
|
33
|
+
ConnectClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
37
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
38
|
+
};
|
|
39
|
+
export declare class SearchContactFlowModulesCommand extends SearchContactFlowModulesCommand_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
|
+
SearchContactFlowsRequest,
|
|
10
|
+
SearchContactFlowsResponse,
|
|
11
|
+
} from "../models/models_2";
|
|
12
|
+
export { __MetadataBearer, $Command };
|
|
13
|
+
export interface SearchContactFlowsCommandInput
|
|
14
|
+
extends SearchContactFlowsRequest {}
|
|
15
|
+
export interface SearchContactFlowsCommandOutput
|
|
16
|
+
extends SearchContactFlowsResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
declare const SearchContactFlowsCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: SearchContactFlowsCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
22
|
+
SearchContactFlowsCommandInput,
|
|
23
|
+
SearchContactFlowsCommandOutput,
|
|
24
|
+
ConnectClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
27
|
+
>;
|
|
28
|
+
new (
|
|
29
|
+
__0_0: SearchContactFlowsCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
SearchContactFlowsCommandInput,
|
|
32
|
+
SearchContactFlowsCommandOutput,
|
|
33
|
+
ConnectClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
37
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
38
|
+
};
|
|
39
|
+
export declare class SearchContactFlowsCommand extends SearchContactFlowsCommand_base {}
|
|
@@ -170,6 +170,8 @@ export * from "./ReplicateInstanceCommand";
|
|
|
170
170
|
export * from "./ResumeContactCommand";
|
|
171
171
|
export * from "./ResumeContactRecordingCommand";
|
|
172
172
|
export * from "./SearchAvailablePhoneNumbersCommand";
|
|
173
|
+
export * from "./SearchContactFlowModulesCommand";
|
|
174
|
+
export * from "./SearchContactFlowsCommand";
|
|
173
175
|
export * from "./SearchContactsCommand";
|
|
174
176
|
export * from "./SearchHoursOfOperationsCommand";
|
|
175
177
|
export * from "./SearchPredefinedAttributesCommand";
|
|
@@ -654,6 +654,12 @@ export declare class DuplicateResourceException extends __BaseException {
|
|
|
654
654
|
opts: __ExceptionOptionType<DuplicateResourceException, __BaseException>
|
|
655
655
|
);
|
|
656
656
|
}
|
|
657
|
+
export declare const ContactFlowStatus: {
|
|
658
|
+
readonly PUBLISHED: "PUBLISHED";
|
|
659
|
+
readonly SAVED: "SAVED";
|
|
660
|
+
};
|
|
661
|
+
export type ContactFlowStatus =
|
|
662
|
+
(typeof ContactFlowStatus)[keyof typeof ContactFlowStatus];
|
|
657
663
|
export declare const ContactFlowType: {
|
|
658
664
|
readonly AGENT_HOLD: "AGENT_HOLD";
|
|
659
665
|
readonly AGENT_TRANSFER: "AGENT_TRANSFER";
|
|
@@ -673,6 +679,7 @@ export interface CreateContactFlowRequest {
|
|
|
673
679
|
Type: ContactFlowType | undefined;
|
|
674
680
|
Description?: string;
|
|
675
681
|
Content: string | undefined;
|
|
682
|
+
Status?: ContactFlowStatus;
|
|
676
683
|
Tags?: Record<string, string>;
|
|
677
684
|
}
|
|
678
685
|
export interface CreateContactFlowResponse {
|
|
@@ -1797,6 +1804,7 @@ export interface ContactFlow {
|
|
|
1797
1804
|
Name?: string;
|
|
1798
1805
|
Type?: ContactFlowType;
|
|
1799
1806
|
State?: ContactFlowState;
|
|
1807
|
+
Status?: ContactFlowStatus;
|
|
1800
1808
|
Description?: string;
|
|
1801
1809
|
Content?: string;
|
|
1802
1810
|
Tags?: Record<string, string>;
|
|
@@ -1848,17 +1856,6 @@ export interface DescribeHoursOfOperationRequest {
|
|
|
1848
1856
|
InstanceId: string | undefined;
|
|
1849
1857
|
HoursOfOperationId: string | undefined;
|
|
1850
1858
|
}
|
|
1851
|
-
export interface HoursOfOperation {
|
|
1852
|
-
HoursOfOperationId?: string;
|
|
1853
|
-
HoursOfOperationArn?: string;
|
|
1854
|
-
Name?: string;
|
|
1855
|
-
Description?: string;
|
|
1856
|
-
TimeZone?: string;
|
|
1857
|
-
Config?: HoursOfOperationConfig[];
|
|
1858
|
-
Tags?: Record<string, string>;
|
|
1859
|
-
LastModifiedTime?: Date;
|
|
1860
|
-
LastModifiedRegion?: string;
|
|
1861
|
-
}
|
|
1862
1859
|
export declare const CreateInstanceRequestFilterSensitiveLog: (
|
|
1863
1860
|
obj: CreateInstanceRequest
|
|
1864
1861
|
) => any;
|
|
@@ -13,6 +13,7 @@ import {
|
|
|
13
13
|
Channel,
|
|
14
14
|
ContactFlowModuleState,
|
|
15
15
|
ContactFlowState,
|
|
16
|
+
ContactFlowStatus,
|
|
16
17
|
ContactFlowType,
|
|
17
18
|
ContactState,
|
|
18
19
|
CreatedByInfo,
|
|
@@ -26,7 +27,7 @@ import {
|
|
|
26
27
|
FileUseCaseType,
|
|
27
28
|
FlowAssociationResourceType,
|
|
28
29
|
FlowAssociationSummary,
|
|
29
|
-
|
|
30
|
+
HoursOfOperationConfig,
|
|
30
31
|
InstanceStorageConfig,
|
|
31
32
|
InstanceStorageResourceType,
|
|
32
33
|
IntegrationType,
|
|
@@ -61,6 +62,17 @@ import {
|
|
|
61
62
|
VocabularyLanguageCode,
|
|
62
63
|
VocabularyState,
|
|
63
64
|
} from "./models_0";
|
|
65
|
+
export interface HoursOfOperation {
|
|
66
|
+
HoursOfOperationId?: string;
|
|
67
|
+
HoursOfOperationArn?: string;
|
|
68
|
+
Name?: string;
|
|
69
|
+
Description?: string;
|
|
70
|
+
TimeZone?: string;
|
|
71
|
+
Config?: HoursOfOperationConfig[];
|
|
72
|
+
Tags?: Record<string, string>;
|
|
73
|
+
LastModifiedTime?: Date;
|
|
74
|
+
LastModifiedRegion?: string;
|
|
75
|
+
}
|
|
64
76
|
export interface DescribeHoursOfOperationResponse {
|
|
65
77
|
HoursOfOperation?: HoursOfOperation;
|
|
66
78
|
}
|
|
@@ -1221,6 +1233,7 @@ export interface ContactFlowSummary {
|
|
|
1221
1233
|
Name?: string;
|
|
1222
1234
|
ContactFlowType?: ContactFlowType;
|
|
1223
1235
|
ContactFlowState?: ContactFlowState;
|
|
1236
|
+
ContactFlowStatus?: ContactFlowStatus;
|
|
1224
1237
|
}
|
|
1225
1238
|
export interface ListContactFlowsResponse {
|
|
1226
1239
|
ContactFlowSummaryList?: ContactFlowSummary[];
|
|
@@ -2148,12 +2161,6 @@ export interface ReleasePhoneNumberRequest {
|
|
|
2148
2161
|
PhoneNumberId: string | undefined;
|
|
2149
2162
|
ClientToken?: string;
|
|
2150
2163
|
}
|
|
2151
|
-
export interface ReplicateInstanceRequest {
|
|
2152
|
-
InstanceId: string | undefined;
|
|
2153
|
-
ReplicaRegion: string | undefined;
|
|
2154
|
-
ClientToken?: string;
|
|
2155
|
-
ReplicaAlias: string | undefined;
|
|
2156
|
-
}
|
|
2157
2164
|
export declare const InstanceFilterSensitiveLog: (obj: Instance) => any;
|
|
2158
2165
|
export declare const DescribeInstanceResponseFilterSensitiveLog: (
|
|
2159
2166
|
obj: DescribeInstanceResponse
|
|
@@ -2185,6 +2192,3 @@ export declare const ViewVersionSummaryFilterSensitiveLog: (
|
|
|
2185
2192
|
export declare const ListViewVersionsResponseFilterSensitiveLog: (
|
|
2186
2193
|
obj: ListViewVersionsResponse
|
|
2187
2194
|
) => any;
|
|
2188
|
-
export declare const ReplicateInstanceRequestFilterSensitiveLog: (
|
|
2189
|
-
obj: ReplicateInstanceRequest
|
|
2190
|
-
) => any;
|
|
@@ -8,8 +8,12 @@ import {
|
|
|
8
8
|
AllowedCapabilities,
|
|
9
9
|
Application,
|
|
10
10
|
Channel,
|
|
11
|
+
ContactFlow,
|
|
12
|
+
ContactFlowModule,
|
|
11
13
|
ContactFlowModuleState,
|
|
12
14
|
ContactFlowState,
|
|
15
|
+
ContactFlowStatus,
|
|
16
|
+
ContactFlowType,
|
|
13
17
|
ContactInitiationMethod,
|
|
14
18
|
CreatedByInfo,
|
|
15
19
|
Evaluation,
|
|
@@ -20,7 +24,6 @@ import {
|
|
|
20
24
|
EvaluationNote,
|
|
21
25
|
FileStatusType,
|
|
22
26
|
FileUseCaseType,
|
|
23
|
-
HoursOfOperation,
|
|
24
27
|
HoursOfOperationConfig,
|
|
25
28
|
InstanceStorageConfig,
|
|
26
29
|
InstanceStorageResourceType,
|
|
@@ -48,6 +51,7 @@ import {
|
|
|
48
51
|
VocabularyState,
|
|
49
52
|
} from "./models_0";
|
|
50
53
|
import {
|
|
54
|
+
HoursOfOperation,
|
|
51
55
|
InstanceAttributeType,
|
|
52
56
|
PhoneNumberCountryCode,
|
|
53
57
|
PhoneNumberType,
|
|
@@ -61,6 +65,12 @@ import {
|
|
|
61
65
|
SortOrder,
|
|
62
66
|
TelephonyConfig,
|
|
63
67
|
} from "./models_1";
|
|
68
|
+
export interface ReplicateInstanceRequest {
|
|
69
|
+
InstanceId: string | undefined;
|
|
70
|
+
ReplicaRegion: string | undefined;
|
|
71
|
+
ClientToken?: string;
|
|
72
|
+
ReplicaAlias: string | undefined;
|
|
73
|
+
}
|
|
64
74
|
export interface ReplicateInstanceResponse {
|
|
65
75
|
Id?: string;
|
|
66
76
|
Arn?: string;
|
|
@@ -95,6 +105,43 @@ export interface SearchAvailablePhoneNumbersResponse {
|
|
|
95
105
|
NextToken?: string;
|
|
96
106
|
AvailableNumbersList?: AvailableNumberSummary[];
|
|
97
107
|
}
|
|
108
|
+
export declare const StringComparisonType: {
|
|
109
|
+
readonly CONTAINS: "CONTAINS";
|
|
110
|
+
readonly EXACT: "EXACT";
|
|
111
|
+
readonly STARTS_WITH: "STARTS_WITH";
|
|
112
|
+
};
|
|
113
|
+
export type StringComparisonType =
|
|
114
|
+
(typeof StringComparisonType)[keyof typeof StringComparisonType];
|
|
115
|
+
export interface StringCondition {
|
|
116
|
+
FieldName?: string;
|
|
117
|
+
Value?: string;
|
|
118
|
+
ComparisonType?: StringComparisonType;
|
|
119
|
+
}
|
|
120
|
+
export interface TagCondition {
|
|
121
|
+
TagKey?: string;
|
|
122
|
+
TagValue?: string;
|
|
123
|
+
}
|
|
124
|
+
export interface ControlPlaneTagFilter {
|
|
125
|
+
OrConditions?: TagCondition[][];
|
|
126
|
+
AndConditions?: TagCondition[];
|
|
127
|
+
TagCondition?: TagCondition;
|
|
128
|
+
}
|
|
129
|
+
export interface ContactFlowModuleSearchFilter {
|
|
130
|
+
TagFilter?: ControlPlaneTagFilter;
|
|
131
|
+
}
|
|
132
|
+
export interface SearchContactFlowModulesResponse {
|
|
133
|
+
ContactFlowModules?: ContactFlowModule[];
|
|
134
|
+
NextToken?: string;
|
|
135
|
+
ApproximateTotalCount?: number;
|
|
136
|
+
}
|
|
137
|
+
export interface ContactFlowSearchFilter {
|
|
138
|
+
TagFilter?: ControlPlaneTagFilter;
|
|
139
|
+
}
|
|
140
|
+
export interface SearchContactFlowsResponse {
|
|
141
|
+
ContactFlows?: ContactFlow[];
|
|
142
|
+
NextToken?: string;
|
|
143
|
+
ApproximateTotalCount?: number;
|
|
144
|
+
}
|
|
98
145
|
export declare const SearchContactsMatchType: {
|
|
99
146
|
readonly MATCH_ALL: "MATCH_ALL";
|
|
100
147
|
readonly MATCH_ANY: "MATCH_ANY";
|
|
@@ -191,27 +238,6 @@ export interface SearchContactsResponse {
|
|
|
191
238
|
NextToken?: string;
|
|
192
239
|
TotalCount?: number;
|
|
193
240
|
}
|
|
194
|
-
export declare const StringComparisonType: {
|
|
195
|
-
readonly CONTAINS: "CONTAINS";
|
|
196
|
-
readonly EXACT: "EXACT";
|
|
197
|
-
readonly STARTS_WITH: "STARTS_WITH";
|
|
198
|
-
};
|
|
199
|
-
export type StringComparisonType =
|
|
200
|
-
(typeof StringComparisonType)[keyof typeof StringComparisonType];
|
|
201
|
-
export interface StringCondition {
|
|
202
|
-
FieldName?: string;
|
|
203
|
-
Value?: string;
|
|
204
|
-
ComparisonType?: StringComparisonType;
|
|
205
|
-
}
|
|
206
|
-
export interface TagCondition {
|
|
207
|
-
TagKey?: string;
|
|
208
|
-
TagValue?: string;
|
|
209
|
-
}
|
|
210
|
-
export interface ControlPlaneTagFilter {
|
|
211
|
-
OrConditions?: TagCondition[][];
|
|
212
|
-
AndConditions?: TagCondition[];
|
|
213
|
-
TagCondition?: TagCondition;
|
|
214
|
-
}
|
|
215
241
|
export interface HoursOfOperationSearchFilter {
|
|
216
242
|
TagFilter?: ControlPlaneTagFilter;
|
|
217
243
|
}
|
|
@@ -1122,6 +1148,19 @@ export interface EvaluationFormSection {
|
|
|
1122
1148
|
Items: EvaluationFormItem[] | undefined;
|
|
1123
1149
|
Weight?: number;
|
|
1124
1150
|
}
|
|
1151
|
+
export interface ContactFlowModuleSearchCriteria {
|
|
1152
|
+
OrConditions?: ContactFlowModuleSearchCriteria[];
|
|
1153
|
+
AndConditions?: ContactFlowModuleSearchCriteria[];
|
|
1154
|
+
StringCondition?: StringCondition;
|
|
1155
|
+
}
|
|
1156
|
+
export interface ContactFlowSearchCriteria {
|
|
1157
|
+
OrConditions?: ContactFlowSearchCriteria[];
|
|
1158
|
+
AndConditions?: ContactFlowSearchCriteria[];
|
|
1159
|
+
StringCondition?: StringCondition;
|
|
1160
|
+
TypeCondition?: ContactFlowType;
|
|
1161
|
+
StateCondition?: ContactFlowState;
|
|
1162
|
+
StatusCondition?: ContactFlowStatus;
|
|
1163
|
+
}
|
|
1125
1164
|
export interface CreateEvaluationFormRequest {
|
|
1126
1165
|
InstanceId: string | undefined;
|
|
1127
1166
|
Title: string | undefined;
|
|
@@ -1215,6 +1254,20 @@ export interface DescribeContactEvaluationResponse {
|
|
|
1215
1254
|
export interface DescribeEvaluationFormResponse {
|
|
1216
1255
|
EvaluationForm: EvaluationForm | undefined;
|
|
1217
1256
|
}
|
|
1257
|
+
export interface SearchContactFlowModulesRequest {
|
|
1258
|
+
InstanceId: string | undefined;
|
|
1259
|
+
NextToken?: string;
|
|
1260
|
+
MaxResults?: number;
|
|
1261
|
+
SearchFilter?: ContactFlowModuleSearchFilter;
|
|
1262
|
+
SearchCriteria?: ContactFlowModuleSearchCriteria;
|
|
1263
|
+
}
|
|
1264
|
+
export interface SearchContactFlowsRequest {
|
|
1265
|
+
InstanceId: string | undefined;
|
|
1266
|
+
NextToken?: string;
|
|
1267
|
+
MaxResults?: number;
|
|
1268
|
+
SearchFilter?: ContactFlowSearchFilter;
|
|
1269
|
+
SearchCriteria?: ContactFlowSearchCriteria;
|
|
1270
|
+
}
|
|
1218
1271
|
export interface SearchHoursOfOperationsRequest {
|
|
1219
1272
|
InstanceId: string | undefined;
|
|
1220
1273
|
NextToken?: string;
|
|
@@ -1270,6 +1323,9 @@ export interface SearchUsersRequest {
|
|
|
1270
1323
|
SearchFilter?: UserSearchFilter;
|
|
1271
1324
|
SearchCriteria?: UserSearchCriteria;
|
|
1272
1325
|
}
|
|
1326
|
+
export declare const ReplicateInstanceRequestFilterSensitiveLog: (
|
|
1327
|
+
obj: ReplicateInstanceRequest
|
|
1328
|
+
) => any;
|
|
1273
1329
|
export declare const TranscriptCriteriaFilterSensitiveLog: (
|
|
1274
1330
|
obj: TranscriptCriteria
|
|
1275
1331
|
) => any;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
SearchContactFlowModulesCommandInput,
|
|
4
|
+
SearchContactFlowModulesCommandOutput,
|
|
5
|
+
} from "../commands/SearchContactFlowModulesCommand";
|
|
6
|
+
import { ConnectPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateSearchContactFlowModules: (
|
|
8
|
+
config: ConnectPaginationConfiguration,
|
|
9
|
+
input: SearchContactFlowModulesCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<SearchContactFlowModulesCommandOutput>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
SearchContactFlowsCommandInput,
|
|
4
|
+
SearchContactFlowsCommandOutput,
|
|
5
|
+
} from "../commands/SearchContactFlowsCommand";
|
|
6
|
+
import { ConnectPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateSearchContactFlows: (
|
|
8
|
+
config: ConnectPaginationConfiguration,
|
|
9
|
+
input: SearchContactFlowsCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<SearchContactFlowsCommandOutput>;
|
|
@@ -46,6 +46,8 @@ export * from "./ListUsersPaginator";
|
|
|
46
46
|
export * from "./ListViewVersionsPaginator";
|
|
47
47
|
export * from "./ListViewsPaginator";
|
|
48
48
|
export * from "./SearchAvailablePhoneNumbersPaginator";
|
|
49
|
+
export * from "./SearchContactFlowModulesPaginator";
|
|
50
|
+
export * from "./SearchContactFlowsPaginator";
|
|
49
51
|
export * from "./SearchContactsPaginator";
|
|
50
52
|
export * from "./SearchHoursOfOperationsPaginator";
|
|
51
53
|
export * from "./SearchPredefinedAttributesPaginator";
|
|
@@ -691,6 +691,14 @@ import {
|
|
|
691
691
|
SearchAvailablePhoneNumbersCommandInput,
|
|
692
692
|
SearchAvailablePhoneNumbersCommandOutput,
|
|
693
693
|
} from "../commands/SearchAvailablePhoneNumbersCommand";
|
|
694
|
+
import {
|
|
695
|
+
SearchContactFlowModulesCommandInput,
|
|
696
|
+
SearchContactFlowModulesCommandOutput,
|
|
697
|
+
} from "../commands/SearchContactFlowModulesCommand";
|
|
698
|
+
import {
|
|
699
|
+
SearchContactFlowsCommandInput,
|
|
700
|
+
SearchContactFlowsCommandOutput,
|
|
701
|
+
} from "../commands/SearchContactFlowsCommand";
|
|
694
702
|
import {
|
|
695
703
|
SearchContactsCommandInput,
|
|
696
704
|
SearchContactsCommandOutput,
|
|
@@ -1683,6 +1691,14 @@ export declare const se_SearchAvailablePhoneNumbersCommand: (
|
|
|
1683
1691
|
input: SearchAvailablePhoneNumbersCommandInput,
|
|
1684
1692
|
context: __SerdeContext
|
|
1685
1693
|
) => Promise<__HttpRequest>;
|
|
1694
|
+
export declare const se_SearchContactFlowModulesCommand: (
|
|
1695
|
+
input: SearchContactFlowModulesCommandInput,
|
|
1696
|
+
context: __SerdeContext
|
|
1697
|
+
) => Promise<__HttpRequest>;
|
|
1698
|
+
export declare const se_SearchContactFlowsCommand: (
|
|
1699
|
+
input: SearchContactFlowsCommandInput,
|
|
1700
|
+
context: __SerdeContext
|
|
1701
|
+
) => Promise<__HttpRequest>;
|
|
1686
1702
|
export declare const se_SearchContactsCommand: (
|
|
1687
1703
|
input: SearchContactsCommandInput,
|
|
1688
1704
|
context: __SerdeContext
|
|
@@ -2675,6 +2691,14 @@ export declare const de_SearchAvailablePhoneNumbersCommand: (
|
|
|
2675
2691
|
output: __HttpResponse,
|
|
2676
2692
|
context: __SerdeContext
|
|
2677
2693
|
) => Promise<SearchAvailablePhoneNumbersCommandOutput>;
|
|
2694
|
+
export declare const de_SearchContactFlowModulesCommand: (
|
|
2695
|
+
output: __HttpResponse,
|
|
2696
|
+
context: __SerdeContext
|
|
2697
|
+
) => Promise<SearchContactFlowModulesCommandOutput>;
|
|
2698
|
+
export declare const de_SearchContactFlowsCommand: (
|
|
2699
|
+
output: __HttpResponse,
|
|
2700
|
+
context: __SerdeContext
|
|
2701
|
+
) => Promise<SearchContactFlowsCommandOutput>;
|
|
2678
2702
|
export declare const de_SearchContactsCommand: (
|
|
2679
2703
|
output: __HttpResponse,
|
|
2680
2704
|
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.
|
|
4
|
+
"version": "3.577.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,19 +20,19 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
23
|
-
"@aws-sdk/client-sso-oidc": "3.
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/core": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
27
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
28
|
-
"@aws-sdk/middleware-logger": "3.
|
|
29
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
31
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
32
|
-
"@aws-sdk/types": "3.
|
|
33
|
-
"@aws-sdk/util-endpoints": "3.
|
|
34
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
35
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.577.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.577.0",
|
|
25
|
+
"@aws-sdk/core": "3.576.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.577.0",
|
|
27
|
+
"@aws-sdk/middleware-host-header": "3.577.0",
|
|
28
|
+
"@aws-sdk/middleware-logger": "3.577.0",
|
|
29
|
+
"@aws-sdk/middleware-recursion-detection": "3.577.0",
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.577.0",
|
|
31
|
+
"@aws-sdk/region-config-resolver": "3.577.0",
|
|
32
|
+
"@aws-sdk/types": "3.577.0",
|
|
33
|
+
"@aws-sdk/util-endpoints": "3.577.0",
|
|
34
|
+
"@aws-sdk/util-user-agent-browser": "3.577.0",
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.577.0",
|
|
36
36
|
"@smithy/config-resolver": "^3.0.0",
|
|
37
37
|
"@smithy/core": "^2.0.0",
|
|
38
38
|
"@smithy/fetch-http-handler": "^3.0.0",
|