@aws-sdk/client-connectcases 3.738.0 → 3.743.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 (49) hide show
  1. package/README.md +54 -0
  2. package/dist-cjs/index.js +410 -1
  3. package/dist-es/ConnectCases.js +10 -0
  4. package/dist-es/commands/BatchGetCaseRuleCommand.js +22 -0
  5. package/dist-es/commands/CreateCaseRuleCommand.js +22 -0
  6. package/dist-es/commands/DeleteCaseRuleCommand.js +22 -0
  7. package/dist-es/commands/ListCaseRulesCommand.js +22 -0
  8. package/dist-es/commands/UpdateCaseRuleCommand.js +22 -0
  9. package/dist-es/commands/index.js +5 -0
  10. package/dist-es/models/models_0.js +43 -0
  11. package/dist-es/pagination/ListCaseRulesPaginator.js +4 -0
  12. package/dist-es/pagination/index.js +1 -0
  13. package/dist-es/protocols/Aws_restJson1.js +261 -1
  14. package/dist-types/ConnectCases.d.ts +50 -1
  15. package/dist-types/ConnectCasesClient.d.ts +22 -3
  16. package/dist-types/commands/BatchGetCaseRuleCommand.d.ts +148 -0
  17. package/dist-types/commands/CreateCaseCommand.d.ts +0 -1
  18. package/dist-types/commands/CreateCaseRuleCommand.d.ts +135 -0
  19. package/dist-types/commands/CreateRelatedItemCommand.d.ts +3 -1
  20. package/dist-types/commands/CreateTemplateCommand.d.ts +29 -0
  21. package/dist-types/commands/DeleteCaseRuleCommand.d.ts +91 -0
  22. package/dist-types/commands/DeleteDomainCommand.d.ts +0 -1
  23. package/dist-types/commands/DeleteFieldCommand.d.ts +18 -15
  24. package/dist-types/commands/DeleteLayoutCommand.d.ts +3 -2
  25. package/dist-types/commands/GetTemplateCommand.d.ts +29 -1
  26. package/dist-types/commands/ListCaseRulesCommand.d.ts +101 -0
  27. package/dist-types/commands/ListTemplatesCommand.d.ts +23 -0
  28. package/dist-types/commands/UpdateCaseCommand.d.ts +0 -1
  29. package/dist-types/commands/UpdateCaseRuleCommand.d.ts +129 -0
  30. package/dist-types/commands/UpdateTemplateCommand.d.ts +29 -0
  31. package/dist-types/commands/index.d.ts +5 -0
  32. package/dist-types/index.d.ts +15 -1
  33. package/dist-types/models/models_0.d.ts +573 -1
  34. package/dist-types/pagination/ListCaseRulesPaginator.d.ts +7 -0
  35. package/dist-types/pagination/index.d.ts +1 -0
  36. package/dist-types/protocols/Aws_restJson1.d.ts +45 -0
  37. package/dist-types/ts3.4/ConnectCases.d.ts +85 -0
  38. package/dist-types/ts3.4/ConnectCasesClient.d.ts +30 -0
  39. package/dist-types/ts3.4/commands/BatchGetCaseRuleCommand.d.ts +50 -0
  40. package/dist-types/ts3.4/commands/CreateCaseRuleCommand.d.ts +50 -0
  41. package/dist-types/ts3.4/commands/DeleteCaseRuleCommand.d.ts +50 -0
  42. package/dist-types/ts3.4/commands/ListCaseRulesCommand.d.ts +50 -0
  43. package/dist-types/ts3.4/commands/UpdateCaseRuleCommand.d.ts +50 -0
  44. package/dist-types/ts3.4/commands/index.d.ts +5 -0
  45. package/dist-types/ts3.4/models/models_0.d.ts +199 -0
  46. package/dist-types/ts3.4/pagination/ListCaseRulesPaginator.d.ts +11 -0
  47. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  48. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +60 -0
  49. package/package.json +5 -5
@@ -1,13 +1,16 @@
1
1
  import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@smithy/protocol-http";
2
2
  import { SerdeContext as __SerdeContext } from "@smithy/types";
3
+ import { BatchGetCaseRuleCommandInput, BatchGetCaseRuleCommandOutput } from "../commands/BatchGetCaseRuleCommand";
3
4
  import { BatchGetFieldCommandInput, BatchGetFieldCommandOutput } from "../commands/BatchGetFieldCommand";
4
5
  import { BatchPutFieldOptionsCommandInput, BatchPutFieldOptionsCommandOutput } from "../commands/BatchPutFieldOptionsCommand";
5
6
  import { CreateCaseCommandInput, CreateCaseCommandOutput } from "../commands/CreateCaseCommand";
7
+ import { CreateCaseRuleCommandInput, CreateCaseRuleCommandOutput } from "../commands/CreateCaseRuleCommand";
6
8
  import { CreateDomainCommandInput, CreateDomainCommandOutput } from "../commands/CreateDomainCommand";
7
9
  import { CreateFieldCommandInput, CreateFieldCommandOutput } from "../commands/CreateFieldCommand";
8
10
  import { CreateLayoutCommandInput, CreateLayoutCommandOutput } from "../commands/CreateLayoutCommand";
9
11
  import { CreateRelatedItemCommandInput, CreateRelatedItemCommandOutput } from "../commands/CreateRelatedItemCommand";
10
12
  import { CreateTemplateCommandInput, CreateTemplateCommandOutput } from "../commands/CreateTemplateCommand";
13
+ import { DeleteCaseRuleCommandInput, DeleteCaseRuleCommandOutput } from "../commands/DeleteCaseRuleCommand";
11
14
  import { DeleteDomainCommandInput, DeleteDomainCommandOutput } from "../commands/DeleteDomainCommand";
12
15
  import { DeleteFieldCommandInput, DeleteFieldCommandOutput } from "../commands/DeleteFieldCommand";
13
16
  import { DeleteLayoutCommandInput, DeleteLayoutCommandOutput } from "../commands/DeleteLayoutCommand";
@@ -18,6 +21,7 @@ import { GetCaseEventConfigurationCommandInput, GetCaseEventConfigurationCommand
18
21
  import { GetDomainCommandInput, GetDomainCommandOutput } from "../commands/GetDomainCommand";
19
22
  import { GetLayoutCommandInput, GetLayoutCommandOutput } from "../commands/GetLayoutCommand";
20
23
  import { GetTemplateCommandInput, GetTemplateCommandOutput } from "../commands/GetTemplateCommand";
24
+ import { ListCaseRulesCommandInput, ListCaseRulesCommandOutput } from "../commands/ListCaseRulesCommand";
21
25
  import { ListCasesForContactCommandInput, ListCasesForContactCommandOutput } from "../commands/ListCasesForContactCommand";
22
26
  import { ListDomainsCommandInput, ListDomainsCommandOutput } from "../commands/ListDomainsCommand";
23
27
  import { ListFieldOptionsCommandInput, ListFieldOptionsCommandOutput } from "../commands/ListFieldOptionsCommand";
@@ -31,9 +35,14 @@ import { SearchRelatedItemsCommandInput, SearchRelatedItemsCommandOutput } from
31
35
  import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
32
36
  import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
33
37
  import { UpdateCaseCommandInput, UpdateCaseCommandOutput } from "../commands/UpdateCaseCommand";
38
+ import { UpdateCaseRuleCommandInput, UpdateCaseRuleCommandOutput } from "../commands/UpdateCaseRuleCommand";
34
39
  import { UpdateFieldCommandInput, UpdateFieldCommandOutput } from "../commands/UpdateFieldCommand";
35
40
  import { UpdateLayoutCommandInput, UpdateLayoutCommandOutput } from "../commands/UpdateLayoutCommand";
36
41
  import { UpdateTemplateCommandInput, UpdateTemplateCommandOutput } from "../commands/UpdateTemplateCommand";
42
+ /**
43
+ * serializeAws_restJson1BatchGetCaseRuleCommand
44
+ */
45
+ export declare const se_BatchGetCaseRuleCommand: (input: BatchGetCaseRuleCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
37
46
  /**
38
47
  * serializeAws_restJson1BatchGetFieldCommand
39
48
  */
@@ -46,6 +55,10 @@ export declare const se_BatchPutFieldOptionsCommand: (input: BatchPutFieldOption
46
55
  * serializeAws_restJson1CreateCaseCommand
47
56
  */
48
57
  export declare const se_CreateCaseCommand: (input: CreateCaseCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
58
+ /**
59
+ * serializeAws_restJson1CreateCaseRuleCommand
60
+ */
61
+ export declare const se_CreateCaseRuleCommand: (input: CreateCaseRuleCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
49
62
  /**
50
63
  * serializeAws_restJson1CreateDomainCommand
51
64
  */
@@ -66,6 +79,10 @@ export declare const se_CreateRelatedItemCommand: (input: CreateRelatedItemComma
66
79
  * serializeAws_restJson1CreateTemplateCommand
67
80
  */
68
81
  export declare const se_CreateTemplateCommand: (input: CreateTemplateCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
82
+ /**
83
+ * serializeAws_restJson1DeleteCaseRuleCommand
84
+ */
85
+ export declare const se_DeleteCaseRuleCommand: (input: DeleteCaseRuleCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
69
86
  /**
70
87
  * serializeAws_restJson1DeleteDomainCommand
71
88
  */
@@ -106,6 +123,10 @@ export declare const se_GetLayoutCommand: (input: GetLayoutCommandInput, context
106
123
  * serializeAws_restJson1GetTemplateCommand
107
124
  */
108
125
  export declare const se_GetTemplateCommand: (input: GetTemplateCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
126
+ /**
127
+ * serializeAws_restJson1ListCaseRulesCommand
128
+ */
129
+ export declare const se_ListCaseRulesCommand: (input: ListCaseRulesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
109
130
  /**
110
131
  * serializeAws_restJson1ListCasesForContactCommand
111
132
  */
@@ -158,6 +179,10 @@ export declare const se_UntagResourceCommand: (input: UntagResourceCommandInput,
158
179
  * serializeAws_restJson1UpdateCaseCommand
159
180
  */
160
181
  export declare const se_UpdateCaseCommand: (input: UpdateCaseCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
182
+ /**
183
+ * serializeAws_restJson1UpdateCaseRuleCommand
184
+ */
185
+ export declare const se_UpdateCaseRuleCommand: (input: UpdateCaseRuleCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
161
186
  /**
162
187
  * serializeAws_restJson1UpdateFieldCommand
163
188
  */
@@ -170,6 +195,10 @@ export declare const se_UpdateLayoutCommand: (input: UpdateLayoutCommandInput, c
170
195
  * serializeAws_restJson1UpdateTemplateCommand
171
196
  */
172
197
  export declare const se_UpdateTemplateCommand: (input: UpdateTemplateCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
198
+ /**
199
+ * deserializeAws_restJson1BatchGetCaseRuleCommand
200
+ */
201
+ export declare const de_BatchGetCaseRuleCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<BatchGetCaseRuleCommandOutput>;
173
202
  /**
174
203
  * deserializeAws_restJson1BatchGetFieldCommand
175
204
  */
@@ -182,6 +211,10 @@ export declare const de_BatchPutFieldOptionsCommand: (output: __HttpResponse, co
182
211
  * deserializeAws_restJson1CreateCaseCommand
183
212
  */
184
213
  export declare const de_CreateCaseCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateCaseCommandOutput>;
214
+ /**
215
+ * deserializeAws_restJson1CreateCaseRuleCommand
216
+ */
217
+ export declare const de_CreateCaseRuleCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateCaseRuleCommandOutput>;
185
218
  /**
186
219
  * deserializeAws_restJson1CreateDomainCommand
187
220
  */
@@ -202,6 +235,10 @@ export declare const de_CreateRelatedItemCommand: (output: __HttpResponse, conte
202
235
  * deserializeAws_restJson1CreateTemplateCommand
203
236
  */
204
237
  export declare const de_CreateTemplateCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateTemplateCommandOutput>;
238
+ /**
239
+ * deserializeAws_restJson1DeleteCaseRuleCommand
240
+ */
241
+ export declare const de_DeleteCaseRuleCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteCaseRuleCommandOutput>;
205
242
  /**
206
243
  * deserializeAws_restJson1DeleteDomainCommand
207
244
  */
@@ -242,6 +279,10 @@ export declare const de_GetLayoutCommand: (output: __HttpResponse, context: __Se
242
279
  * deserializeAws_restJson1GetTemplateCommand
243
280
  */
244
281
  export declare const de_GetTemplateCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetTemplateCommandOutput>;
282
+ /**
283
+ * deserializeAws_restJson1ListCaseRulesCommand
284
+ */
285
+ export declare const de_ListCaseRulesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListCaseRulesCommandOutput>;
245
286
  /**
246
287
  * deserializeAws_restJson1ListCasesForContactCommand
247
288
  */
@@ -294,6 +335,10 @@ export declare const de_UntagResourceCommand: (output: __HttpResponse, context:
294
335
  * deserializeAws_restJson1UpdateCaseCommand
295
336
  */
296
337
  export declare const de_UpdateCaseCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateCaseCommandOutput>;
338
+ /**
339
+ * deserializeAws_restJson1UpdateCaseRuleCommand
340
+ */
341
+ export declare const de_UpdateCaseRuleCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateCaseRuleCommandOutput>;
297
342
  /**
298
343
  * deserializeAws_restJson1UpdateFieldCommand
299
344
  */
@@ -1,4 +1,8 @@
1
1
  import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types";
2
+ import {
3
+ BatchGetCaseRuleCommandInput,
4
+ BatchGetCaseRuleCommandOutput,
5
+ } from "./commands/BatchGetCaseRuleCommand";
2
6
  import {
3
7
  BatchGetFieldCommandInput,
4
8
  BatchGetFieldCommandOutput,
@@ -11,6 +15,10 @@ import {
11
15
  CreateCaseCommandInput,
12
16
  CreateCaseCommandOutput,
13
17
  } from "./commands/CreateCaseCommand";
18
+ import {
19
+ CreateCaseRuleCommandInput,
20
+ CreateCaseRuleCommandOutput,
21
+ } from "./commands/CreateCaseRuleCommand";
14
22
  import {
15
23
  CreateDomainCommandInput,
16
24
  CreateDomainCommandOutput,
@@ -31,6 +39,10 @@ import {
31
39
  CreateTemplateCommandInput,
32
40
  CreateTemplateCommandOutput,
33
41
  } from "./commands/CreateTemplateCommand";
42
+ import {
43
+ DeleteCaseRuleCommandInput,
44
+ DeleteCaseRuleCommandOutput,
45
+ } from "./commands/DeleteCaseRuleCommand";
34
46
  import {
35
47
  DeleteDomainCommandInput,
36
48
  DeleteDomainCommandOutput,
@@ -71,6 +83,10 @@ import {
71
83
  GetTemplateCommandInput,
72
84
  GetTemplateCommandOutput,
73
85
  } from "./commands/GetTemplateCommand";
86
+ import {
87
+ ListCaseRulesCommandInput,
88
+ ListCaseRulesCommandOutput,
89
+ } from "./commands/ListCaseRulesCommand";
74
90
  import {
75
91
  ListCasesForContactCommandInput,
76
92
  ListCasesForContactCommandOutput,
@@ -123,6 +139,10 @@ import {
123
139
  UpdateCaseCommandInput,
124
140
  UpdateCaseCommandOutput,
125
141
  } from "./commands/UpdateCaseCommand";
142
+ import {
143
+ UpdateCaseRuleCommandInput,
144
+ UpdateCaseRuleCommandOutput,
145
+ } from "./commands/UpdateCaseRuleCommand";
126
146
  import {
127
147
  UpdateFieldCommandInput,
128
148
  UpdateFieldCommandOutput,
@@ -137,6 +157,19 @@ import {
137
157
  } from "./commands/UpdateTemplateCommand";
138
158
  import { ConnectCasesClient } from "./ConnectCasesClient";
139
159
  export interface ConnectCases {
160
+ batchGetCaseRule(
161
+ args: BatchGetCaseRuleCommandInput,
162
+ options?: __HttpHandlerOptions
163
+ ): Promise<BatchGetCaseRuleCommandOutput>;
164
+ batchGetCaseRule(
165
+ args: BatchGetCaseRuleCommandInput,
166
+ cb: (err: any, data?: BatchGetCaseRuleCommandOutput) => void
167
+ ): void;
168
+ batchGetCaseRule(
169
+ args: BatchGetCaseRuleCommandInput,
170
+ options: __HttpHandlerOptions,
171
+ cb: (err: any, data?: BatchGetCaseRuleCommandOutput) => void
172
+ ): void;
140
173
  batchGetField(
141
174
  args: BatchGetFieldCommandInput,
142
175
  options?: __HttpHandlerOptions
@@ -176,6 +209,19 @@ export interface ConnectCases {
176
209
  options: __HttpHandlerOptions,
177
210
  cb: (err: any, data?: CreateCaseCommandOutput) => void
178
211
  ): void;
212
+ createCaseRule(
213
+ args: CreateCaseRuleCommandInput,
214
+ options?: __HttpHandlerOptions
215
+ ): Promise<CreateCaseRuleCommandOutput>;
216
+ createCaseRule(
217
+ args: CreateCaseRuleCommandInput,
218
+ cb: (err: any, data?: CreateCaseRuleCommandOutput) => void
219
+ ): void;
220
+ createCaseRule(
221
+ args: CreateCaseRuleCommandInput,
222
+ options: __HttpHandlerOptions,
223
+ cb: (err: any, data?: CreateCaseRuleCommandOutput) => void
224
+ ): void;
179
225
  createDomain(
180
226
  args: CreateDomainCommandInput,
181
227
  options?: __HttpHandlerOptions
@@ -241,6 +287,19 @@ export interface ConnectCases {
241
287
  options: __HttpHandlerOptions,
242
288
  cb: (err: any, data?: CreateTemplateCommandOutput) => void
243
289
  ): void;
290
+ deleteCaseRule(
291
+ args: DeleteCaseRuleCommandInput,
292
+ options?: __HttpHandlerOptions
293
+ ): Promise<DeleteCaseRuleCommandOutput>;
294
+ deleteCaseRule(
295
+ args: DeleteCaseRuleCommandInput,
296
+ cb: (err: any, data?: DeleteCaseRuleCommandOutput) => void
297
+ ): void;
298
+ deleteCaseRule(
299
+ args: DeleteCaseRuleCommandInput,
300
+ options: __HttpHandlerOptions,
301
+ cb: (err: any, data?: DeleteCaseRuleCommandOutput) => void
302
+ ): void;
244
303
  deleteDomain(
245
304
  args: DeleteDomainCommandInput,
246
305
  options?: __HttpHandlerOptions
@@ -371,6 +430,19 @@ export interface ConnectCases {
371
430
  options: __HttpHandlerOptions,
372
431
  cb: (err: any, data?: GetTemplateCommandOutput) => void
373
432
  ): void;
433
+ listCaseRules(
434
+ args: ListCaseRulesCommandInput,
435
+ options?: __HttpHandlerOptions
436
+ ): Promise<ListCaseRulesCommandOutput>;
437
+ listCaseRules(
438
+ args: ListCaseRulesCommandInput,
439
+ cb: (err: any, data?: ListCaseRulesCommandOutput) => void
440
+ ): void;
441
+ listCaseRules(
442
+ args: ListCaseRulesCommandInput,
443
+ options: __HttpHandlerOptions,
444
+ cb: (err: any, data?: ListCaseRulesCommandOutput) => void
445
+ ): void;
374
446
  listCasesForContact(
375
447
  args: ListCasesForContactCommandInput,
376
448
  options?: __HttpHandlerOptions
@@ -541,6 +613,19 @@ export interface ConnectCases {
541
613
  options: __HttpHandlerOptions,
542
614
  cb: (err: any, data?: UpdateCaseCommandOutput) => void
543
615
  ): void;
616
+ updateCaseRule(
617
+ args: UpdateCaseRuleCommandInput,
618
+ options?: __HttpHandlerOptions
619
+ ): Promise<UpdateCaseRuleCommandOutput>;
620
+ updateCaseRule(
621
+ args: UpdateCaseRuleCommandInput,
622
+ cb: (err: any, data?: UpdateCaseRuleCommandOutput) => void
623
+ ): void;
624
+ updateCaseRule(
625
+ args: UpdateCaseRuleCommandInput,
626
+ options: __HttpHandlerOptions,
627
+ cb: (err: any, data?: UpdateCaseRuleCommandOutput) => void
628
+ ): void;
544
629
  updateField(
545
630
  args: UpdateFieldCommandInput,
546
631
  options?: __HttpHandlerOptions
@@ -45,6 +45,10 @@ import {
45
45
  HttpAuthSchemeInputConfig,
46
46
  HttpAuthSchemeResolvedConfig,
47
47
  } from "./auth/httpAuthSchemeProvider";
48
+ import {
49
+ BatchGetCaseRuleCommandInput,
50
+ BatchGetCaseRuleCommandOutput,
51
+ } from "./commands/BatchGetCaseRuleCommand";
48
52
  import {
49
53
  BatchGetFieldCommandInput,
50
54
  BatchGetFieldCommandOutput,
@@ -57,6 +61,10 @@ import {
57
61
  CreateCaseCommandInput,
58
62
  CreateCaseCommandOutput,
59
63
  } from "./commands/CreateCaseCommand";
64
+ import {
65
+ CreateCaseRuleCommandInput,
66
+ CreateCaseRuleCommandOutput,
67
+ } from "./commands/CreateCaseRuleCommand";
60
68
  import {
61
69
  CreateDomainCommandInput,
62
70
  CreateDomainCommandOutput,
@@ -77,6 +85,10 @@ import {
77
85
  CreateTemplateCommandInput,
78
86
  CreateTemplateCommandOutput,
79
87
  } from "./commands/CreateTemplateCommand";
88
+ import {
89
+ DeleteCaseRuleCommandInput,
90
+ DeleteCaseRuleCommandOutput,
91
+ } from "./commands/DeleteCaseRuleCommand";
80
92
  import {
81
93
  DeleteDomainCommandInput,
82
94
  DeleteDomainCommandOutput,
@@ -117,6 +129,10 @@ import {
117
129
  GetTemplateCommandInput,
118
130
  GetTemplateCommandOutput,
119
131
  } from "./commands/GetTemplateCommand";
132
+ import {
133
+ ListCaseRulesCommandInput,
134
+ ListCaseRulesCommandOutput,
135
+ } from "./commands/ListCaseRulesCommand";
120
136
  import {
121
137
  ListCasesForContactCommandInput,
122
138
  ListCasesForContactCommandOutput,
@@ -169,6 +185,10 @@ import {
169
185
  UpdateCaseCommandInput,
170
186
  UpdateCaseCommandOutput,
171
187
  } from "./commands/UpdateCaseCommand";
188
+ import {
189
+ UpdateCaseRuleCommandInput,
190
+ UpdateCaseRuleCommandOutput,
191
+ } from "./commands/UpdateCaseRuleCommand";
172
192
  import {
173
193
  UpdateFieldCommandInput,
174
194
  UpdateFieldCommandOutput,
@@ -189,14 +209,17 @@ import {
189
209
  import { RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions";
190
210
  export { __Client };
191
211
  export type ServiceInputTypes =
212
+ | BatchGetCaseRuleCommandInput
192
213
  | BatchGetFieldCommandInput
193
214
  | BatchPutFieldOptionsCommandInput
194
215
  | CreateCaseCommandInput
216
+ | CreateCaseRuleCommandInput
195
217
  | CreateDomainCommandInput
196
218
  | CreateFieldCommandInput
197
219
  | CreateLayoutCommandInput
198
220
  | CreateRelatedItemCommandInput
199
221
  | CreateTemplateCommandInput
222
+ | DeleteCaseRuleCommandInput
200
223
  | DeleteDomainCommandInput
201
224
  | DeleteFieldCommandInput
202
225
  | DeleteLayoutCommandInput
@@ -207,6 +230,7 @@ export type ServiceInputTypes =
207
230
  | GetDomainCommandInput
208
231
  | GetLayoutCommandInput
209
232
  | GetTemplateCommandInput
233
+ | ListCaseRulesCommandInput
210
234
  | ListCasesForContactCommandInput
211
235
  | ListDomainsCommandInput
212
236
  | ListFieldOptionsCommandInput
@@ -220,18 +244,22 @@ export type ServiceInputTypes =
220
244
  | TagResourceCommandInput
221
245
  | UntagResourceCommandInput
222
246
  | UpdateCaseCommandInput
247
+ | UpdateCaseRuleCommandInput
223
248
  | UpdateFieldCommandInput
224
249
  | UpdateLayoutCommandInput
225
250
  | UpdateTemplateCommandInput;
226
251
  export type ServiceOutputTypes =
252
+ | BatchGetCaseRuleCommandOutput
227
253
  | BatchGetFieldCommandOutput
228
254
  | BatchPutFieldOptionsCommandOutput
229
255
  | CreateCaseCommandOutput
256
+ | CreateCaseRuleCommandOutput
230
257
  | CreateDomainCommandOutput
231
258
  | CreateFieldCommandOutput
232
259
  | CreateLayoutCommandOutput
233
260
  | CreateRelatedItemCommandOutput
234
261
  | CreateTemplateCommandOutput
262
+ | DeleteCaseRuleCommandOutput
235
263
  | DeleteDomainCommandOutput
236
264
  | DeleteFieldCommandOutput
237
265
  | DeleteLayoutCommandOutput
@@ -242,6 +270,7 @@ export type ServiceOutputTypes =
242
270
  | GetDomainCommandOutput
243
271
  | GetLayoutCommandOutput
244
272
  | GetTemplateCommandOutput
273
+ | ListCaseRulesCommandOutput
245
274
  | ListCasesForContactCommandOutput
246
275
  | ListDomainsCommandOutput
247
276
  | ListFieldOptionsCommandOutput
@@ -255,6 +284,7 @@ export type ServiceOutputTypes =
255
284
  | TagResourceCommandOutput
256
285
  | UntagResourceCommandOutput
257
286
  | UpdateCaseCommandOutput
287
+ | UpdateCaseRuleCommandOutput
258
288
  | UpdateFieldCommandOutput
259
289
  | UpdateLayoutCommandOutput
260
290
  | UpdateTemplateCommandOutput;
@@ -0,0 +1,50 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ ConnectCasesClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../ConnectCasesClient";
8
+ import {
9
+ BatchGetCaseRuleRequest,
10
+ BatchGetCaseRuleResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface BatchGetCaseRuleCommandInput extends BatchGetCaseRuleRequest {}
15
+ export interface BatchGetCaseRuleCommandOutput
16
+ extends BatchGetCaseRuleResponse,
17
+ __MetadataBearer {}
18
+ declare const BatchGetCaseRuleCommand_base: {
19
+ new (
20
+ input: BatchGetCaseRuleCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
22
+ BatchGetCaseRuleCommandInput,
23
+ BatchGetCaseRuleCommandOutput,
24
+ ConnectCasesClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
27
+ >;
28
+ new (
29
+ __0_0: BatchGetCaseRuleCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ BatchGetCaseRuleCommandInput,
32
+ BatchGetCaseRuleCommandOutput,
33
+ ConnectCasesClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
37
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
+ };
39
+ export declare class BatchGetCaseRuleCommand extends BatchGetCaseRuleCommand_base {
40
+ protected static __types: {
41
+ api: {
42
+ input: BatchGetCaseRuleRequest;
43
+ output: BatchGetCaseRuleResponse;
44
+ };
45
+ sdk: {
46
+ input: BatchGetCaseRuleCommandInput;
47
+ output: BatchGetCaseRuleCommandOutput;
48
+ };
49
+ };
50
+ }
@@ -0,0 +1,50 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ ConnectCasesClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../ConnectCasesClient";
8
+ import {
9
+ CreateCaseRuleRequest,
10
+ CreateCaseRuleResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface CreateCaseRuleCommandInput extends CreateCaseRuleRequest {}
15
+ export interface CreateCaseRuleCommandOutput
16
+ extends CreateCaseRuleResponse,
17
+ __MetadataBearer {}
18
+ declare const CreateCaseRuleCommand_base: {
19
+ new (
20
+ input: CreateCaseRuleCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
22
+ CreateCaseRuleCommandInput,
23
+ CreateCaseRuleCommandOutput,
24
+ ConnectCasesClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
27
+ >;
28
+ new (
29
+ __0_0: CreateCaseRuleCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ CreateCaseRuleCommandInput,
32
+ CreateCaseRuleCommandOutput,
33
+ ConnectCasesClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
37
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
+ };
39
+ export declare class CreateCaseRuleCommand extends CreateCaseRuleCommand_base {
40
+ protected static __types: {
41
+ api: {
42
+ input: CreateCaseRuleRequest;
43
+ output: CreateCaseRuleResponse;
44
+ };
45
+ sdk: {
46
+ input: CreateCaseRuleCommandInput;
47
+ output: CreateCaseRuleCommandOutput;
48
+ };
49
+ };
50
+ }
@@ -0,0 +1,50 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ ConnectCasesClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../ConnectCasesClient";
8
+ import {
9
+ DeleteCaseRuleRequest,
10
+ DeleteCaseRuleResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface DeleteCaseRuleCommandInput extends DeleteCaseRuleRequest {}
15
+ export interface DeleteCaseRuleCommandOutput
16
+ extends DeleteCaseRuleResponse,
17
+ __MetadataBearer {}
18
+ declare const DeleteCaseRuleCommand_base: {
19
+ new (
20
+ input: DeleteCaseRuleCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
22
+ DeleteCaseRuleCommandInput,
23
+ DeleteCaseRuleCommandOutput,
24
+ ConnectCasesClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
27
+ >;
28
+ new (
29
+ __0_0: DeleteCaseRuleCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ DeleteCaseRuleCommandInput,
32
+ DeleteCaseRuleCommandOutput,
33
+ ConnectCasesClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
37
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
+ };
39
+ export declare class DeleteCaseRuleCommand extends DeleteCaseRuleCommand_base {
40
+ protected static __types: {
41
+ api: {
42
+ input: DeleteCaseRuleRequest;
43
+ output: {};
44
+ };
45
+ sdk: {
46
+ input: DeleteCaseRuleCommandInput;
47
+ output: DeleteCaseRuleCommandOutput;
48
+ };
49
+ };
50
+ }
@@ -0,0 +1,50 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ ConnectCasesClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../ConnectCasesClient";
8
+ import {
9
+ ListCaseRulesRequest,
10
+ ListCaseRulesResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface ListCaseRulesCommandInput extends ListCaseRulesRequest {}
15
+ export interface ListCaseRulesCommandOutput
16
+ extends ListCaseRulesResponse,
17
+ __MetadataBearer {}
18
+ declare const ListCaseRulesCommand_base: {
19
+ new (
20
+ input: ListCaseRulesCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
22
+ ListCaseRulesCommandInput,
23
+ ListCaseRulesCommandOutput,
24
+ ConnectCasesClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
27
+ >;
28
+ new (
29
+ __0_0: ListCaseRulesCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ ListCaseRulesCommandInput,
32
+ ListCaseRulesCommandOutput,
33
+ ConnectCasesClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
37
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
+ };
39
+ export declare class ListCaseRulesCommand extends ListCaseRulesCommand_base {
40
+ protected static __types: {
41
+ api: {
42
+ input: ListCaseRulesRequest;
43
+ output: ListCaseRulesResponse;
44
+ };
45
+ sdk: {
46
+ input: ListCaseRulesCommandInput;
47
+ output: ListCaseRulesCommandOutput;
48
+ };
49
+ };
50
+ }
@@ -0,0 +1,50 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ ConnectCasesClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../ConnectCasesClient";
8
+ import {
9
+ UpdateCaseRuleRequest,
10
+ UpdateCaseRuleResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface UpdateCaseRuleCommandInput extends UpdateCaseRuleRequest {}
15
+ export interface UpdateCaseRuleCommandOutput
16
+ extends UpdateCaseRuleResponse,
17
+ __MetadataBearer {}
18
+ declare const UpdateCaseRuleCommand_base: {
19
+ new (
20
+ input: UpdateCaseRuleCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
22
+ UpdateCaseRuleCommandInput,
23
+ UpdateCaseRuleCommandOutput,
24
+ ConnectCasesClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
27
+ >;
28
+ new (
29
+ __0_0: UpdateCaseRuleCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ UpdateCaseRuleCommandInput,
32
+ UpdateCaseRuleCommandOutput,
33
+ ConnectCasesClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
37
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
+ };
39
+ export declare class UpdateCaseRuleCommand extends UpdateCaseRuleCommand_base {
40
+ protected static __types: {
41
+ api: {
42
+ input: UpdateCaseRuleRequest;
43
+ output: {};
44
+ };
45
+ sdk: {
46
+ input: UpdateCaseRuleCommandInput;
47
+ output: UpdateCaseRuleCommandOutput;
48
+ };
49
+ };
50
+ }
@@ -1,11 +1,14 @@
1
+ export * from "./BatchGetCaseRuleCommand";
1
2
  export * from "./BatchGetFieldCommand";
2
3
  export * from "./BatchPutFieldOptionsCommand";
3
4
  export * from "./CreateCaseCommand";
5
+ export * from "./CreateCaseRuleCommand";
4
6
  export * from "./CreateDomainCommand";
5
7
  export * from "./CreateFieldCommand";
6
8
  export * from "./CreateLayoutCommand";
7
9
  export * from "./CreateRelatedItemCommand";
8
10
  export * from "./CreateTemplateCommand";
11
+ export * from "./DeleteCaseRuleCommand";
9
12
  export * from "./DeleteDomainCommand";
10
13
  export * from "./DeleteFieldCommand";
11
14
  export * from "./DeleteLayoutCommand";
@@ -16,6 +19,7 @@ export * from "./GetCaseEventConfigurationCommand";
16
19
  export * from "./GetDomainCommand";
17
20
  export * from "./GetLayoutCommand";
18
21
  export * from "./GetTemplateCommand";
22
+ export * from "./ListCaseRulesCommand";
19
23
  export * from "./ListCasesForContactCommand";
20
24
  export * from "./ListDomainsCommand";
21
25
  export * from "./ListFieldOptionsCommand";
@@ -29,6 +33,7 @@ export * from "./SearchRelatedItemsCommand";
29
33
  export * from "./TagResourceCommand";
30
34
  export * from "./UntagResourceCommand";
31
35
  export * from "./UpdateCaseCommand";
36
+ export * from "./UpdateCaseRuleCommand";
32
37
  export * from "./UpdateFieldCommand";
33
38
  export * from "./UpdateLayoutCommand";
34
39
  export * from "./UpdateTemplateCommand";