@aws-sdk/client-connectcases 3.928.0 → 3.929.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/index.js +1928 -2305
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-es/ConnectCasesClient.js +2 -0
- package/dist-es/commands/BatchGetCaseRuleCommand.js +3 -9
- package/dist-es/commands/BatchGetFieldCommand.js +3 -9
- package/dist-es/commands/BatchPutFieldOptionsCommand.js +3 -9
- package/dist-es/commands/CreateCaseCommand.js +3 -10
- package/dist-es/commands/CreateCaseRuleCommand.js +3 -9
- package/dist-es/commands/CreateDomainCommand.js +3 -9
- package/dist-es/commands/CreateFieldCommand.js +3 -9
- package/dist-es/commands/CreateLayoutCommand.js +3 -9
- package/dist-es/commands/CreateRelatedItemCommand.js +3 -10
- package/dist-es/commands/CreateTemplateCommand.js +3 -9
- package/dist-es/commands/DeleteCaseCommand.js +3 -9
- package/dist-es/commands/DeleteCaseRuleCommand.js +3 -9
- package/dist-es/commands/DeleteDomainCommand.js +3 -9
- package/dist-es/commands/DeleteFieldCommand.js +3 -9
- package/dist-es/commands/DeleteLayoutCommand.js +3 -9
- package/dist-es/commands/DeleteRelatedItemCommand.js +3 -9
- package/dist-es/commands/DeleteTemplateCommand.js +3 -9
- package/dist-es/commands/GetCaseAuditEventsCommand.js +3 -10
- package/dist-es/commands/GetCaseCommand.js +3 -9
- package/dist-es/commands/GetCaseEventConfigurationCommand.js +3 -9
- package/dist-es/commands/GetDomainCommand.js +3 -9
- package/dist-es/commands/GetLayoutCommand.js +3 -9
- package/dist-es/commands/GetTemplateCommand.js +3 -9
- package/dist-es/commands/ListCaseRulesCommand.js +3 -9
- package/dist-es/commands/ListCasesForContactCommand.js +3 -9
- package/dist-es/commands/ListDomainsCommand.js +3 -9
- package/dist-es/commands/ListFieldOptionsCommand.js +3 -9
- package/dist-es/commands/ListFieldsCommand.js +3 -9
- package/dist-es/commands/ListLayoutsCommand.js +3 -9
- package/dist-es/commands/ListTagsForResourceCommand.js +3 -9
- package/dist-es/commands/ListTemplatesCommand.js +3 -9
- package/dist-es/commands/PutCaseEventConfigurationCommand.js +3 -9
- package/dist-es/commands/SearchAllRelatedItemsCommand.js +3 -10
- package/dist-es/commands/SearchCasesCommand.js +3 -9
- package/dist-es/commands/SearchRelatedItemsCommand.js +3 -10
- package/dist-es/commands/TagResourceCommand.js +3 -9
- package/dist-es/commands/UntagResourceCommand.js +3 -9
- package/dist-es/commands/UpdateCaseCommand.js +3 -10
- package/dist-es/commands/UpdateCaseRuleCommand.js +3 -9
- package/dist-es/commands/UpdateFieldCommand.js +3 -9
- package/dist-es/commands/UpdateLayoutCommand.js +3 -9
- package/dist-es/commands/UpdateTemplateCommand.js +3 -9
- package/dist-es/models/models_0.js +0 -139
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +1832 -0
- package/dist-types/ConnectCasesClient.d.ts +10 -1
- package/dist-types/models/models_0.d.ts +0 -84
- package/dist-types/runtimeConfig.browser.d.ts +1 -0
- package/dist-types/runtimeConfig.d.ts +1 -0
- package/dist-types/runtimeConfig.native.d.ts +1 -0
- package/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +250 -0
- package/dist-types/ts3.4/ConnectCasesClient.d.ts +4 -0
- package/dist-types/ts3.4/models/models_0.d.ts +0 -55
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +257 -0
- package/package.json +2 -3
- package/dist-es/protocols/Aws_restJson1.js +0 -1837
- package/dist-types/protocols/Aws_restJson1.d.ts +0 -380
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +0 -509
|
@@ -1,380 +0,0 @@
|
|
|
1
|
-
import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@smithy/protocol-http";
|
|
2
|
-
import { SerdeContext as __SerdeContext } from "@smithy/types";
|
|
3
|
-
import { BatchGetCaseRuleCommandInput, BatchGetCaseRuleCommandOutput } from "../commands/BatchGetCaseRuleCommand";
|
|
4
|
-
import { BatchGetFieldCommandInput, BatchGetFieldCommandOutput } from "../commands/BatchGetFieldCommand";
|
|
5
|
-
import { BatchPutFieldOptionsCommandInput, BatchPutFieldOptionsCommandOutput } from "../commands/BatchPutFieldOptionsCommand";
|
|
6
|
-
import { CreateCaseCommandInput, CreateCaseCommandOutput } from "../commands/CreateCaseCommand";
|
|
7
|
-
import { CreateCaseRuleCommandInput, CreateCaseRuleCommandOutput } from "../commands/CreateCaseRuleCommand";
|
|
8
|
-
import { CreateDomainCommandInput, CreateDomainCommandOutput } from "../commands/CreateDomainCommand";
|
|
9
|
-
import { CreateFieldCommandInput, CreateFieldCommandOutput } from "../commands/CreateFieldCommand";
|
|
10
|
-
import { CreateLayoutCommandInput, CreateLayoutCommandOutput } from "../commands/CreateLayoutCommand";
|
|
11
|
-
import { CreateRelatedItemCommandInput, CreateRelatedItemCommandOutput } from "../commands/CreateRelatedItemCommand";
|
|
12
|
-
import { CreateTemplateCommandInput, CreateTemplateCommandOutput } from "../commands/CreateTemplateCommand";
|
|
13
|
-
import { DeleteCaseCommandInput, DeleteCaseCommandOutput } from "../commands/DeleteCaseCommand";
|
|
14
|
-
import { DeleteCaseRuleCommandInput, DeleteCaseRuleCommandOutput } from "../commands/DeleteCaseRuleCommand";
|
|
15
|
-
import { DeleteDomainCommandInput, DeleteDomainCommandOutput } from "../commands/DeleteDomainCommand";
|
|
16
|
-
import { DeleteFieldCommandInput, DeleteFieldCommandOutput } from "../commands/DeleteFieldCommand";
|
|
17
|
-
import { DeleteLayoutCommandInput, DeleteLayoutCommandOutput } from "../commands/DeleteLayoutCommand";
|
|
18
|
-
import { DeleteRelatedItemCommandInput, DeleteRelatedItemCommandOutput } from "../commands/DeleteRelatedItemCommand";
|
|
19
|
-
import { DeleteTemplateCommandInput, DeleteTemplateCommandOutput } from "../commands/DeleteTemplateCommand";
|
|
20
|
-
import { GetCaseAuditEventsCommandInput, GetCaseAuditEventsCommandOutput } from "../commands/GetCaseAuditEventsCommand";
|
|
21
|
-
import { GetCaseCommandInput, GetCaseCommandOutput } from "../commands/GetCaseCommand";
|
|
22
|
-
import { GetCaseEventConfigurationCommandInput, GetCaseEventConfigurationCommandOutput } from "../commands/GetCaseEventConfigurationCommand";
|
|
23
|
-
import { GetDomainCommandInput, GetDomainCommandOutput } from "../commands/GetDomainCommand";
|
|
24
|
-
import { GetLayoutCommandInput, GetLayoutCommandOutput } from "../commands/GetLayoutCommand";
|
|
25
|
-
import { GetTemplateCommandInput, GetTemplateCommandOutput } from "../commands/GetTemplateCommand";
|
|
26
|
-
import { ListCaseRulesCommandInput, ListCaseRulesCommandOutput } from "../commands/ListCaseRulesCommand";
|
|
27
|
-
import { ListCasesForContactCommandInput, ListCasesForContactCommandOutput } from "../commands/ListCasesForContactCommand";
|
|
28
|
-
import { ListDomainsCommandInput, ListDomainsCommandOutput } from "../commands/ListDomainsCommand";
|
|
29
|
-
import { ListFieldOptionsCommandInput, ListFieldOptionsCommandOutput } from "../commands/ListFieldOptionsCommand";
|
|
30
|
-
import { ListFieldsCommandInput, ListFieldsCommandOutput } from "../commands/ListFieldsCommand";
|
|
31
|
-
import { ListLayoutsCommandInput, ListLayoutsCommandOutput } from "../commands/ListLayoutsCommand";
|
|
32
|
-
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
|
|
33
|
-
import { ListTemplatesCommandInput, ListTemplatesCommandOutput } from "../commands/ListTemplatesCommand";
|
|
34
|
-
import { PutCaseEventConfigurationCommandInput, PutCaseEventConfigurationCommandOutput } from "../commands/PutCaseEventConfigurationCommand";
|
|
35
|
-
import { SearchAllRelatedItemsCommandInput, SearchAllRelatedItemsCommandOutput } from "../commands/SearchAllRelatedItemsCommand";
|
|
36
|
-
import { SearchCasesCommandInput, SearchCasesCommandOutput } from "../commands/SearchCasesCommand";
|
|
37
|
-
import { SearchRelatedItemsCommandInput, SearchRelatedItemsCommandOutput } from "../commands/SearchRelatedItemsCommand";
|
|
38
|
-
import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
|
|
39
|
-
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
|
|
40
|
-
import { UpdateCaseCommandInput, UpdateCaseCommandOutput } from "../commands/UpdateCaseCommand";
|
|
41
|
-
import { UpdateCaseRuleCommandInput, UpdateCaseRuleCommandOutput } from "../commands/UpdateCaseRuleCommand";
|
|
42
|
-
import { UpdateFieldCommandInput, UpdateFieldCommandOutput } from "../commands/UpdateFieldCommand";
|
|
43
|
-
import { UpdateLayoutCommandInput, UpdateLayoutCommandOutput } from "../commands/UpdateLayoutCommand";
|
|
44
|
-
import { UpdateTemplateCommandInput, UpdateTemplateCommandOutput } from "../commands/UpdateTemplateCommand";
|
|
45
|
-
/**
|
|
46
|
-
* serializeAws_restJson1BatchGetCaseRuleCommand
|
|
47
|
-
*/
|
|
48
|
-
export declare const se_BatchGetCaseRuleCommand: (input: BatchGetCaseRuleCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
49
|
-
/**
|
|
50
|
-
* serializeAws_restJson1BatchGetFieldCommand
|
|
51
|
-
*/
|
|
52
|
-
export declare const se_BatchGetFieldCommand: (input: BatchGetFieldCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
53
|
-
/**
|
|
54
|
-
* serializeAws_restJson1BatchPutFieldOptionsCommand
|
|
55
|
-
*/
|
|
56
|
-
export declare const se_BatchPutFieldOptionsCommand: (input: BatchPutFieldOptionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
57
|
-
/**
|
|
58
|
-
* serializeAws_restJson1CreateCaseCommand
|
|
59
|
-
*/
|
|
60
|
-
export declare const se_CreateCaseCommand: (input: CreateCaseCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
61
|
-
/**
|
|
62
|
-
* serializeAws_restJson1CreateCaseRuleCommand
|
|
63
|
-
*/
|
|
64
|
-
export declare const se_CreateCaseRuleCommand: (input: CreateCaseRuleCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
65
|
-
/**
|
|
66
|
-
* serializeAws_restJson1CreateDomainCommand
|
|
67
|
-
*/
|
|
68
|
-
export declare const se_CreateDomainCommand: (input: CreateDomainCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
69
|
-
/**
|
|
70
|
-
* serializeAws_restJson1CreateFieldCommand
|
|
71
|
-
*/
|
|
72
|
-
export declare const se_CreateFieldCommand: (input: CreateFieldCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
73
|
-
/**
|
|
74
|
-
* serializeAws_restJson1CreateLayoutCommand
|
|
75
|
-
*/
|
|
76
|
-
export declare const se_CreateLayoutCommand: (input: CreateLayoutCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
77
|
-
/**
|
|
78
|
-
* serializeAws_restJson1CreateRelatedItemCommand
|
|
79
|
-
*/
|
|
80
|
-
export declare const se_CreateRelatedItemCommand: (input: CreateRelatedItemCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
81
|
-
/**
|
|
82
|
-
* serializeAws_restJson1CreateTemplateCommand
|
|
83
|
-
*/
|
|
84
|
-
export declare const se_CreateTemplateCommand: (input: CreateTemplateCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
85
|
-
/**
|
|
86
|
-
* serializeAws_restJson1DeleteCaseCommand
|
|
87
|
-
*/
|
|
88
|
-
export declare const se_DeleteCaseCommand: (input: DeleteCaseCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
89
|
-
/**
|
|
90
|
-
* serializeAws_restJson1DeleteCaseRuleCommand
|
|
91
|
-
*/
|
|
92
|
-
export declare const se_DeleteCaseRuleCommand: (input: DeleteCaseRuleCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
93
|
-
/**
|
|
94
|
-
* serializeAws_restJson1DeleteDomainCommand
|
|
95
|
-
*/
|
|
96
|
-
export declare const se_DeleteDomainCommand: (input: DeleteDomainCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
97
|
-
/**
|
|
98
|
-
* serializeAws_restJson1DeleteFieldCommand
|
|
99
|
-
*/
|
|
100
|
-
export declare const se_DeleteFieldCommand: (input: DeleteFieldCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
101
|
-
/**
|
|
102
|
-
* serializeAws_restJson1DeleteLayoutCommand
|
|
103
|
-
*/
|
|
104
|
-
export declare const se_DeleteLayoutCommand: (input: DeleteLayoutCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
105
|
-
/**
|
|
106
|
-
* serializeAws_restJson1DeleteRelatedItemCommand
|
|
107
|
-
*/
|
|
108
|
-
export declare const se_DeleteRelatedItemCommand: (input: DeleteRelatedItemCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
109
|
-
/**
|
|
110
|
-
* serializeAws_restJson1DeleteTemplateCommand
|
|
111
|
-
*/
|
|
112
|
-
export declare const se_DeleteTemplateCommand: (input: DeleteTemplateCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
113
|
-
/**
|
|
114
|
-
* serializeAws_restJson1GetCaseCommand
|
|
115
|
-
*/
|
|
116
|
-
export declare const se_GetCaseCommand: (input: GetCaseCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
117
|
-
/**
|
|
118
|
-
* serializeAws_restJson1GetCaseAuditEventsCommand
|
|
119
|
-
*/
|
|
120
|
-
export declare const se_GetCaseAuditEventsCommand: (input: GetCaseAuditEventsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
121
|
-
/**
|
|
122
|
-
* serializeAws_restJson1GetCaseEventConfigurationCommand
|
|
123
|
-
*/
|
|
124
|
-
export declare const se_GetCaseEventConfigurationCommand: (input: GetCaseEventConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
125
|
-
/**
|
|
126
|
-
* serializeAws_restJson1GetDomainCommand
|
|
127
|
-
*/
|
|
128
|
-
export declare const se_GetDomainCommand: (input: GetDomainCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
129
|
-
/**
|
|
130
|
-
* serializeAws_restJson1GetLayoutCommand
|
|
131
|
-
*/
|
|
132
|
-
export declare const se_GetLayoutCommand: (input: GetLayoutCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
133
|
-
/**
|
|
134
|
-
* serializeAws_restJson1GetTemplateCommand
|
|
135
|
-
*/
|
|
136
|
-
export declare const se_GetTemplateCommand: (input: GetTemplateCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
137
|
-
/**
|
|
138
|
-
* serializeAws_restJson1ListCaseRulesCommand
|
|
139
|
-
*/
|
|
140
|
-
export declare const se_ListCaseRulesCommand: (input: ListCaseRulesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
141
|
-
/**
|
|
142
|
-
* serializeAws_restJson1ListCasesForContactCommand
|
|
143
|
-
*/
|
|
144
|
-
export declare const se_ListCasesForContactCommand: (input: ListCasesForContactCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
145
|
-
/**
|
|
146
|
-
* serializeAws_restJson1ListDomainsCommand
|
|
147
|
-
*/
|
|
148
|
-
export declare const se_ListDomainsCommand: (input: ListDomainsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
149
|
-
/**
|
|
150
|
-
* serializeAws_restJson1ListFieldOptionsCommand
|
|
151
|
-
*/
|
|
152
|
-
export declare const se_ListFieldOptionsCommand: (input: ListFieldOptionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
153
|
-
/**
|
|
154
|
-
* serializeAws_restJson1ListFieldsCommand
|
|
155
|
-
*/
|
|
156
|
-
export declare const se_ListFieldsCommand: (input: ListFieldsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
157
|
-
/**
|
|
158
|
-
* serializeAws_restJson1ListLayoutsCommand
|
|
159
|
-
*/
|
|
160
|
-
export declare const se_ListLayoutsCommand: (input: ListLayoutsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
161
|
-
/**
|
|
162
|
-
* serializeAws_restJson1ListTagsForResourceCommand
|
|
163
|
-
*/
|
|
164
|
-
export declare const se_ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
165
|
-
/**
|
|
166
|
-
* serializeAws_restJson1ListTemplatesCommand
|
|
167
|
-
*/
|
|
168
|
-
export declare const se_ListTemplatesCommand: (input: ListTemplatesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
169
|
-
/**
|
|
170
|
-
* serializeAws_restJson1PutCaseEventConfigurationCommand
|
|
171
|
-
*/
|
|
172
|
-
export declare const se_PutCaseEventConfigurationCommand: (input: PutCaseEventConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
173
|
-
/**
|
|
174
|
-
* serializeAws_restJson1SearchAllRelatedItemsCommand
|
|
175
|
-
*/
|
|
176
|
-
export declare const se_SearchAllRelatedItemsCommand: (input: SearchAllRelatedItemsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
177
|
-
/**
|
|
178
|
-
* serializeAws_restJson1SearchCasesCommand
|
|
179
|
-
*/
|
|
180
|
-
export declare const se_SearchCasesCommand: (input: SearchCasesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
181
|
-
/**
|
|
182
|
-
* serializeAws_restJson1SearchRelatedItemsCommand
|
|
183
|
-
*/
|
|
184
|
-
export declare const se_SearchRelatedItemsCommand: (input: SearchRelatedItemsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
185
|
-
/**
|
|
186
|
-
* serializeAws_restJson1TagResourceCommand
|
|
187
|
-
*/
|
|
188
|
-
export declare const se_TagResourceCommand: (input: TagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
189
|
-
/**
|
|
190
|
-
* serializeAws_restJson1UntagResourceCommand
|
|
191
|
-
*/
|
|
192
|
-
export declare const se_UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
193
|
-
/**
|
|
194
|
-
* serializeAws_restJson1UpdateCaseCommand
|
|
195
|
-
*/
|
|
196
|
-
export declare const se_UpdateCaseCommand: (input: UpdateCaseCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
197
|
-
/**
|
|
198
|
-
* serializeAws_restJson1UpdateCaseRuleCommand
|
|
199
|
-
*/
|
|
200
|
-
export declare const se_UpdateCaseRuleCommand: (input: UpdateCaseRuleCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
201
|
-
/**
|
|
202
|
-
* serializeAws_restJson1UpdateFieldCommand
|
|
203
|
-
*/
|
|
204
|
-
export declare const se_UpdateFieldCommand: (input: UpdateFieldCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
205
|
-
/**
|
|
206
|
-
* serializeAws_restJson1UpdateLayoutCommand
|
|
207
|
-
*/
|
|
208
|
-
export declare const se_UpdateLayoutCommand: (input: UpdateLayoutCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
209
|
-
/**
|
|
210
|
-
* serializeAws_restJson1UpdateTemplateCommand
|
|
211
|
-
*/
|
|
212
|
-
export declare const se_UpdateTemplateCommand: (input: UpdateTemplateCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
213
|
-
/**
|
|
214
|
-
* deserializeAws_restJson1BatchGetCaseRuleCommand
|
|
215
|
-
*/
|
|
216
|
-
export declare const de_BatchGetCaseRuleCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<BatchGetCaseRuleCommandOutput>;
|
|
217
|
-
/**
|
|
218
|
-
* deserializeAws_restJson1BatchGetFieldCommand
|
|
219
|
-
*/
|
|
220
|
-
export declare const de_BatchGetFieldCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<BatchGetFieldCommandOutput>;
|
|
221
|
-
/**
|
|
222
|
-
* deserializeAws_restJson1BatchPutFieldOptionsCommand
|
|
223
|
-
*/
|
|
224
|
-
export declare const de_BatchPutFieldOptionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<BatchPutFieldOptionsCommandOutput>;
|
|
225
|
-
/**
|
|
226
|
-
* deserializeAws_restJson1CreateCaseCommand
|
|
227
|
-
*/
|
|
228
|
-
export declare const de_CreateCaseCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateCaseCommandOutput>;
|
|
229
|
-
/**
|
|
230
|
-
* deserializeAws_restJson1CreateCaseRuleCommand
|
|
231
|
-
*/
|
|
232
|
-
export declare const de_CreateCaseRuleCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateCaseRuleCommandOutput>;
|
|
233
|
-
/**
|
|
234
|
-
* deserializeAws_restJson1CreateDomainCommand
|
|
235
|
-
*/
|
|
236
|
-
export declare const de_CreateDomainCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateDomainCommandOutput>;
|
|
237
|
-
/**
|
|
238
|
-
* deserializeAws_restJson1CreateFieldCommand
|
|
239
|
-
*/
|
|
240
|
-
export declare const de_CreateFieldCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateFieldCommandOutput>;
|
|
241
|
-
/**
|
|
242
|
-
* deserializeAws_restJson1CreateLayoutCommand
|
|
243
|
-
*/
|
|
244
|
-
export declare const de_CreateLayoutCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateLayoutCommandOutput>;
|
|
245
|
-
/**
|
|
246
|
-
* deserializeAws_restJson1CreateRelatedItemCommand
|
|
247
|
-
*/
|
|
248
|
-
export declare const de_CreateRelatedItemCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateRelatedItemCommandOutput>;
|
|
249
|
-
/**
|
|
250
|
-
* deserializeAws_restJson1CreateTemplateCommand
|
|
251
|
-
*/
|
|
252
|
-
export declare const de_CreateTemplateCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateTemplateCommandOutput>;
|
|
253
|
-
/**
|
|
254
|
-
* deserializeAws_restJson1DeleteCaseCommand
|
|
255
|
-
*/
|
|
256
|
-
export declare const de_DeleteCaseCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteCaseCommandOutput>;
|
|
257
|
-
/**
|
|
258
|
-
* deserializeAws_restJson1DeleteCaseRuleCommand
|
|
259
|
-
*/
|
|
260
|
-
export declare const de_DeleteCaseRuleCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteCaseRuleCommandOutput>;
|
|
261
|
-
/**
|
|
262
|
-
* deserializeAws_restJson1DeleteDomainCommand
|
|
263
|
-
*/
|
|
264
|
-
export declare const de_DeleteDomainCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteDomainCommandOutput>;
|
|
265
|
-
/**
|
|
266
|
-
* deserializeAws_restJson1DeleteFieldCommand
|
|
267
|
-
*/
|
|
268
|
-
export declare const de_DeleteFieldCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteFieldCommandOutput>;
|
|
269
|
-
/**
|
|
270
|
-
* deserializeAws_restJson1DeleteLayoutCommand
|
|
271
|
-
*/
|
|
272
|
-
export declare const de_DeleteLayoutCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteLayoutCommandOutput>;
|
|
273
|
-
/**
|
|
274
|
-
* deserializeAws_restJson1DeleteRelatedItemCommand
|
|
275
|
-
*/
|
|
276
|
-
export declare const de_DeleteRelatedItemCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteRelatedItemCommandOutput>;
|
|
277
|
-
/**
|
|
278
|
-
* deserializeAws_restJson1DeleteTemplateCommand
|
|
279
|
-
*/
|
|
280
|
-
export declare const de_DeleteTemplateCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteTemplateCommandOutput>;
|
|
281
|
-
/**
|
|
282
|
-
* deserializeAws_restJson1GetCaseCommand
|
|
283
|
-
*/
|
|
284
|
-
export declare const de_GetCaseCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetCaseCommandOutput>;
|
|
285
|
-
/**
|
|
286
|
-
* deserializeAws_restJson1GetCaseAuditEventsCommand
|
|
287
|
-
*/
|
|
288
|
-
export declare const de_GetCaseAuditEventsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetCaseAuditEventsCommandOutput>;
|
|
289
|
-
/**
|
|
290
|
-
* deserializeAws_restJson1GetCaseEventConfigurationCommand
|
|
291
|
-
*/
|
|
292
|
-
export declare const de_GetCaseEventConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetCaseEventConfigurationCommandOutput>;
|
|
293
|
-
/**
|
|
294
|
-
* deserializeAws_restJson1GetDomainCommand
|
|
295
|
-
*/
|
|
296
|
-
export declare const de_GetDomainCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetDomainCommandOutput>;
|
|
297
|
-
/**
|
|
298
|
-
* deserializeAws_restJson1GetLayoutCommand
|
|
299
|
-
*/
|
|
300
|
-
export declare const de_GetLayoutCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetLayoutCommandOutput>;
|
|
301
|
-
/**
|
|
302
|
-
* deserializeAws_restJson1GetTemplateCommand
|
|
303
|
-
*/
|
|
304
|
-
export declare const de_GetTemplateCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetTemplateCommandOutput>;
|
|
305
|
-
/**
|
|
306
|
-
* deserializeAws_restJson1ListCaseRulesCommand
|
|
307
|
-
*/
|
|
308
|
-
export declare const de_ListCaseRulesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListCaseRulesCommandOutput>;
|
|
309
|
-
/**
|
|
310
|
-
* deserializeAws_restJson1ListCasesForContactCommand
|
|
311
|
-
*/
|
|
312
|
-
export declare const de_ListCasesForContactCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListCasesForContactCommandOutput>;
|
|
313
|
-
/**
|
|
314
|
-
* deserializeAws_restJson1ListDomainsCommand
|
|
315
|
-
*/
|
|
316
|
-
export declare const de_ListDomainsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListDomainsCommandOutput>;
|
|
317
|
-
/**
|
|
318
|
-
* deserializeAws_restJson1ListFieldOptionsCommand
|
|
319
|
-
*/
|
|
320
|
-
export declare const de_ListFieldOptionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListFieldOptionsCommandOutput>;
|
|
321
|
-
/**
|
|
322
|
-
* deserializeAws_restJson1ListFieldsCommand
|
|
323
|
-
*/
|
|
324
|
-
export declare const de_ListFieldsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListFieldsCommandOutput>;
|
|
325
|
-
/**
|
|
326
|
-
* deserializeAws_restJson1ListLayoutsCommand
|
|
327
|
-
*/
|
|
328
|
-
export declare const de_ListLayoutsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListLayoutsCommandOutput>;
|
|
329
|
-
/**
|
|
330
|
-
* deserializeAws_restJson1ListTagsForResourceCommand
|
|
331
|
-
*/
|
|
332
|
-
export declare const de_ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
|
|
333
|
-
/**
|
|
334
|
-
* deserializeAws_restJson1ListTemplatesCommand
|
|
335
|
-
*/
|
|
336
|
-
export declare const de_ListTemplatesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTemplatesCommandOutput>;
|
|
337
|
-
/**
|
|
338
|
-
* deserializeAws_restJson1PutCaseEventConfigurationCommand
|
|
339
|
-
*/
|
|
340
|
-
export declare const de_PutCaseEventConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PutCaseEventConfigurationCommandOutput>;
|
|
341
|
-
/**
|
|
342
|
-
* deserializeAws_restJson1SearchAllRelatedItemsCommand
|
|
343
|
-
*/
|
|
344
|
-
export declare const de_SearchAllRelatedItemsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<SearchAllRelatedItemsCommandOutput>;
|
|
345
|
-
/**
|
|
346
|
-
* deserializeAws_restJson1SearchCasesCommand
|
|
347
|
-
*/
|
|
348
|
-
export declare const de_SearchCasesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<SearchCasesCommandOutput>;
|
|
349
|
-
/**
|
|
350
|
-
* deserializeAws_restJson1SearchRelatedItemsCommand
|
|
351
|
-
*/
|
|
352
|
-
export declare const de_SearchRelatedItemsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<SearchRelatedItemsCommandOutput>;
|
|
353
|
-
/**
|
|
354
|
-
* deserializeAws_restJson1TagResourceCommand
|
|
355
|
-
*/
|
|
356
|
-
export declare const de_TagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TagResourceCommandOutput>;
|
|
357
|
-
/**
|
|
358
|
-
* deserializeAws_restJson1UntagResourceCommand
|
|
359
|
-
*/
|
|
360
|
-
export declare const de_UntagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourceCommandOutput>;
|
|
361
|
-
/**
|
|
362
|
-
* deserializeAws_restJson1UpdateCaseCommand
|
|
363
|
-
*/
|
|
364
|
-
export declare const de_UpdateCaseCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateCaseCommandOutput>;
|
|
365
|
-
/**
|
|
366
|
-
* deserializeAws_restJson1UpdateCaseRuleCommand
|
|
367
|
-
*/
|
|
368
|
-
export declare const de_UpdateCaseRuleCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateCaseRuleCommandOutput>;
|
|
369
|
-
/**
|
|
370
|
-
* deserializeAws_restJson1UpdateFieldCommand
|
|
371
|
-
*/
|
|
372
|
-
export declare const de_UpdateFieldCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateFieldCommandOutput>;
|
|
373
|
-
/**
|
|
374
|
-
* deserializeAws_restJson1UpdateLayoutCommand
|
|
375
|
-
*/
|
|
376
|
-
export declare const de_UpdateLayoutCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateLayoutCommandOutput>;
|
|
377
|
-
/**
|
|
378
|
-
* deserializeAws_restJson1UpdateTemplateCommand
|
|
379
|
-
*/
|
|
380
|
-
export declare const de_UpdateTemplateCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateTemplateCommandOutput>;
|