@aws-sdk/client-connectcases 3.312.0 → 3.316.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/dist-cjs/ConnectCases.js +34 -420
- package/dist-cjs/protocols/Aws_restJson1.js +341 -884
- package/dist-es/ConnectCases.js +34 -420
- package/dist-es/protocols/Aws_restJson1.js +300 -843
- package/dist-types/ConnectCases.d.ts +41 -154
- package/dist-types/ts3.4/ConnectCases.d.ts +4 -1
- package/package.json +6 -6
|
@@ -30,308 +30,195 @@ import { UpdateFieldCommandInput, UpdateFieldCommandOutput } from "./commands/Up
|
|
|
30
30
|
import { UpdateLayoutCommandInput, UpdateLayoutCommandOutput } from "./commands/UpdateLayoutCommand";
|
|
31
31
|
import { UpdateTemplateCommandInput, UpdateTemplateCommandOutput } from "./commands/UpdateTemplateCommand";
|
|
32
32
|
import { ConnectCasesClient } from "./ConnectCasesClient";
|
|
33
|
-
|
|
34
|
-
* @public
|
|
35
|
-
* <p>With Amazon Connect Cases, your agents can track and manage customer issues that require
|
|
36
|
-
* multiple interactions, follow-up tasks, and teams in your contact center. A case represents a
|
|
37
|
-
* customer issue. It records the issue, the steps and interactions taken to resolve the issue,
|
|
38
|
-
* and the outcome. For more information, see <a href="https://docs.aws.amazon.com/connect/latest/adminguide/cases.html">Amazon Connect Cases</a> in the
|
|
39
|
-
* <i>Amazon Connect Administrator Guide</i>.</p>
|
|
40
|
-
*/
|
|
41
|
-
export declare class ConnectCases extends ConnectCasesClient {
|
|
33
|
+
export interface ConnectCases {
|
|
42
34
|
/**
|
|
43
|
-
* @
|
|
44
|
-
* <p>Returns the description for the list of fields in the request parameters. </p>
|
|
35
|
+
* @see {@link BatchGetFieldCommand}
|
|
45
36
|
*/
|
|
46
37
|
batchGetField(args: BatchGetFieldCommandInput, options?: __HttpHandlerOptions): Promise<BatchGetFieldCommandOutput>;
|
|
47
38
|
batchGetField(args: BatchGetFieldCommandInput, cb: (err: any, data?: BatchGetFieldCommandOutput) => void): void;
|
|
48
39
|
batchGetField(args: BatchGetFieldCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: BatchGetFieldCommandOutput) => void): void;
|
|
49
40
|
/**
|
|
50
|
-
* @
|
|
51
|
-
* <p>Creates and updates a set of field options for a single select field in a Cases
|
|
52
|
-
* domain.</p>
|
|
41
|
+
* @see {@link BatchPutFieldOptionsCommand}
|
|
53
42
|
*/
|
|
54
43
|
batchPutFieldOptions(args: BatchPutFieldOptionsCommandInput, options?: __HttpHandlerOptions): Promise<BatchPutFieldOptionsCommandOutput>;
|
|
55
44
|
batchPutFieldOptions(args: BatchPutFieldOptionsCommandInput, cb: (err: any, data?: BatchPutFieldOptionsCommandOutput) => void): void;
|
|
56
45
|
batchPutFieldOptions(args: BatchPutFieldOptionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: BatchPutFieldOptionsCommandOutput) => void): void;
|
|
57
46
|
/**
|
|
58
|
-
* @
|
|
59
|
-
* <p>Creates a case in the specified Cases domain. Case system and custom fields are taken
|
|
60
|
-
* as an array id/value pairs with a declared data types.</p>
|
|
61
|
-
* <note>
|
|
62
|
-
* <p>The following fields are required when creating a case:</p>
|
|
63
|
-
*
|
|
64
|
-
* <ul>
|
|
65
|
-
* <li>
|
|
66
|
-
* <p>
|
|
67
|
-
* <code>customer_id</code> - You must provide the full customer profile ARN in this
|
|
68
|
-
* format: <code>arn:aws:profile:your AWS Region:your AWS account ID:domains/profiles
|
|
69
|
-
* domain name/profiles/profile ID</code>
|
|
70
|
-
* </p>
|
|
71
|
-
* </li>
|
|
72
|
-
* <li>
|
|
73
|
-
* <p>
|
|
74
|
-
* <code>title</code>
|
|
75
|
-
* </p>
|
|
76
|
-
* </li>
|
|
77
|
-
* </ul>
|
|
78
|
-
*
|
|
79
|
-
* </note>
|
|
47
|
+
* @see {@link CreateCaseCommand}
|
|
80
48
|
*/
|
|
81
49
|
createCase(args: CreateCaseCommandInput, options?: __HttpHandlerOptions): Promise<CreateCaseCommandOutput>;
|
|
82
50
|
createCase(args: CreateCaseCommandInput, cb: (err: any, data?: CreateCaseCommandOutput) => void): void;
|
|
83
51
|
createCase(args: CreateCaseCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateCaseCommandOutput) => void): void;
|
|
84
52
|
/**
|
|
85
|
-
* @
|
|
86
|
-
* <p>Creates a domain, which is a container for all case data, such as cases, fields, templates
|
|
87
|
-
* and layouts. Each Amazon Connect instance can be associated with only one Cases
|
|
88
|
-
* domain.</p>
|
|
89
|
-
* <important>
|
|
90
|
-
* <p>This will not associate your connect instance to Cases domain. Instead, use the
|
|
91
|
-
* Amazon Connect
|
|
92
|
-
* <a href="https://docs.aws.amazon.com/connect/latest/APIReference/API_CreateIntegrationAssociation.html">CreateIntegrationAssociation</a> API. You need specific IAM
|
|
93
|
-
* permissions to successfully associate the Cases domain. For more information, see
|
|
94
|
-
* <a href="https://docs.aws.amazon.com/connect/latest/adminguide/required-permissions-iam-cases.html#onboard-cases-iam">Onboard to Cases</a>.</p>
|
|
95
|
-
* </important>
|
|
53
|
+
* @see {@link CreateDomainCommand}
|
|
96
54
|
*/
|
|
97
55
|
createDomain(args: CreateDomainCommandInput, options?: __HttpHandlerOptions): Promise<CreateDomainCommandOutput>;
|
|
98
56
|
createDomain(args: CreateDomainCommandInput, cb: (err: any, data?: CreateDomainCommandOutput) => void): void;
|
|
99
57
|
createDomain(args: CreateDomainCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateDomainCommandOutput) => void): void;
|
|
100
58
|
/**
|
|
101
|
-
* @
|
|
102
|
-
* <p>Creates a field in the Cases domain. This field is used to define the case object
|
|
103
|
-
* model (that is, defines what data can be captured on cases) in a Cases domain. </p>
|
|
59
|
+
* @see {@link CreateFieldCommand}
|
|
104
60
|
*/
|
|
105
61
|
createField(args: CreateFieldCommandInput, options?: __HttpHandlerOptions): Promise<CreateFieldCommandOutput>;
|
|
106
62
|
createField(args: CreateFieldCommandInput, cb: (err: any, data?: CreateFieldCommandOutput) => void): void;
|
|
107
63
|
createField(args: CreateFieldCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateFieldCommandOutput) => void): void;
|
|
108
64
|
/**
|
|
109
|
-
* @
|
|
110
|
-
* <p>Creates a layout in the Cases domain. Layouts define the following configuration in
|
|
111
|
-
* the top section and More Info tab of the Cases user interface:</p>
|
|
112
|
-
* <ul>
|
|
113
|
-
* <li>
|
|
114
|
-
* <p>Fields to display to the users</p>
|
|
115
|
-
* </li>
|
|
116
|
-
* <li>
|
|
117
|
-
* <p>Field ordering</p>
|
|
118
|
-
* </li>
|
|
119
|
-
* </ul>
|
|
120
|
-
* <note>
|
|
121
|
-
* <p>Title and Status fields cannot be part of layouts since they are not
|
|
122
|
-
* configurable.</p>
|
|
123
|
-
* </note>
|
|
65
|
+
* @see {@link CreateLayoutCommand}
|
|
124
66
|
*/
|
|
125
67
|
createLayout(args: CreateLayoutCommandInput, options?: __HttpHandlerOptions): Promise<CreateLayoutCommandOutput>;
|
|
126
68
|
createLayout(args: CreateLayoutCommandInput, cb: (err: any, data?: CreateLayoutCommandOutput) => void): void;
|
|
127
69
|
createLayout(args: CreateLayoutCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateLayoutCommandOutput) => void): void;
|
|
128
70
|
/**
|
|
129
|
-
* @
|
|
130
|
-
* <p>Creates a related item (comments, tasks, and contacts) and associates it with a
|
|
131
|
-
* case.</p>
|
|
132
|
-
* <note>
|
|
133
|
-
* <p>A Related Item is a resource that is associated with a case. It may or may not have an
|
|
134
|
-
* external identifier linking it to an external resource (for example, a
|
|
135
|
-
* <code>contactArn</code>). All Related Items have their own internal identifier, the
|
|
136
|
-
* <code>relatedItemArn</code>. Examples of related items include <code>comments</code> and
|
|
137
|
-
* <code>contacts</code>.</p>
|
|
138
|
-
* </note>
|
|
71
|
+
* @see {@link CreateRelatedItemCommand}
|
|
139
72
|
*/
|
|
140
73
|
createRelatedItem(args: CreateRelatedItemCommandInput, options?: __HttpHandlerOptions): Promise<CreateRelatedItemCommandOutput>;
|
|
141
74
|
createRelatedItem(args: CreateRelatedItemCommandInput, cb: (err: any, data?: CreateRelatedItemCommandOutput) => void): void;
|
|
142
75
|
createRelatedItem(args: CreateRelatedItemCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateRelatedItemCommandOutput) => void): void;
|
|
143
76
|
/**
|
|
144
|
-
* @
|
|
145
|
-
* <p>Creates a template in the Cases domain. This template is used to define the case object
|
|
146
|
-
* model (that is, to define what data can be captured on cases) in a Cases domain. A template
|
|
147
|
-
* must have a unique name within a domain, and it must reference existing field IDs and layout
|
|
148
|
-
* IDs. Additionally, multiple fields with same IDs are not allowed within the same Template. A
|
|
149
|
-
* template can be either Active or Inactive, as indicated by its status. Inactive templates
|
|
150
|
-
* cannot be used to create cases.</p>
|
|
77
|
+
* @see {@link CreateTemplateCommand}
|
|
151
78
|
*/
|
|
152
79
|
createTemplate(args: CreateTemplateCommandInput, options?: __HttpHandlerOptions): Promise<CreateTemplateCommandOutput>;
|
|
153
80
|
createTemplate(args: CreateTemplateCommandInput, cb: (err: any, data?: CreateTemplateCommandOutput) => void): void;
|
|
154
81
|
createTemplate(args: CreateTemplateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateTemplateCommandOutput) => void): void;
|
|
155
82
|
/**
|
|
156
|
-
* @
|
|
157
|
-
* <p>Deletes a domain.</p>
|
|
83
|
+
* @see {@link DeleteDomainCommand}
|
|
158
84
|
*/
|
|
159
85
|
deleteDomain(args: DeleteDomainCommandInput, options?: __HttpHandlerOptions): Promise<DeleteDomainCommandOutput>;
|
|
160
86
|
deleteDomain(args: DeleteDomainCommandInput, cb: (err: any, data?: DeleteDomainCommandOutput) => void): void;
|
|
161
87
|
deleteDomain(args: DeleteDomainCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteDomainCommandOutput) => void): void;
|
|
162
88
|
/**
|
|
163
|
-
* @
|
|
164
|
-
* <p>Returns information about a specific case if it exists. </p>
|
|
89
|
+
* @see {@link GetCaseCommand}
|
|
165
90
|
*/
|
|
166
91
|
getCase(args: GetCaseCommandInput, options?: __HttpHandlerOptions): Promise<GetCaseCommandOutput>;
|
|
167
92
|
getCase(args: GetCaseCommandInput, cb: (err: any, data?: GetCaseCommandOutput) => void): void;
|
|
168
93
|
getCase(args: GetCaseCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetCaseCommandOutput) => void): void;
|
|
169
94
|
/**
|
|
170
|
-
* @
|
|
171
|
-
* <p>Returns the case event publishing configuration.</p>
|
|
95
|
+
* @see {@link GetCaseEventConfigurationCommand}
|
|
172
96
|
*/
|
|
173
97
|
getCaseEventConfiguration(args: GetCaseEventConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<GetCaseEventConfigurationCommandOutput>;
|
|
174
98
|
getCaseEventConfiguration(args: GetCaseEventConfigurationCommandInput, cb: (err: any, data?: GetCaseEventConfigurationCommandOutput) => void): void;
|
|
175
99
|
getCaseEventConfiguration(args: GetCaseEventConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetCaseEventConfigurationCommandOutput) => void): void;
|
|
176
100
|
/**
|
|
177
|
-
* @
|
|
178
|
-
* <p>Returns information about a specific domain if it exists. </p>
|
|
101
|
+
* @see {@link GetDomainCommand}
|
|
179
102
|
*/
|
|
180
103
|
getDomain(args: GetDomainCommandInput, options?: __HttpHandlerOptions): Promise<GetDomainCommandOutput>;
|
|
181
104
|
getDomain(args: GetDomainCommandInput, cb: (err: any, data?: GetDomainCommandOutput) => void): void;
|
|
182
105
|
getDomain(args: GetDomainCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetDomainCommandOutput) => void): void;
|
|
183
106
|
/**
|
|
184
|
-
* @
|
|
185
|
-
* <p>Returns the details for the requested layout.</p>
|
|
107
|
+
* @see {@link GetLayoutCommand}
|
|
186
108
|
*/
|
|
187
109
|
getLayout(args: GetLayoutCommandInput, options?: __HttpHandlerOptions): Promise<GetLayoutCommandOutput>;
|
|
188
110
|
getLayout(args: GetLayoutCommandInput, cb: (err: any, data?: GetLayoutCommandOutput) => void): void;
|
|
189
111
|
getLayout(args: GetLayoutCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetLayoutCommandOutput) => void): void;
|
|
190
112
|
/**
|
|
191
|
-
* @
|
|
192
|
-
* <p>Returns the details for the requested template. </p>
|
|
113
|
+
* @see {@link GetTemplateCommand}
|
|
193
114
|
*/
|
|
194
115
|
getTemplate(args: GetTemplateCommandInput, options?: __HttpHandlerOptions): Promise<GetTemplateCommandOutput>;
|
|
195
116
|
getTemplate(args: GetTemplateCommandInput, cb: (err: any, data?: GetTemplateCommandOutput) => void): void;
|
|
196
117
|
getTemplate(args: GetTemplateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetTemplateCommandOutput) => void): void;
|
|
197
118
|
/**
|
|
198
|
-
* @
|
|
199
|
-
* <p>Lists cases for a given contact.</p>
|
|
119
|
+
* @see {@link ListCasesForContactCommand}
|
|
200
120
|
*/
|
|
201
121
|
listCasesForContact(args: ListCasesForContactCommandInput, options?: __HttpHandlerOptions): Promise<ListCasesForContactCommandOutput>;
|
|
202
122
|
listCasesForContact(args: ListCasesForContactCommandInput, cb: (err: any, data?: ListCasesForContactCommandOutput) => void): void;
|
|
203
123
|
listCasesForContact(args: ListCasesForContactCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListCasesForContactCommandOutput) => void): void;
|
|
204
124
|
/**
|
|
205
|
-
* @
|
|
206
|
-
* <p>Lists all cases domains in the Amazon Web Services account. Each list item is a condensed
|
|
207
|
-
* summary object of the domain.</p>
|
|
125
|
+
* @see {@link ListDomainsCommand}
|
|
208
126
|
*/
|
|
209
127
|
listDomains(args: ListDomainsCommandInput, options?: __HttpHandlerOptions): Promise<ListDomainsCommandOutput>;
|
|
210
128
|
listDomains(args: ListDomainsCommandInput, cb: (err: any, data?: ListDomainsCommandOutput) => void): void;
|
|
211
129
|
listDomains(args: ListDomainsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListDomainsCommandOutput) => void): void;
|
|
212
130
|
/**
|
|
213
|
-
* @
|
|
214
|
-
* <p>Lists all of the field options for a field identifier in the domain. </p>
|
|
131
|
+
* @see {@link ListFieldOptionsCommand}
|
|
215
132
|
*/
|
|
216
133
|
listFieldOptions(args: ListFieldOptionsCommandInput, options?: __HttpHandlerOptions): Promise<ListFieldOptionsCommandOutput>;
|
|
217
134
|
listFieldOptions(args: ListFieldOptionsCommandInput, cb: (err: any, data?: ListFieldOptionsCommandOutput) => void): void;
|
|
218
135
|
listFieldOptions(args: ListFieldOptionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListFieldOptionsCommandOutput) => void): void;
|
|
219
136
|
/**
|
|
220
|
-
* @
|
|
221
|
-
* <p>Lists all fields in a Cases domain.</p>
|
|
137
|
+
* @see {@link ListFieldsCommand}
|
|
222
138
|
*/
|
|
223
139
|
listFields(args: ListFieldsCommandInput, options?: __HttpHandlerOptions): Promise<ListFieldsCommandOutput>;
|
|
224
140
|
listFields(args: ListFieldsCommandInput, cb: (err: any, data?: ListFieldsCommandOutput) => void): void;
|
|
225
141
|
listFields(args: ListFieldsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListFieldsCommandOutput) => void): void;
|
|
226
142
|
/**
|
|
227
|
-
* @
|
|
228
|
-
* <p>Lists all layouts in the given cases domain. Each list item is a condensed summary object
|
|
229
|
-
* of the layout.</p>
|
|
143
|
+
* @see {@link ListLayoutsCommand}
|
|
230
144
|
*/
|
|
231
145
|
listLayouts(args: ListLayoutsCommandInput, options?: __HttpHandlerOptions): Promise<ListLayoutsCommandOutput>;
|
|
232
146
|
listLayouts(args: ListLayoutsCommandInput, cb: (err: any, data?: ListLayoutsCommandOutput) => void): void;
|
|
233
147
|
listLayouts(args: ListLayoutsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListLayoutsCommandOutput) => void): void;
|
|
234
148
|
/**
|
|
235
|
-
* @
|
|
236
|
-
* <p>Lists tags for a resource.</p>
|
|
149
|
+
* @see {@link ListTagsForResourceCommand}
|
|
237
150
|
*/
|
|
238
151
|
listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourceCommandOutput>;
|
|
239
152
|
listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
240
153
|
listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
241
154
|
/**
|
|
242
|
-
* @
|
|
243
|
-
* <p>Lists all of the templates in a Cases domain. Each list item is a condensed summary
|
|
244
|
-
* object of the template. </p>
|
|
155
|
+
* @see {@link ListTemplatesCommand}
|
|
245
156
|
*/
|
|
246
157
|
listTemplates(args: ListTemplatesCommandInput, options?: __HttpHandlerOptions): Promise<ListTemplatesCommandOutput>;
|
|
247
158
|
listTemplates(args: ListTemplatesCommandInput, cb: (err: any, data?: ListTemplatesCommandOutput) => void): void;
|
|
248
159
|
listTemplates(args: ListTemplatesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTemplatesCommandOutput) => void): void;
|
|
249
160
|
/**
|
|
250
|
-
* @
|
|
251
|
-
* <p>API for adding case event publishing configuration</p>
|
|
161
|
+
* @see {@link PutCaseEventConfigurationCommand}
|
|
252
162
|
*/
|
|
253
163
|
putCaseEventConfiguration(args: PutCaseEventConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<PutCaseEventConfigurationCommandOutput>;
|
|
254
164
|
putCaseEventConfiguration(args: PutCaseEventConfigurationCommandInput, cb: (err: any, data?: PutCaseEventConfigurationCommandOutput) => void): void;
|
|
255
165
|
putCaseEventConfiguration(args: PutCaseEventConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutCaseEventConfigurationCommandOutput) => void): void;
|
|
256
166
|
/**
|
|
257
|
-
* @
|
|
258
|
-
* <p>Searches for cases within their associated Cases domain. Search results are returned
|
|
259
|
-
* as a paginated list of abridged case documents.</p>
|
|
260
|
-
* <note>
|
|
261
|
-
* <p>For <code>customer_id</code> you must provide the full customer profile ARN in this
|
|
262
|
-
* format: <code> arn:aws:profile:your AWS Region:your AWS account ID:domains/profiles domain
|
|
263
|
-
* name/profiles/profile ID</code>. </p>
|
|
264
|
-
* </note>
|
|
167
|
+
* @see {@link SearchCasesCommand}
|
|
265
168
|
*/
|
|
266
169
|
searchCases(args: SearchCasesCommandInput, options?: __HttpHandlerOptions): Promise<SearchCasesCommandOutput>;
|
|
267
170
|
searchCases(args: SearchCasesCommandInput, cb: (err: any, data?: SearchCasesCommandOutput) => void): void;
|
|
268
171
|
searchCases(args: SearchCasesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SearchCasesCommandOutput) => void): void;
|
|
269
172
|
/**
|
|
270
|
-
* @
|
|
271
|
-
* <p>Searches for related items that are associated with a case.</p>
|
|
272
|
-
* <note>
|
|
273
|
-
* <p>If no filters are provided, this returns all related items associated with a
|
|
274
|
-
* case.</p>
|
|
275
|
-
* </note>
|
|
173
|
+
* @see {@link SearchRelatedItemsCommand}
|
|
276
174
|
*/
|
|
277
175
|
searchRelatedItems(args: SearchRelatedItemsCommandInput, options?: __HttpHandlerOptions): Promise<SearchRelatedItemsCommandOutput>;
|
|
278
176
|
searchRelatedItems(args: SearchRelatedItemsCommandInput, cb: (err: any, data?: SearchRelatedItemsCommandOutput) => void): void;
|
|
279
177
|
searchRelatedItems(args: SearchRelatedItemsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SearchRelatedItemsCommandOutput) => void): void;
|
|
280
178
|
/**
|
|
281
|
-
* @
|
|
282
|
-
* <p>Adds tags to a resource.</p>
|
|
179
|
+
* @see {@link TagResourceCommand}
|
|
283
180
|
*/
|
|
284
181
|
tagResource(args: TagResourceCommandInput, options?: __HttpHandlerOptions): Promise<TagResourceCommandOutput>;
|
|
285
182
|
tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
286
183
|
tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
287
184
|
/**
|
|
288
|
-
* @
|
|
289
|
-
* <p>Untags a resource.</p>
|
|
185
|
+
* @see {@link UntagResourceCommand}
|
|
290
186
|
*/
|
|
291
187
|
untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
|
|
292
188
|
untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
293
189
|
untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
294
190
|
/**
|
|
295
|
-
* @
|
|
296
|
-
* <p>Updates the values of fields on a case. Fields to be updated are received as an array of
|
|
297
|
-
* id/value pairs identical to the <code>CreateCase</code> input .</p>
|
|
298
|
-
* <p>If the action is successful, the service sends back an HTTP 200 response with an empty
|
|
299
|
-
* HTTP body.</p>
|
|
191
|
+
* @see {@link UpdateCaseCommand}
|
|
300
192
|
*/
|
|
301
193
|
updateCase(args: UpdateCaseCommandInput, options?: __HttpHandlerOptions): Promise<UpdateCaseCommandOutput>;
|
|
302
194
|
updateCase(args: UpdateCaseCommandInput, cb: (err: any, data?: UpdateCaseCommandOutput) => void): void;
|
|
303
195
|
updateCase(args: UpdateCaseCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateCaseCommandOutput) => void): void;
|
|
304
196
|
/**
|
|
305
|
-
* @
|
|
306
|
-
* <p>Updates the properties of an existing field. </p>
|
|
197
|
+
* @see {@link UpdateFieldCommand}
|
|
307
198
|
*/
|
|
308
199
|
updateField(args: UpdateFieldCommandInput, options?: __HttpHandlerOptions): Promise<UpdateFieldCommandOutput>;
|
|
309
200
|
updateField(args: UpdateFieldCommandInput, cb: (err: any, data?: UpdateFieldCommandOutput) => void): void;
|
|
310
201
|
updateField(args: UpdateFieldCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateFieldCommandOutput) => void): void;
|
|
311
202
|
/**
|
|
312
|
-
* @
|
|
313
|
-
* <p>Updates the attributes of an existing layout.</p>
|
|
314
|
-
* <p>If the action is successful, the service sends back an HTTP 200 response with an empty
|
|
315
|
-
* HTTP body.</p>
|
|
316
|
-
* <p>A <code>ValidationException</code> is returned when you add non-existent
|
|
317
|
-
* <code>fieldIds</code> to a layout.</p>
|
|
318
|
-
* <note>
|
|
319
|
-
* <p>Title and Status fields cannot be part of layouts because they are not
|
|
320
|
-
* configurable.</p>
|
|
321
|
-
* </note>
|
|
203
|
+
* @see {@link UpdateLayoutCommand}
|
|
322
204
|
*/
|
|
323
205
|
updateLayout(args: UpdateLayoutCommandInput, options?: __HttpHandlerOptions): Promise<UpdateLayoutCommandOutput>;
|
|
324
206
|
updateLayout(args: UpdateLayoutCommandInput, cb: (err: any, data?: UpdateLayoutCommandOutput) => void): void;
|
|
325
207
|
updateLayout(args: UpdateLayoutCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateLayoutCommandOutput) => void): void;
|
|
326
208
|
/**
|
|
327
|
-
* @
|
|
328
|
-
* <p>Updates the attributes of an existing template. The template attributes that can be
|
|
329
|
-
* modified include <code>name</code>, <code>description</code>,
|
|
330
|
-
* <code>layoutConfiguration</code>, <code>requiredFields</code>, and <code>status</code>. At
|
|
331
|
-
* least one of these attributes must not be null. If a null value is provided for a given
|
|
332
|
-
* attribute, that attribute is ignored and its current value is preserved.</p>
|
|
209
|
+
* @see {@link UpdateTemplateCommand}
|
|
333
210
|
*/
|
|
334
211
|
updateTemplate(args: UpdateTemplateCommandInput, options?: __HttpHandlerOptions): Promise<UpdateTemplateCommandOutput>;
|
|
335
212
|
updateTemplate(args: UpdateTemplateCommandInput, cb: (err: any, data?: UpdateTemplateCommandOutput) => void): void;
|
|
336
213
|
updateTemplate(args: UpdateTemplateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateTemplateCommandOutput) => void): void;
|
|
337
214
|
}
|
|
215
|
+
/**
|
|
216
|
+
* @public
|
|
217
|
+
* <p>With Amazon Connect Cases, your agents can track and manage customer issues that require
|
|
218
|
+
* multiple interactions, follow-up tasks, and teams in your contact center. A case represents a
|
|
219
|
+
* customer issue. It records the issue, the steps and interactions taken to resolve the issue,
|
|
220
|
+
* and the outcome. For more information, see <a href="https://docs.aws.amazon.com/connect/latest/adminguide/cases.html">Amazon Connect Cases</a> in the
|
|
221
|
+
* <i>Amazon Connect Administrator Guide</i>.</p>
|
|
222
|
+
*/
|
|
223
|
+
export declare class ConnectCases extends ConnectCasesClient implements ConnectCases {
|
|
224
|
+
}
|
|
@@ -120,7 +120,7 @@ import {
|
|
|
120
120
|
UpdateTemplateCommandOutput,
|
|
121
121
|
} from "./commands/UpdateTemplateCommand";
|
|
122
122
|
import { ConnectCasesClient } from "./ConnectCasesClient";
|
|
123
|
-
export
|
|
123
|
+
export interface ConnectCases {
|
|
124
124
|
batchGetField(
|
|
125
125
|
args: BatchGetFieldCommandInput,
|
|
126
126
|
options?: __HttpHandlerOptions
|
|
@@ -512,3 +512,6 @@ export declare class ConnectCases extends ConnectCasesClient {
|
|
|
512
512
|
cb: (err: any, data?: UpdateTemplateCommandOutput) => void
|
|
513
513
|
): void;
|
|
514
514
|
}
|
|
515
|
+
export declare class ConnectCases
|
|
516
|
+
extends ConnectCasesClient
|
|
517
|
+
implements ConnectCases {}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-connectcases",
|
|
3
3
|
"description": "AWS SDK for JavaScript Connectcases Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.316.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.316.0",
|
|
25
25
|
"@aws-sdk/config-resolver": "3.310.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.316.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.310.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.310.0",
|
|
29
29
|
"@aws-sdk/invalid-dependency": "3.310.0",
|
|
@@ -40,14 +40,14 @@
|
|
|
40
40
|
"@aws-sdk/node-config-provider": "3.310.0",
|
|
41
41
|
"@aws-sdk/node-http-handler": "3.310.0",
|
|
42
42
|
"@aws-sdk/protocol-http": "3.310.0",
|
|
43
|
-
"@aws-sdk/smithy-client": "3.
|
|
43
|
+
"@aws-sdk/smithy-client": "3.316.0",
|
|
44
44
|
"@aws-sdk/types": "3.310.0",
|
|
45
45
|
"@aws-sdk/url-parser": "3.310.0",
|
|
46
46
|
"@aws-sdk/util-base64": "3.310.0",
|
|
47
47
|
"@aws-sdk/util-body-length-browser": "3.310.0",
|
|
48
48
|
"@aws-sdk/util-body-length-node": "3.310.0",
|
|
49
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
50
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
49
|
+
"@aws-sdk/util-defaults-mode-browser": "3.316.0",
|
|
50
|
+
"@aws-sdk/util-defaults-mode-node": "3.316.0",
|
|
51
51
|
"@aws-sdk/util-endpoints": "3.310.0",
|
|
52
52
|
"@aws-sdk/util-retry": "3.310.0",
|
|
53
53
|
"@aws-sdk/util-user-agent-browser": "3.310.0",
|