@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
package/dist-cjs/index.js
CHANGED
|
@@ -6,6 +6,7 @@ var middlewareRecursionDetection = require('@aws-sdk/middleware-recursion-detect
|
|
|
6
6
|
var middlewareUserAgent = require('@aws-sdk/middleware-user-agent');
|
|
7
7
|
var configResolver = require('@smithy/config-resolver');
|
|
8
8
|
var core = require('@smithy/core');
|
|
9
|
+
var schema = require('@smithy/core/schema');
|
|
9
10
|
var middlewareContentLength = require('@smithy/middleware-content-length');
|
|
10
11
|
var middlewareEndpoint = require('@smithy/middleware-endpoint');
|
|
11
12
|
var middlewareRetry = require('@smithy/middleware-retry');
|
|
@@ -14,9 +15,6 @@ var httpAuthSchemeProvider = require('./auth/httpAuthSchemeProvider');
|
|
|
14
15
|
var runtimeConfig = require('./runtimeConfig');
|
|
15
16
|
var regionConfigResolver = require('@aws-sdk/region-config-resolver');
|
|
16
17
|
var protocolHttp = require('@smithy/protocol-http');
|
|
17
|
-
var middlewareSerde = require('@smithy/middleware-serde');
|
|
18
|
-
var core$1 = require('@aws-sdk/core');
|
|
19
|
-
var uuid = require('@smithy/uuid');
|
|
20
18
|
|
|
21
19
|
const resolveClientEndpointParameters = (options) => {
|
|
22
20
|
return Object.assign(options, {
|
|
@@ -92,6 +90,7 @@ class ConnectCasesClient extends smithyClient.Client {
|
|
|
92
90
|
const _config_7 = httpAuthSchemeProvider.resolveHttpAuthSchemeConfig(_config_6);
|
|
93
91
|
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
94
92
|
this.config = _config_8;
|
|
93
|
+
this.middlewareStack.use(schema.getSchemaSerdePlugin(this.config));
|
|
95
94
|
this.middlewareStack.use(middlewareUserAgent.getUserAgentPlugin(this.config));
|
|
96
95
|
this.middlewareStack.use(middlewareRetry.getRetryPlugin(this.config));
|
|
97
96
|
this.middlewareStack.use(middlewareContentLength.getContentLengthPlugin(this.config));
|
|
@@ -111,14 +110,14 @@ class ConnectCasesClient extends smithyClient.Client {
|
|
|
111
110
|
}
|
|
112
111
|
}
|
|
113
112
|
|
|
114
|
-
class ConnectCasesServiceException extends smithyClient.ServiceException {
|
|
113
|
+
let ConnectCasesServiceException$1 = class ConnectCasesServiceException extends smithyClient.ServiceException {
|
|
115
114
|
constructor(options) {
|
|
116
115
|
super(options);
|
|
117
116
|
Object.setPrototypeOf(this, ConnectCasesServiceException.prototype);
|
|
118
117
|
}
|
|
119
|
-
}
|
|
118
|
+
};
|
|
120
119
|
|
|
121
|
-
class AccessDeniedException extends ConnectCasesServiceException {
|
|
120
|
+
let AccessDeniedException$1 = class AccessDeniedException extends ConnectCasesServiceException$1 {
|
|
122
121
|
name = "AccessDeniedException";
|
|
123
122
|
$fault = "client";
|
|
124
123
|
constructor(opts) {
|
|
@@ -129,8 +128,8 @@ class AccessDeniedException extends ConnectCasesServiceException {
|
|
|
129
128
|
});
|
|
130
129
|
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
131
130
|
}
|
|
132
|
-
}
|
|
133
|
-
class ConflictException extends ConnectCasesServiceException {
|
|
131
|
+
};
|
|
132
|
+
let ConflictException$1 = class ConflictException extends ConnectCasesServiceException$1 {
|
|
134
133
|
name = "ConflictException";
|
|
135
134
|
$fault = "client";
|
|
136
135
|
constructor(opts) {
|
|
@@ -141,7 +140,7 @@ class ConflictException extends ConnectCasesServiceException {
|
|
|
141
140
|
});
|
|
142
141
|
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
143
142
|
}
|
|
144
|
-
}
|
|
143
|
+
};
|
|
145
144
|
exports.FieldValueUnion = void 0;
|
|
146
145
|
(function (FieldValueUnion) {
|
|
147
146
|
FieldValueUnion.visit = (value, visitor) => {
|
|
@@ -168,7 +167,7 @@ exports.UserUnion = void 0;
|
|
|
168
167
|
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
169
168
|
};
|
|
170
169
|
})(exports.UserUnion || (exports.UserUnion = {}));
|
|
171
|
-
class InternalServerException extends ConnectCasesServiceException {
|
|
170
|
+
let InternalServerException$1 = class InternalServerException extends ConnectCasesServiceException$1 {
|
|
172
171
|
name = "InternalServerException";
|
|
173
172
|
$fault = "server";
|
|
174
173
|
$retryable = {};
|
|
@@ -182,8 +181,8 @@ class InternalServerException extends ConnectCasesServiceException {
|
|
|
182
181
|
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
183
182
|
this.retryAfterSeconds = opts.retryAfterSeconds;
|
|
184
183
|
}
|
|
185
|
-
}
|
|
186
|
-
class ResourceNotFoundException extends ConnectCasesServiceException {
|
|
184
|
+
};
|
|
185
|
+
let ResourceNotFoundException$1 = class ResourceNotFoundException extends ConnectCasesServiceException$1 {
|
|
187
186
|
name = "ResourceNotFoundException";
|
|
188
187
|
$fault = "client";
|
|
189
188
|
resourceId;
|
|
@@ -198,8 +197,8 @@ class ResourceNotFoundException extends ConnectCasesServiceException {
|
|
|
198
197
|
this.resourceId = opts.resourceId;
|
|
199
198
|
this.resourceType = opts.resourceType;
|
|
200
199
|
}
|
|
201
|
-
}
|
|
202
|
-
class ThrottlingException extends ConnectCasesServiceException {
|
|
200
|
+
};
|
|
201
|
+
let ThrottlingException$1 = class ThrottlingException extends ConnectCasesServiceException$1 {
|
|
203
202
|
name = "ThrottlingException";
|
|
204
203
|
$fault = "client";
|
|
205
204
|
$retryable = {};
|
|
@@ -211,8 +210,8 @@ class ThrottlingException extends ConnectCasesServiceException {
|
|
|
211
210
|
});
|
|
212
211
|
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
213
212
|
}
|
|
214
|
-
}
|
|
215
|
-
class ValidationException extends ConnectCasesServiceException {
|
|
213
|
+
};
|
|
214
|
+
let ValidationException$1 = class ValidationException extends ConnectCasesServiceException$1 {
|
|
216
215
|
name = "ValidationException";
|
|
217
216
|
$fault = "client";
|
|
218
217
|
constructor(opts) {
|
|
@@ -223,7 +222,7 @@ class ValidationException extends ConnectCasesServiceException {
|
|
|
223
222
|
});
|
|
224
223
|
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
225
224
|
}
|
|
226
|
-
}
|
|
225
|
+
};
|
|
227
226
|
exports.AuditEventFieldValueUnion = void 0;
|
|
228
227
|
(function (AuditEventFieldValueUnion) {
|
|
229
228
|
AuditEventFieldValueUnion.visit = (value, visitor) => {
|
|
@@ -285,7 +284,7 @@ exports.RelatedItemInputContent = void 0;
|
|
|
285
284
|
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
286
285
|
};
|
|
287
286
|
})(exports.RelatedItemInputContent || (exports.RelatedItemInputContent = {}));
|
|
288
|
-
class ServiceQuotaExceededException extends ConnectCasesServiceException {
|
|
287
|
+
let ServiceQuotaExceededException$1 = class ServiceQuotaExceededException extends ConnectCasesServiceException$1 {
|
|
289
288
|
name = "ServiceQuotaExceededException";
|
|
290
289
|
$fault = "client";
|
|
291
290
|
constructor(opts) {
|
|
@@ -296,7 +295,7 @@ class ServiceQuotaExceededException extends ConnectCasesServiceException {
|
|
|
296
295
|
});
|
|
297
296
|
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
298
297
|
}
|
|
299
|
-
}
|
|
298
|
+
};
|
|
300
299
|
exports.FieldFilter = void 0;
|
|
301
300
|
(function (FieldFilter) {
|
|
302
301
|
FieldFilter.visit = (value, visitor) => {
|
|
@@ -480,1990 +479,1840 @@ exports.RelatedItemTypeFilter = void 0;
|
|
|
480
479
|
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
481
480
|
};
|
|
482
481
|
})(exports.RelatedItemTypeFilter || (exports.RelatedItemTypeFilter = {}));
|
|
483
|
-
const UserUnionFilterSensitiveLog = (obj) => {
|
|
484
|
-
if (obj.userArn !== undefined)
|
|
485
|
-
return { userArn: obj.userArn };
|
|
486
|
-
if (obj.customEntity !== undefined)
|
|
487
|
-
return { customEntity: smithyClient.SENSITIVE_STRING };
|
|
488
|
-
if (obj.$unknown !== undefined)
|
|
489
|
-
return { [obj.$unknown[0]]: "UNKNOWN" };
|
|
490
|
-
};
|
|
491
|
-
const CreateCaseRequestFilterSensitiveLog = (obj) => ({
|
|
492
|
-
...obj,
|
|
493
|
-
...(obj.fields && { fields: obj.fields.map((item) => item) }),
|
|
494
|
-
...(obj.performedBy && { performedBy: UserUnionFilterSensitiveLog(obj.performedBy) }),
|
|
495
|
-
});
|
|
496
|
-
const AuditEventPerformedByFilterSensitiveLog = (obj) => ({
|
|
497
|
-
...obj,
|
|
498
|
-
...(obj.user && { user: UserUnionFilterSensitiveLog(obj.user) }),
|
|
499
|
-
});
|
|
500
|
-
const AuditEventFilterSensitiveLog = (obj) => ({
|
|
501
|
-
...obj,
|
|
502
|
-
...(obj.fields && { fields: obj.fields.map((item) => item) }),
|
|
503
|
-
...(obj.performedBy && { performedBy: AuditEventPerformedByFilterSensitiveLog(obj.performedBy) }),
|
|
504
|
-
});
|
|
505
|
-
const GetCaseAuditEventsResponseFilterSensitiveLog = (obj) => ({
|
|
506
|
-
...obj,
|
|
507
|
-
...(obj.auditEvents && { auditEvents: obj.auditEvents.map((item) => AuditEventFilterSensitiveLog(item)) }),
|
|
508
|
-
});
|
|
509
|
-
const SlaInputConfigurationFilterSensitiveLog = (obj) => ({
|
|
510
|
-
...obj,
|
|
511
|
-
...(obj.name && { name: smithyClient.SENSITIVE_STRING }),
|
|
512
|
-
...(obj.targetFieldValues && { targetFieldValues: obj.targetFieldValues.map((item) => item) }),
|
|
513
|
-
});
|
|
514
|
-
const SlaInputContentFilterSensitiveLog = (obj) => {
|
|
515
|
-
if (obj.slaInputConfiguration !== undefined)
|
|
516
|
-
return { slaInputConfiguration: SlaInputConfigurationFilterSensitiveLog(obj.slaInputConfiguration) };
|
|
517
|
-
if (obj.$unknown !== undefined)
|
|
518
|
-
return { [obj.$unknown[0]]: "UNKNOWN" };
|
|
519
|
-
};
|
|
520
|
-
const RelatedItemInputContentFilterSensitiveLog = (obj) => {
|
|
521
|
-
if (obj.contact !== undefined)
|
|
522
|
-
return { contact: obj.contact };
|
|
523
|
-
if (obj.comment !== undefined)
|
|
524
|
-
return { comment: obj.comment };
|
|
525
|
-
if (obj.file !== undefined)
|
|
526
|
-
return { file: obj.file };
|
|
527
|
-
if (obj.sla !== undefined)
|
|
528
|
-
return { sla: SlaInputContentFilterSensitiveLog(obj.sla) };
|
|
529
|
-
if (obj.connectCase !== undefined)
|
|
530
|
-
return { connectCase: obj.connectCase };
|
|
531
|
-
if (obj.custom !== undefined)
|
|
532
|
-
return { custom: obj.custom };
|
|
533
|
-
if (obj.$unknown !== undefined)
|
|
534
|
-
return { [obj.$unknown[0]]: "UNKNOWN" };
|
|
535
|
-
};
|
|
536
|
-
const CreateRelatedItemRequestFilterSensitiveLog = (obj) => ({
|
|
537
|
-
...obj,
|
|
538
|
-
...(obj.content && { content: RelatedItemInputContentFilterSensitiveLog(obj.content) }),
|
|
539
|
-
...(obj.performedBy && { performedBy: UserUnionFilterSensitiveLog(obj.performedBy) }),
|
|
540
|
-
});
|
|
541
|
-
const SlaFilterFilterSensitiveLog = (obj) => ({
|
|
542
|
-
...obj,
|
|
543
|
-
...(obj.name && { name: smithyClient.SENSITIVE_STRING }),
|
|
544
|
-
});
|
|
545
|
-
const SlaConfigurationFilterSensitiveLog = (obj) => ({
|
|
546
|
-
...obj,
|
|
547
|
-
...(obj.name && { name: smithyClient.SENSITIVE_STRING }),
|
|
548
|
-
...(obj.targetFieldValues && { targetFieldValues: obj.targetFieldValues.map((item) => item) }),
|
|
549
|
-
});
|
|
550
|
-
const SlaContentFilterSensitiveLog = (obj) => ({
|
|
551
|
-
...obj,
|
|
552
|
-
...(obj.slaConfiguration && { slaConfiguration: SlaConfigurationFilterSensitiveLog(obj.slaConfiguration) }),
|
|
553
|
-
});
|
|
554
|
-
const RelatedItemContentFilterSensitiveLog = (obj) => {
|
|
555
|
-
if (obj.contact !== undefined)
|
|
556
|
-
return { contact: obj.contact };
|
|
557
|
-
if (obj.comment !== undefined)
|
|
558
|
-
return { comment: obj.comment };
|
|
559
|
-
if (obj.file !== undefined)
|
|
560
|
-
return { file: obj.file };
|
|
561
|
-
if (obj.sla !== undefined)
|
|
562
|
-
return { sla: SlaContentFilterSensitiveLog(obj.sla) };
|
|
563
|
-
if (obj.connectCase !== undefined)
|
|
564
|
-
return { connectCase: obj.connectCase };
|
|
565
|
-
if (obj.custom !== undefined)
|
|
566
|
-
return { custom: obj.custom };
|
|
567
|
-
if (obj.$unknown !== undefined)
|
|
568
|
-
return { [obj.$unknown[0]]: "UNKNOWN" };
|
|
569
|
-
};
|
|
570
|
-
const SearchRelatedItemsResponseItemFilterSensitiveLog = (obj) => ({
|
|
571
|
-
...obj,
|
|
572
|
-
...(obj.content && { content: RelatedItemContentFilterSensitiveLog(obj.content) }),
|
|
573
|
-
...(obj.performedBy && { performedBy: UserUnionFilterSensitiveLog(obj.performedBy) }),
|
|
574
|
-
});
|
|
575
|
-
const SearchRelatedItemsResponseFilterSensitiveLog = (obj) => ({
|
|
576
|
-
...obj,
|
|
577
|
-
...(obj.relatedItems && {
|
|
578
|
-
relatedItems: obj.relatedItems.map((item) => SearchRelatedItemsResponseItemFilterSensitiveLog(item)),
|
|
579
|
-
}),
|
|
580
|
-
});
|
|
581
|
-
const UpdateCaseRequestFilterSensitiveLog = (obj) => ({
|
|
582
|
-
...obj,
|
|
583
|
-
...(obj.fields && { fields: obj.fields.map((item) => item) }),
|
|
584
|
-
...(obj.performedBy && { performedBy: UserUnionFilterSensitiveLog(obj.performedBy) }),
|
|
585
|
-
});
|
|
586
|
-
const SearchAllRelatedItemsResponseItemFilterSensitiveLog = (obj) => ({
|
|
587
|
-
...obj,
|
|
588
|
-
...(obj.content && { content: RelatedItemContentFilterSensitiveLog(obj.content) }),
|
|
589
|
-
...(obj.performedBy && { performedBy: UserUnionFilterSensitiveLog(obj.performedBy) }),
|
|
590
|
-
});
|
|
591
|
-
const SearchAllRelatedItemsResponseFilterSensitiveLog = (obj) => ({
|
|
592
|
-
...obj,
|
|
593
|
-
...(obj.relatedItems && {
|
|
594
|
-
relatedItems: obj.relatedItems.map((item) => SearchAllRelatedItemsResponseItemFilterSensitiveLog(item)),
|
|
595
|
-
}),
|
|
596
|
-
});
|
|
597
|
-
const RelatedItemTypeFilterFilterSensitiveLog = (obj) => {
|
|
598
|
-
if (obj.contact !== undefined)
|
|
599
|
-
return { contact: obj.contact };
|
|
600
|
-
if (obj.comment !== undefined)
|
|
601
|
-
return { comment: obj.comment };
|
|
602
|
-
if (obj.file !== undefined)
|
|
603
|
-
return { file: obj.file };
|
|
604
|
-
if (obj.sla !== undefined)
|
|
605
|
-
return { sla: SlaFilterFilterSensitiveLog(obj.sla) };
|
|
606
|
-
if (obj.connectCase !== undefined)
|
|
607
|
-
return { connectCase: obj.connectCase };
|
|
608
|
-
if (obj.custom !== undefined)
|
|
609
|
-
return { custom: obj.custom };
|
|
610
|
-
if (obj.$unknown !== undefined)
|
|
611
|
-
return { [obj.$unknown[0]]: "UNKNOWN" };
|
|
612
|
-
};
|
|
613
|
-
const SearchAllRelatedItemsRequestFilterSensitiveLog = (obj) => ({
|
|
614
|
-
...obj,
|
|
615
|
-
...(obj.filters && { filters: obj.filters.map((item) => RelatedItemTypeFilterFilterSensitiveLog(item)) }),
|
|
616
|
-
});
|
|
617
|
-
const SearchRelatedItemsRequestFilterSensitiveLog = (obj) => ({
|
|
618
|
-
...obj,
|
|
619
|
-
...(obj.filters && { filters: obj.filters.map((item) => RelatedItemTypeFilterFilterSensitiveLog(item)) }),
|
|
620
|
-
});
|
|
621
482
|
|
|
622
|
-
const
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
const
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
const
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
|
|
656
|
-
|
|
657
|
-
|
|
658
|
-
|
|
659
|
-
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
|
|
663
|
-
|
|
664
|
-
|
|
665
|
-
const
|
|
666
|
-
|
|
667
|
-
|
|
668
|
-
|
|
669
|
-
|
|
670
|
-
|
|
671
|
-
|
|
672
|
-
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
|
|
676
|
-
|
|
677
|
-
|
|
678
|
-
|
|
679
|
-
|
|
680
|
-
|
|
681
|
-
|
|
682
|
-
const
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
|
|
686
|
-
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
|
|
694
|
-
|
|
695
|
-
|
|
696
|
-
|
|
697
|
-
|
|
698
|
-
const
|
|
699
|
-
|
|
700
|
-
|
|
701
|
-
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
|
|
706
|
-
|
|
707
|
-
|
|
708
|
-
|
|
709
|
-
|
|
710
|
-
|
|
711
|
-
const
|
|
712
|
-
|
|
713
|
-
|
|
714
|
-
|
|
715
|
-
|
|
716
|
-
|
|
717
|
-
|
|
718
|
-
|
|
719
|
-
|
|
720
|
-
|
|
721
|
-
|
|
722
|
-
|
|
723
|
-
|
|
724
|
-
|
|
725
|
-
|
|
726
|
-
|
|
727
|
-
const
|
|
728
|
-
|
|
729
|
-
|
|
730
|
-
|
|
731
|
-
|
|
732
|
-
|
|
733
|
-
|
|
734
|
-
|
|
735
|
-
|
|
736
|
-
|
|
737
|
-
|
|
738
|
-
|
|
739
|
-
|
|
740
|
-
|
|
741
|
-
|
|
742
|
-
const
|
|
743
|
-
|
|
744
|
-
|
|
745
|
-
|
|
746
|
-
|
|
747
|
-
|
|
748
|
-
|
|
749
|
-
|
|
750
|
-
|
|
751
|
-
|
|
752
|
-
|
|
753
|
-
|
|
754
|
-
|
|
755
|
-
|
|
756
|
-
|
|
757
|
-
|
|
758
|
-
|
|
759
|
-
const
|
|
760
|
-
|
|
761
|
-
|
|
762
|
-
|
|
763
|
-
|
|
764
|
-
|
|
765
|
-
|
|
766
|
-
|
|
767
|
-
|
|
768
|
-
|
|
769
|
-
|
|
770
|
-
|
|
771
|
-
|
|
772
|
-
|
|
773
|
-
|
|
774
|
-
|
|
775
|
-
|
|
776
|
-
|
|
777
|
-
|
|
778
|
-
const
|
|
779
|
-
|
|
780
|
-
|
|
781
|
-
|
|
782
|
-
|
|
783
|
-
|
|
784
|
-
|
|
785
|
-
|
|
786
|
-
|
|
787
|
-
|
|
788
|
-
const
|
|
789
|
-
|
|
790
|
-
|
|
791
|
-
|
|
792
|
-
|
|
793
|
-
|
|
794
|
-
|
|
795
|
-
|
|
796
|
-
|
|
797
|
-
|
|
798
|
-
const
|
|
799
|
-
|
|
800
|
-
|
|
801
|
-
|
|
802
|
-
|
|
803
|
-
|
|
804
|
-
|
|
805
|
-
|
|
806
|
-
|
|
807
|
-
const
|
|
808
|
-
|
|
809
|
-
|
|
810
|
-
|
|
811
|
-
|
|
812
|
-
|
|
813
|
-
|
|
814
|
-
|
|
815
|
-
|
|
816
|
-
|
|
817
|
-
const
|
|
818
|
-
|
|
819
|
-
|
|
820
|
-
|
|
821
|
-
|
|
822
|
-
|
|
823
|
-
|
|
824
|
-
|
|
825
|
-
|
|
826
|
-
|
|
827
|
-
const
|
|
828
|
-
|
|
829
|
-
|
|
830
|
-
|
|
831
|
-
|
|
832
|
-
|
|
833
|
-
|
|
834
|
-
|
|
835
|
-
|
|
836
|
-
|
|
837
|
-
|
|
838
|
-
const
|
|
839
|
-
|
|
840
|
-
|
|
841
|
-
|
|
842
|
-
|
|
843
|
-
|
|
844
|
-
|
|
845
|
-
|
|
846
|
-
|
|
847
|
-
|
|
848
|
-
const
|
|
849
|
-
|
|
850
|
-
|
|
851
|
-
|
|
852
|
-
|
|
853
|
-
|
|
854
|
-
|
|
855
|
-
|
|
856
|
-
|
|
857
|
-
|
|
858
|
-
|
|
859
|
-
|
|
860
|
-
|
|
861
|
-
|
|
862
|
-
|
|
863
|
-
|
|
864
|
-
const
|
|
865
|
-
|
|
866
|
-
|
|
867
|
-
|
|
868
|
-
|
|
869
|
-
|
|
870
|
-
|
|
871
|
-
|
|
872
|
-
|
|
873
|
-
|
|
874
|
-
|
|
875
|
-
|
|
876
|
-
|
|
877
|
-
|
|
878
|
-
|
|
879
|
-
|
|
880
|
-
const
|
|
881
|
-
|
|
882
|
-
|
|
883
|
-
|
|
884
|
-
|
|
885
|
-
|
|
886
|
-
|
|
887
|
-
|
|
888
|
-
|
|
889
|
-
const
|
|
890
|
-
|
|
891
|
-
|
|
892
|
-
|
|
893
|
-
|
|
894
|
-
|
|
895
|
-
|
|
896
|
-
|
|
897
|
-
|
|
898
|
-
const
|
|
899
|
-
|
|
900
|
-
|
|
901
|
-
|
|
902
|
-
|
|
903
|
-
|
|
904
|
-
|
|
905
|
-
|
|
906
|
-
|
|
907
|
-
|
|
908
|
-
const
|
|
909
|
-
|
|
910
|
-
|
|
911
|
-
|
|
912
|
-
|
|
913
|
-
|
|
914
|
-
|
|
915
|
-
|
|
916
|
-
|
|
917
|
-
|
|
918
|
-
const
|
|
919
|
-
|
|
920
|
-
|
|
921
|
-
|
|
922
|
-
|
|
923
|
-
|
|
924
|
-
|
|
925
|
-
|
|
926
|
-
|
|
927
|
-
|
|
928
|
-
|
|
929
|
-
|
|
930
|
-
|
|
931
|
-
const
|
|
932
|
-
|
|
933
|
-
|
|
934
|
-
|
|
935
|
-
|
|
936
|
-
|
|
937
|
-
|
|
938
|
-
|
|
939
|
-
|
|
940
|
-
|
|
941
|
-
|
|
942
|
-
|
|
943
|
-
|
|
944
|
-
|
|
945
|
-
return b.build();
|
|
946
|
-
};
|
|
947
|
-
const se_ListDomainsCommand = async (input, context) => {
|
|
948
|
-
const b = core.requestBuilder(input, context);
|
|
949
|
-
const headers = {};
|
|
950
|
-
b.bp("/domains-list");
|
|
951
|
-
const query = smithyClient.map({
|
|
952
|
-
[_mR]: [() => input.maxResults !== void 0, () => input[_mR].toString()],
|
|
953
|
-
[_nT]: [, input[_nT]],
|
|
954
|
-
});
|
|
955
|
-
let body;
|
|
956
|
-
b.m("POST").h(headers).q(query).b(body);
|
|
957
|
-
return b.build();
|
|
958
|
-
};
|
|
959
|
-
const se_ListFieldOptionsCommand = async (input, context) => {
|
|
960
|
-
const b = core.requestBuilder(input, context);
|
|
961
|
-
const headers = {};
|
|
962
|
-
b.bp("/domains/{domainId}/fields/{fieldId}/options-list");
|
|
963
|
-
b.p("domainId", () => input.domainId, "{domainId}", false);
|
|
964
|
-
b.p("fieldId", () => input.fieldId, "{fieldId}", false);
|
|
965
|
-
const query = smithyClient.map({
|
|
966
|
-
[_mR]: [() => input.maxResults !== void 0, () => input[_mR].toString()],
|
|
967
|
-
[_nT]: [, input[_nT]],
|
|
968
|
-
[_v]: [() => input.values !== void 0, () => input[_v] || []],
|
|
969
|
-
});
|
|
970
|
-
let body;
|
|
971
|
-
b.m("POST").h(headers).q(query).b(body);
|
|
972
|
-
return b.build();
|
|
973
|
-
};
|
|
974
|
-
const se_ListFieldsCommand = async (input, context) => {
|
|
975
|
-
const b = core.requestBuilder(input, context);
|
|
976
|
-
const headers = {};
|
|
977
|
-
b.bp("/domains/{domainId}/fields-list");
|
|
978
|
-
b.p("domainId", () => input.domainId, "{domainId}", false);
|
|
979
|
-
const query = smithyClient.map({
|
|
980
|
-
[_mR]: [() => input.maxResults !== void 0, () => input[_mR].toString()],
|
|
981
|
-
[_nT]: [, input[_nT]],
|
|
982
|
-
});
|
|
983
|
-
let body;
|
|
984
|
-
b.m("POST").h(headers).q(query).b(body);
|
|
985
|
-
return b.build();
|
|
986
|
-
};
|
|
987
|
-
const se_ListLayoutsCommand = async (input, context) => {
|
|
988
|
-
const b = core.requestBuilder(input, context);
|
|
989
|
-
const headers = {};
|
|
990
|
-
b.bp("/domains/{domainId}/layouts-list");
|
|
991
|
-
b.p("domainId", () => input.domainId, "{domainId}", false);
|
|
992
|
-
const query = smithyClient.map({
|
|
993
|
-
[_mR]: [() => input.maxResults !== void 0, () => input[_mR].toString()],
|
|
994
|
-
[_nT]: [, input[_nT]],
|
|
995
|
-
});
|
|
996
|
-
let body;
|
|
997
|
-
b.m("POST").h(headers).q(query).b(body);
|
|
998
|
-
return b.build();
|
|
999
|
-
};
|
|
1000
|
-
const se_ListTagsForResourceCommand = async (input, context) => {
|
|
1001
|
-
const b = core.requestBuilder(input, context);
|
|
1002
|
-
const headers = {};
|
|
1003
|
-
b.bp("/tags/{arn}");
|
|
1004
|
-
b.p("arn", () => input.arn, "{arn}", false);
|
|
1005
|
-
let body;
|
|
1006
|
-
b.m("GET").h(headers).b(body);
|
|
1007
|
-
return b.build();
|
|
1008
|
-
};
|
|
1009
|
-
const se_ListTemplatesCommand = async (input, context) => {
|
|
1010
|
-
const b = core.requestBuilder(input, context);
|
|
1011
|
-
const headers = {};
|
|
1012
|
-
b.bp("/domains/{domainId}/templates-list");
|
|
1013
|
-
b.p("domainId", () => input.domainId, "{domainId}", false);
|
|
1014
|
-
const query = smithyClient.map({
|
|
1015
|
-
[_mR]: [() => input.maxResults !== void 0, () => input[_mR].toString()],
|
|
1016
|
-
[_nT]: [, input[_nT]],
|
|
1017
|
-
[_s]: [() => input.status !== void 0, () => input[_s] || []],
|
|
1018
|
-
});
|
|
1019
|
-
let body;
|
|
1020
|
-
b.m("POST").h(headers).q(query).b(body);
|
|
1021
|
-
return b.build();
|
|
1022
|
-
};
|
|
1023
|
-
const se_PutCaseEventConfigurationCommand = async (input, context) => {
|
|
1024
|
-
const b = core.requestBuilder(input, context);
|
|
1025
|
-
const headers = {
|
|
1026
|
-
"content-type": "application/json",
|
|
1027
|
-
};
|
|
1028
|
-
b.bp("/domains/{domainId}/case-event-configuration");
|
|
1029
|
-
b.p("domainId", () => input.domainId, "{domainId}", false);
|
|
1030
|
-
let body;
|
|
1031
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
1032
|
-
eventBridge: (_) => smithyClient._json(_),
|
|
1033
|
-
}));
|
|
1034
|
-
b.m("PUT").h(headers).b(body);
|
|
1035
|
-
return b.build();
|
|
1036
|
-
};
|
|
1037
|
-
const se_SearchAllRelatedItemsCommand = async (input, context) => {
|
|
1038
|
-
const b = core.requestBuilder(input, context);
|
|
1039
|
-
const headers = {
|
|
1040
|
-
"content-type": "application/json",
|
|
1041
|
-
};
|
|
1042
|
-
b.bp("/domains/{domainId}/related-items-search");
|
|
1043
|
-
b.p("domainId", () => input.domainId, "{domainId}", false);
|
|
1044
|
-
let body;
|
|
1045
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
1046
|
-
filters: (_) => se_RelatedItemFilterList(_),
|
|
1047
|
-
maxResults: [],
|
|
1048
|
-
nextToken: [],
|
|
1049
|
-
sorts: (_) => smithyClient._json(_),
|
|
1050
|
-
}));
|
|
1051
|
-
b.m("POST").h(headers).b(body);
|
|
1052
|
-
return b.build();
|
|
1053
|
-
};
|
|
1054
|
-
const se_SearchCasesCommand = async (input, context) => {
|
|
1055
|
-
const b = core.requestBuilder(input, context);
|
|
1056
|
-
const headers = {
|
|
1057
|
-
"content-type": "application/json",
|
|
1058
|
-
};
|
|
1059
|
-
b.bp("/domains/{domainId}/cases-search");
|
|
1060
|
-
b.p("domainId", () => input.domainId, "{domainId}", false);
|
|
1061
|
-
let body;
|
|
1062
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
1063
|
-
fields: (_) => smithyClient._json(_),
|
|
1064
|
-
filter: (_) => se_CaseFilter(_),
|
|
1065
|
-
maxResults: [],
|
|
1066
|
-
nextToken: [],
|
|
1067
|
-
searchTerm: [],
|
|
1068
|
-
sorts: (_) => smithyClient._json(_),
|
|
1069
|
-
}));
|
|
1070
|
-
b.m("POST").h(headers).b(body);
|
|
1071
|
-
return b.build();
|
|
1072
|
-
};
|
|
1073
|
-
const se_SearchRelatedItemsCommand = async (input, context) => {
|
|
1074
|
-
const b = core.requestBuilder(input, context);
|
|
1075
|
-
const headers = {
|
|
1076
|
-
"content-type": "application/json",
|
|
1077
|
-
};
|
|
1078
|
-
b.bp("/domains/{domainId}/cases/{caseId}/related-items-search");
|
|
1079
|
-
b.p("domainId", () => input.domainId, "{domainId}", false);
|
|
1080
|
-
b.p("caseId", () => input.caseId, "{caseId}", false);
|
|
1081
|
-
let body;
|
|
1082
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
1083
|
-
filters: (_) => se_RelatedItemFilterList(_),
|
|
1084
|
-
maxResults: [],
|
|
1085
|
-
nextToken: [],
|
|
1086
|
-
}));
|
|
1087
|
-
b.m("POST").h(headers).b(body);
|
|
1088
|
-
return b.build();
|
|
1089
|
-
};
|
|
1090
|
-
const se_TagResourceCommand = async (input, context) => {
|
|
1091
|
-
const b = core.requestBuilder(input, context);
|
|
1092
|
-
const headers = {
|
|
1093
|
-
"content-type": "application/json",
|
|
1094
|
-
};
|
|
1095
|
-
b.bp("/tags/{arn}");
|
|
1096
|
-
b.p("arn", () => input.arn, "{arn}", false);
|
|
1097
|
-
let body;
|
|
1098
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
1099
|
-
tags: (_) => se_Tags(_),
|
|
1100
|
-
}));
|
|
1101
|
-
b.m("POST").h(headers).b(body);
|
|
1102
|
-
return b.build();
|
|
1103
|
-
};
|
|
1104
|
-
const se_UntagResourceCommand = async (input, context) => {
|
|
1105
|
-
const b = core.requestBuilder(input, context);
|
|
1106
|
-
const headers = {};
|
|
1107
|
-
b.bp("/tags/{arn}");
|
|
1108
|
-
b.p("arn", () => input.arn, "{arn}", false);
|
|
1109
|
-
const query = smithyClient.map({
|
|
1110
|
-
[_tK]: [smithyClient.expectNonNull(input.tagKeys, `tagKeys`) != null, () => input[_tK] || []],
|
|
1111
|
-
});
|
|
1112
|
-
let body;
|
|
1113
|
-
b.m("DELETE").h(headers).q(query).b(body);
|
|
1114
|
-
return b.build();
|
|
1115
|
-
};
|
|
1116
|
-
const se_UpdateCaseCommand = async (input, context) => {
|
|
1117
|
-
const b = core.requestBuilder(input, context);
|
|
1118
|
-
const headers = {
|
|
1119
|
-
"content-type": "application/json",
|
|
1120
|
-
};
|
|
1121
|
-
b.bp("/domains/{domainId}/cases/{caseId}");
|
|
1122
|
-
b.p("domainId", () => input.domainId, "{domainId}", false);
|
|
1123
|
-
b.p("caseId", () => input.caseId, "{caseId}", false);
|
|
1124
|
-
let body;
|
|
1125
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
1126
|
-
fields: (_) => se_FieldValueList(_),
|
|
1127
|
-
performedBy: (_) => smithyClient._json(_),
|
|
1128
|
-
}));
|
|
1129
|
-
b.m("PUT").h(headers).b(body);
|
|
1130
|
-
return b.build();
|
|
1131
|
-
};
|
|
1132
|
-
const se_UpdateCaseRuleCommand = async (input, context) => {
|
|
1133
|
-
const b = core.requestBuilder(input, context);
|
|
1134
|
-
const headers = {
|
|
1135
|
-
"content-type": "application/json",
|
|
1136
|
-
};
|
|
1137
|
-
b.bp("/domains/{domainId}/case-rules/{caseRuleId}");
|
|
1138
|
-
b.p("domainId", () => input.domainId, "{domainId}", false);
|
|
1139
|
-
b.p("caseRuleId", () => input.caseRuleId, "{caseRuleId}", false);
|
|
1140
|
-
let body;
|
|
1141
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
1142
|
-
description: [],
|
|
1143
|
-
name: [],
|
|
1144
|
-
rule: (_) => se_CaseRuleDetails(_),
|
|
1145
|
-
}));
|
|
1146
|
-
b.m("PUT").h(headers).b(body);
|
|
1147
|
-
return b.build();
|
|
1148
|
-
};
|
|
1149
|
-
const se_UpdateFieldCommand = async (input, context) => {
|
|
1150
|
-
const b = core.requestBuilder(input, context);
|
|
1151
|
-
const headers = {
|
|
1152
|
-
"content-type": "application/json",
|
|
1153
|
-
};
|
|
1154
|
-
b.bp("/domains/{domainId}/fields/{fieldId}");
|
|
1155
|
-
b.p("domainId", () => input.domainId, "{domainId}", false);
|
|
1156
|
-
b.p("fieldId", () => input.fieldId, "{fieldId}", false);
|
|
1157
|
-
let body;
|
|
1158
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
1159
|
-
description: [],
|
|
1160
|
-
name: [],
|
|
1161
|
-
}));
|
|
1162
|
-
b.m("PUT").h(headers).b(body);
|
|
1163
|
-
return b.build();
|
|
1164
|
-
};
|
|
1165
|
-
const se_UpdateLayoutCommand = async (input, context) => {
|
|
1166
|
-
const b = core.requestBuilder(input, context);
|
|
1167
|
-
const headers = {
|
|
1168
|
-
"content-type": "application/json",
|
|
1169
|
-
};
|
|
1170
|
-
b.bp("/domains/{domainId}/layouts/{layoutId}");
|
|
1171
|
-
b.p("domainId", () => input.domainId, "{domainId}", false);
|
|
1172
|
-
b.p("layoutId", () => input.layoutId, "{layoutId}", false);
|
|
1173
|
-
let body;
|
|
1174
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
1175
|
-
content: (_) => smithyClient._json(_),
|
|
1176
|
-
name: [],
|
|
1177
|
-
}));
|
|
1178
|
-
b.m("PUT").h(headers).b(body);
|
|
1179
|
-
return b.build();
|
|
1180
|
-
};
|
|
1181
|
-
const se_UpdateTemplateCommand = async (input, context) => {
|
|
1182
|
-
const b = core.requestBuilder(input, context);
|
|
1183
|
-
const headers = {
|
|
1184
|
-
"content-type": "application/json",
|
|
1185
|
-
};
|
|
1186
|
-
b.bp("/domains/{domainId}/templates/{templateId}");
|
|
1187
|
-
b.p("domainId", () => input.domainId, "{domainId}", false);
|
|
1188
|
-
b.p("templateId", () => input.templateId, "{templateId}", false);
|
|
1189
|
-
let body;
|
|
1190
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
1191
|
-
description: [],
|
|
1192
|
-
layoutConfiguration: (_) => smithyClient._json(_),
|
|
1193
|
-
name: [],
|
|
1194
|
-
requiredFields: (_) => smithyClient._json(_),
|
|
1195
|
-
rules: (_) => smithyClient._json(_),
|
|
1196
|
-
status: [],
|
|
1197
|
-
}));
|
|
1198
|
-
b.m("PUT").h(headers).b(body);
|
|
1199
|
-
return b.build();
|
|
1200
|
-
};
|
|
1201
|
-
const de_BatchGetCaseRuleCommand = async (output, context) => {
|
|
1202
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1203
|
-
return de_CommandError(output, context);
|
|
1204
|
-
}
|
|
1205
|
-
const contents = smithyClient.map({
|
|
1206
|
-
$metadata: deserializeMetadata(output),
|
|
1207
|
-
});
|
|
1208
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1209
|
-
const doc = smithyClient.take(data, {
|
|
1210
|
-
caseRules: (_) => de_BatchGetCaseRuleList(_),
|
|
1211
|
-
errors: smithyClient._json,
|
|
1212
|
-
unprocessedCaseRules: smithyClient._json,
|
|
1213
|
-
});
|
|
1214
|
-
Object.assign(contents, doc);
|
|
1215
|
-
return contents;
|
|
1216
|
-
};
|
|
1217
|
-
const de_BatchGetFieldCommand = async (output, context) => {
|
|
1218
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1219
|
-
return de_CommandError(output, context);
|
|
1220
|
-
}
|
|
1221
|
-
const contents = smithyClient.map({
|
|
1222
|
-
$metadata: deserializeMetadata(output),
|
|
1223
|
-
});
|
|
1224
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1225
|
-
const doc = smithyClient.take(data, {
|
|
1226
|
-
errors: smithyClient._json,
|
|
1227
|
-
fields: (_) => de_BatchGetFieldList(_),
|
|
1228
|
-
});
|
|
1229
|
-
Object.assign(contents, doc);
|
|
1230
|
-
return contents;
|
|
1231
|
-
};
|
|
1232
|
-
const de_BatchPutFieldOptionsCommand = async (output, context) => {
|
|
1233
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1234
|
-
return de_CommandError(output, context);
|
|
1235
|
-
}
|
|
1236
|
-
const contents = smithyClient.map({
|
|
1237
|
-
$metadata: deserializeMetadata(output),
|
|
1238
|
-
});
|
|
1239
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1240
|
-
const doc = smithyClient.take(data, {
|
|
1241
|
-
errors: smithyClient._json,
|
|
1242
|
-
});
|
|
1243
|
-
Object.assign(contents, doc);
|
|
1244
|
-
return contents;
|
|
1245
|
-
};
|
|
1246
|
-
const de_CreateCaseCommand = async (output, context) => {
|
|
1247
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1248
|
-
return de_CommandError(output, context);
|
|
1249
|
-
}
|
|
1250
|
-
const contents = smithyClient.map({
|
|
1251
|
-
$metadata: deserializeMetadata(output),
|
|
1252
|
-
});
|
|
1253
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1254
|
-
const doc = smithyClient.take(data, {
|
|
1255
|
-
caseArn: smithyClient.expectString,
|
|
1256
|
-
caseId: smithyClient.expectString,
|
|
1257
|
-
});
|
|
1258
|
-
Object.assign(contents, doc);
|
|
1259
|
-
return contents;
|
|
1260
|
-
};
|
|
1261
|
-
const de_CreateCaseRuleCommand = async (output, context) => {
|
|
1262
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1263
|
-
return de_CommandError(output, context);
|
|
1264
|
-
}
|
|
1265
|
-
const contents = smithyClient.map({
|
|
1266
|
-
$metadata: deserializeMetadata(output),
|
|
1267
|
-
});
|
|
1268
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1269
|
-
const doc = smithyClient.take(data, {
|
|
1270
|
-
caseRuleArn: smithyClient.expectString,
|
|
1271
|
-
caseRuleId: smithyClient.expectString,
|
|
1272
|
-
});
|
|
1273
|
-
Object.assign(contents, doc);
|
|
1274
|
-
return contents;
|
|
1275
|
-
};
|
|
1276
|
-
const de_CreateDomainCommand = async (output, context) => {
|
|
1277
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1278
|
-
return de_CommandError(output, context);
|
|
1279
|
-
}
|
|
1280
|
-
const contents = smithyClient.map({
|
|
1281
|
-
$metadata: deserializeMetadata(output),
|
|
1282
|
-
});
|
|
1283
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1284
|
-
const doc = smithyClient.take(data, {
|
|
1285
|
-
domainArn: smithyClient.expectString,
|
|
1286
|
-
domainId: smithyClient.expectString,
|
|
1287
|
-
domainStatus: smithyClient.expectString,
|
|
1288
|
-
});
|
|
1289
|
-
Object.assign(contents, doc);
|
|
1290
|
-
return contents;
|
|
1291
|
-
};
|
|
1292
|
-
const de_CreateFieldCommand = async (output, context) => {
|
|
1293
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1294
|
-
return de_CommandError(output, context);
|
|
1295
|
-
}
|
|
1296
|
-
const contents = smithyClient.map({
|
|
1297
|
-
$metadata: deserializeMetadata(output),
|
|
1298
|
-
});
|
|
1299
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1300
|
-
const doc = smithyClient.take(data, {
|
|
1301
|
-
fieldArn: smithyClient.expectString,
|
|
1302
|
-
fieldId: smithyClient.expectString,
|
|
1303
|
-
});
|
|
1304
|
-
Object.assign(contents, doc);
|
|
1305
|
-
return contents;
|
|
1306
|
-
};
|
|
1307
|
-
const de_CreateLayoutCommand = async (output, context) => {
|
|
1308
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1309
|
-
return de_CommandError(output, context);
|
|
1310
|
-
}
|
|
1311
|
-
const contents = smithyClient.map({
|
|
1312
|
-
$metadata: deserializeMetadata(output),
|
|
1313
|
-
});
|
|
1314
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1315
|
-
const doc = smithyClient.take(data, {
|
|
1316
|
-
layoutArn: smithyClient.expectString,
|
|
1317
|
-
layoutId: smithyClient.expectString,
|
|
1318
|
-
});
|
|
1319
|
-
Object.assign(contents, doc);
|
|
1320
|
-
return contents;
|
|
1321
|
-
};
|
|
1322
|
-
const de_CreateRelatedItemCommand = async (output, context) => {
|
|
1323
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1324
|
-
return de_CommandError(output, context);
|
|
1325
|
-
}
|
|
1326
|
-
const contents = smithyClient.map({
|
|
1327
|
-
$metadata: deserializeMetadata(output),
|
|
1328
|
-
});
|
|
1329
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1330
|
-
const doc = smithyClient.take(data, {
|
|
1331
|
-
relatedItemArn: smithyClient.expectString,
|
|
1332
|
-
relatedItemId: smithyClient.expectString,
|
|
1333
|
-
});
|
|
1334
|
-
Object.assign(contents, doc);
|
|
1335
|
-
return contents;
|
|
1336
|
-
};
|
|
1337
|
-
const de_CreateTemplateCommand = async (output, context) => {
|
|
1338
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1339
|
-
return de_CommandError(output, context);
|
|
1340
|
-
}
|
|
1341
|
-
const contents = smithyClient.map({
|
|
1342
|
-
$metadata: deserializeMetadata(output),
|
|
1343
|
-
});
|
|
1344
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1345
|
-
const doc = smithyClient.take(data, {
|
|
1346
|
-
templateArn: smithyClient.expectString,
|
|
1347
|
-
templateId: smithyClient.expectString,
|
|
1348
|
-
});
|
|
1349
|
-
Object.assign(contents, doc);
|
|
1350
|
-
return contents;
|
|
1351
|
-
};
|
|
1352
|
-
const de_DeleteCaseCommand = async (output, context) => {
|
|
1353
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1354
|
-
return de_CommandError(output, context);
|
|
1355
|
-
}
|
|
1356
|
-
const contents = smithyClient.map({
|
|
1357
|
-
$metadata: deserializeMetadata(output),
|
|
1358
|
-
});
|
|
1359
|
-
await smithyClient.collectBody(output.body, context);
|
|
1360
|
-
return contents;
|
|
1361
|
-
};
|
|
1362
|
-
const de_DeleteCaseRuleCommand = async (output, context) => {
|
|
1363
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1364
|
-
return de_CommandError(output, context);
|
|
1365
|
-
}
|
|
1366
|
-
const contents = smithyClient.map({
|
|
1367
|
-
$metadata: deserializeMetadata(output),
|
|
1368
|
-
});
|
|
1369
|
-
await smithyClient.collectBody(output.body, context);
|
|
1370
|
-
return contents;
|
|
1371
|
-
};
|
|
1372
|
-
const de_DeleteDomainCommand = async (output, context) => {
|
|
1373
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1374
|
-
return de_CommandError(output, context);
|
|
1375
|
-
}
|
|
1376
|
-
const contents = smithyClient.map({
|
|
1377
|
-
$metadata: deserializeMetadata(output),
|
|
1378
|
-
});
|
|
1379
|
-
await smithyClient.collectBody(output.body, context);
|
|
1380
|
-
return contents;
|
|
1381
|
-
};
|
|
1382
|
-
const de_DeleteFieldCommand = async (output, context) => {
|
|
1383
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1384
|
-
return de_CommandError(output, context);
|
|
1385
|
-
}
|
|
1386
|
-
const contents = smithyClient.map({
|
|
1387
|
-
$metadata: deserializeMetadata(output),
|
|
1388
|
-
});
|
|
1389
|
-
await smithyClient.collectBody(output.body, context);
|
|
1390
|
-
return contents;
|
|
1391
|
-
};
|
|
1392
|
-
const de_DeleteLayoutCommand = async (output, context) => {
|
|
1393
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1394
|
-
return de_CommandError(output, context);
|
|
1395
|
-
}
|
|
1396
|
-
const contents = smithyClient.map({
|
|
1397
|
-
$metadata: deserializeMetadata(output),
|
|
1398
|
-
});
|
|
1399
|
-
await smithyClient.collectBody(output.body, context);
|
|
1400
|
-
return contents;
|
|
1401
|
-
};
|
|
1402
|
-
const de_DeleteRelatedItemCommand = async (output, context) => {
|
|
1403
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1404
|
-
return de_CommandError(output, context);
|
|
1405
|
-
}
|
|
1406
|
-
const contents = smithyClient.map({
|
|
1407
|
-
$metadata: deserializeMetadata(output),
|
|
1408
|
-
});
|
|
1409
|
-
await smithyClient.collectBody(output.body, context);
|
|
1410
|
-
return contents;
|
|
1411
|
-
};
|
|
1412
|
-
const de_DeleteTemplateCommand = async (output, context) => {
|
|
1413
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1414
|
-
return de_CommandError(output, context);
|
|
1415
|
-
}
|
|
1416
|
-
const contents = smithyClient.map({
|
|
1417
|
-
$metadata: deserializeMetadata(output),
|
|
1418
|
-
});
|
|
1419
|
-
await smithyClient.collectBody(output.body, context);
|
|
1420
|
-
return contents;
|
|
1421
|
-
};
|
|
1422
|
-
const de_GetCaseCommand = async (output, context) => {
|
|
1423
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1424
|
-
return de_CommandError(output, context);
|
|
1425
|
-
}
|
|
1426
|
-
const contents = smithyClient.map({
|
|
1427
|
-
$metadata: deserializeMetadata(output),
|
|
1428
|
-
});
|
|
1429
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1430
|
-
const doc = smithyClient.take(data, {
|
|
1431
|
-
fields: (_) => de_FieldValueList(_),
|
|
1432
|
-
nextToken: smithyClient.expectString,
|
|
1433
|
-
tags: (_) => de_Tags(_),
|
|
1434
|
-
templateId: smithyClient.expectString,
|
|
1435
|
-
});
|
|
1436
|
-
Object.assign(contents, doc);
|
|
1437
|
-
return contents;
|
|
1438
|
-
};
|
|
1439
|
-
const de_GetCaseAuditEventsCommand = async (output, context) => {
|
|
1440
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1441
|
-
return de_CommandError(output, context);
|
|
1442
|
-
}
|
|
1443
|
-
const contents = smithyClient.map({
|
|
1444
|
-
$metadata: deserializeMetadata(output),
|
|
1445
|
-
});
|
|
1446
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1447
|
-
const doc = smithyClient.take(data, {
|
|
1448
|
-
auditEvents: (_) => de_AuditEventsList(_),
|
|
1449
|
-
nextToken: smithyClient.expectString,
|
|
1450
|
-
});
|
|
1451
|
-
Object.assign(contents, doc);
|
|
1452
|
-
return contents;
|
|
1453
|
-
};
|
|
1454
|
-
const de_GetCaseEventConfigurationCommand = async (output, context) => {
|
|
1455
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1456
|
-
return de_CommandError(output, context);
|
|
1457
|
-
}
|
|
1458
|
-
const contents = smithyClient.map({
|
|
1459
|
-
$metadata: deserializeMetadata(output),
|
|
1460
|
-
});
|
|
1461
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1462
|
-
const doc = smithyClient.take(data, {
|
|
1463
|
-
eventBridge: smithyClient._json,
|
|
1464
|
-
});
|
|
1465
|
-
Object.assign(contents, doc);
|
|
1466
|
-
return contents;
|
|
1467
|
-
};
|
|
1468
|
-
const de_GetDomainCommand = async (output, context) => {
|
|
1469
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1470
|
-
return de_CommandError(output, context);
|
|
1471
|
-
}
|
|
1472
|
-
const contents = smithyClient.map({
|
|
1473
|
-
$metadata: deserializeMetadata(output),
|
|
1474
|
-
});
|
|
1475
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1476
|
-
const doc = smithyClient.take(data, {
|
|
1477
|
-
createdTime: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
|
|
1478
|
-
domainArn: smithyClient.expectString,
|
|
1479
|
-
domainId: smithyClient.expectString,
|
|
1480
|
-
domainStatus: smithyClient.expectString,
|
|
1481
|
-
name: smithyClient.expectString,
|
|
1482
|
-
tags: (_) => de_Tags(_),
|
|
1483
|
-
});
|
|
1484
|
-
Object.assign(contents, doc);
|
|
1485
|
-
return contents;
|
|
1486
|
-
};
|
|
1487
|
-
const de_GetLayoutCommand = async (output, context) => {
|
|
1488
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1489
|
-
return de_CommandError(output, context);
|
|
1490
|
-
}
|
|
1491
|
-
const contents = smithyClient.map({
|
|
1492
|
-
$metadata: deserializeMetadata(output),
|
|
1493
|
-
});
|
|
1494
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1495
|
-
const doc = smithyClient.take(data, {
|
|
1496
|
-
content: (_) => smithyClient._json(core$1.awsExpectUnion(_)),
|
|
1497
|
-
createdTime: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
|
|
1498
|
-
deleted: smithyClient.expectBoolean,
|
|
1499
|
-
lastModifiedTime: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
|
|
1500
|
-
layoutArn: smithyClient.expectString,
|
|
1501
|
-
layoutId: smithyClient.expectString,
|
|
1502
|
-
name: smithyClient.expectString,
|
|
1503
|
-
tags: (_) => de_Tags(_),
|
|
1504
|
-
});
|
|
1505
|
-
Object.assign(contents, doc);
|
|
1506
|
-
return contents;
|
|
1507
|
-
};
|
|
1508
|
-
const de_GetTemplateCommand = async (output, context) => {
|
|
1509
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1510
|
-
return de_CommandError(output, context);
|
|
1511
|
-
}
|
|
1512
|
-
const contents = smithyClient.map({
|
|
1513
|
-
$metadata: deserializeMetadata(output),
|
|
1514
|
-
});
|
|
1515
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1516
|
-
const doc = smithyClient.take(data, {
|
|
1517
|
-
createdTime: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
|
|
1518
|
-
deleted: smithyClient.expectBoolean,
|
|
1519
|
-
description: smithyClient.expectString,
|
|
1520
|
-
lastModifiedTime: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
|
|
1521
|
-
layoutConfiguration: smithyClient._json,
|
|
1522
|
-
name: smithyClient.expectString,
|
|
1523
|
-
requiredFields: smithyClient._json,
|
|
1524
|
-
rules: smithyClient._json,
|
|
1525
|
-
status: smithyClient.expectString,
|
|
1526
|
-
tags: (_) => de_Tags(_),
|
|
1527
|
-
templateArn: smithyClient.expectString,
|
|
1528
|
-
templateId: smithyClient.expectString,
|
|
1529
|
-
});
|
|
1530
|
-
Object.assign(contents, doc);
|
|
1531
|
-
return contents;
|
|
1532
|
-
};
|
|
1533
|
-
const de_ListCaseRulesCommand = async (output, context) => {
|
|
1534
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1535
|
-
return de_CommandError(output, context);
|
|
1536
|
-
}
|
|
1537
|
-
const contents = smithyClient.map({
|
|
1538
|
-
$metadata: deserializeMetadata(output),
|
|
1539
|
-
});
|
|
1540
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1541
|
-
const doc = smithyClient.take(data, {
|
|
1542
|
-
caseRules: smithyClient._json,
|
|
1543
|
-
nextToken: smithyClient.expectString,
|
|
1544
|
-
});
|
|
1545
|
-
Object.assign(contents, doc);
|
|
1546
|
-
return contents;
|
|
1547
|
-
};
|
|
1548
|
-
const de_ListCasesForContactCommand = async (output, context) => {
|
|
1549
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1550
|
-
return de_CommandError(output, context);
|
|
1551
|
-
}
|
|
1552
|
-
const contents = smithyClient.map({
|
|
1553
|
-
$metadata: deserializeMetadata(output),
|
|
1554
|
-
});
|
|
1555
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1556
|
-
const doc = smithyClient.take(data, {
|
|
1557
|
-
cases: smithyClient._json,
|
|
1558
|
-
nextToken: smithyClient.expectString,
|
|
1559
|
-
});
|
|
1560
|
-
Object.assign(contents, doc);
|
|
1561
|
-
return contents;
|
|
1562
|
-
};
|
|
1563
|
-
const de_ListDomainsCommand = async (output, context) => {
|
|
1564
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1565
|
-
return de_CommandError(output, context);
|
|
1566
|
-
}
|
|
1567
|
-
const contents = smithyClient.map({
|
|
1568
|
-
$metadata: deserializeMetadata(output),
|
|
1569
|
-
});
|
|
1570
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1571
|
-
const doc = smithyClient.take(data, {
|
|
1572
|
-
domains: smithyClient._json,
|
|
1573
|
-
nextToken: smithyClient.expectString,
|
|
1574
|
-
});
|
|
1575
|
-
Object.assign(contents, doc);
|
|
1576
|
-
return contents;
|
|
1577
|
-
};
|
|
1578
|
-
const de_ListFieldOptionsCommand = async (output, context) => {
|
|
1579
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1580
|
-
return de_CommandError(output, context);
|
|
1581
|
-
}
|
|
1582
|
-
const contents = smithyClient.map({
|
|
1583
|
-
$metadata: deserializeMetadata(output),
|
|
1584
|
-
});
|
|
1585
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1586
|
-
const doc = smithyClient.take(data, {
|
|
1587
|
-
nextToken: smithyClient.expectString,
|
|
1588
|
-
options: smithyClient._json,
|
|
1589
|
-
});
|
|
1590
|
-
Object.assign(contents, doc);
|
|
1591
|
-
return contents;
|
|
1592
|
-
};
|
|
1593
|
-
const de_ListFieldsCommand = async (output, context) => {
|
|
1594
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1595
|
-
return de_CommandError(output, context);
|
|
1596
|
-
}
|
|
1597
|
-
const contents = smithyClient.map({
|
|
1598
|
-
$metadata: deserializeMetadata(output),
|
|
1599
|
-
});
|
|
1600
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1601
|
-
const doc = smithyClient.take(data, {
|
|
1602
|
-
fields: smithyClient._json,
|
|
1603
|
-
nextToken: smithyClient.expectString,
|
|
1604
|
-
});
|
|
1605
|
-
Object.assign(contents, doc);
|
|
1606
|
-
return contents;
|
|
1607
|
-
};
|
|
1608
|
-
const de_ListLayoutsCommand = async (output, context) => {
|
|
1609
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1610
|
-
return de_CommandError(output, context);
|
|
1611
|
-
}
|
|
1612
|
-
const contents = smithyClient.map({
|
|
1613
|
-
$metadata: deserializeMetadata(output),
|
|
1614
|
-
});
|
|
1615
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1616
|
-
const doc = smithyClient.take(data, {
|
|
1617
|
-
layouts: smithyClient._json,
|
|
1618
|
-
nextToken: smithyClient.expectString,
|
|
1619
|
-
});
|
|
1620
|
-
Object.assign(contents, doc);
|
|
1621
|
-
return contents;
|
|
1622
|
-
};
|
|
1623
|
-
const de_ListTagsForResourceCommand = async (output, context) => {
|
|
1624
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1625
|
-
return de_CommandError(output, context);
|
|
1626
|
-
}
|
|
1627
|
-
const contents = smithyClient.map({
|
|
1628
|
-
$metadata: deserializeMetadata(output),
|
|
1629
|
-
});
|
|
1630
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1631
|
-
const doc = smithyClient.take(data, {
|
|
1632
|
-
tags: (_) => de_Tags(_),
|
|
1633
|
-
});
|
|
1634
|
-
Object.assign(contents, doc);
|
|
1635
|
-
return contents;
|
|
1636
|
-
};
|
|
1637
|
-
const de_ListTemplatesCommand = async (output, context) => {
|
|
1638
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1639
|
-
return de_CommandError(output, context);
|
|
1640
|
-
}
|
|
1641
|
-
const contents = smithyClient.map({
|
|
1642
|
-
$metadata: deserializeMetadata(output),
|
|
1643
|
-
});
|
|
1644
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1645
|
-
const doc = smithyClient.take(data, {
|
|
1646
|
-
nextToken: smithyClient.expectString,
|
|
1647
|
-
templates: smithyClient._json,
|
|
1648
|
-
});
|
|
1649
|
-
Object.assign(contents, doc);
|
|
1650
|
-
return contents;
|
|
1651
|
-
};
|
|
1652
|
-
const de_PutCaseEventConfigurationCommand = async (output, context) => {
|
|
1653
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1654
|
-
return de_CommandError(output, context);
|
|
1655
|
-
}
|
|
1656
|
-
const contents = smithyClient.map({
|
|
1657
|
-
$metadata: deserializeMetadata(output),
|
|
1658
|
-
});
|
|
1659
|
-
await smithyClient.collectBody(output.body, context);
|
|
1660
|
-
return contents;
|
|
1661
|
-
};
|
|
1662
|
-
const de_SearchAllRelatedItemsCommand = async (output, context) => {
|
|
1663
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1664
|
-
return de_CommandError(output, context);
|
|
1665
|
-
}
|
|
1666
|
-
const contents = smithyClient.map({
|
|
1667
|
-
$metadata: deserializeMetadata(output),
|
|
1668
|
-
});
|
|
1669
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1670
|
-
const doc = smithyClient.take(data, {
|
|
1671
|
-
nextToken: smithyClient.expectString,
|
|
1672
|
-
relatedItems: (_) => de_SearchAllRelatedItemsResponseItemList(_),
|
|
1673
|
-
});
|
|
1674
|
-
Object.assign(contents, doc);
|
|
1675
|
-
return contents;
|
|
1676
|
-
};
|
|
1677
|
-
const de_SearchCasesCommand = async (output, context) => {
|
|
1678
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1679
|
-
return de_CommandError(output, context);
|
|
1680
|
-
}
|
|
1681
|
-
const contents = smithyClient.map({
|
|
1682
|
-
$metadata: deserializeMetadata(output),
|
|
1683
|
-
});
|
|
1684
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1685
|
-
const doc = smithyClient.take(data, {
|
|
1686
|
-
cases: (_) => de_SearchCasesResponseItemList(_),
|
|
1687
|
-
nextToken: smithyClient.expectString,
|
|
1688
|
-
});
|
|
1689
|
-
Object.assign(contents, doc);
|
|
1690
|
-
return contents;
|
|
1691
|
-
};
|
|
1692
|
-
const de_SearchRelatedItemsCommand = async (output, context) => {
|
|
1693
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1694
|
-
return de_CommandError(output, context);
|
|
1695
|
-
}
|
|
1696
|
-
const contents = smithyClient.map({
|
|
1697
|
-
$metadata: deserializeMetadata(output),
|
|
1698
|
-
});
|
|
1699
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1700
|
-
const doc = smithyClient.take(data, {
|
|
1701
|
-
nextToken: smithyClient.expectString,
|
|
1702
|
-
relatedItems: (_) => de_SearchRelatedItemsResponseItemList(_),
|
|
1703
|
-
});
|
|
1704
|
-
Object.assign(contents, doc);
|
|
1705
|
-
return contents;
|
|
1706
|
-
};
|
|
1707
|
-
const de_TagResourceCommand = async (output, context) => {
|
|
1708
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1709
|
-
return de_CommandError(output, context);
|
|
1710
|
-
}
|
|
1711
|
-
const contents = smithyClient.map({
|
|
1712
|
-
$metadata: deserializeMetadata(output),
|
|
1713
|
-
});
|
|
1714
|
-
await smithyClient.collectBody(output.body, context);
|
|
1715
|
-
return contents;
|
|
1716
|
-
};
|
|
1717
|
-
const de_UntagResourceCommand = async (output, context) => {
|
|
1718
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1719
|
-
return de_CommandError(output, context);
|
|
1720
|
-
}
|
|
1721
|
-
const contents = smithyClient.map({
|
|
1722
|
-
$metadata: deserializeMetadata(output),
|
|
1723
|
-
});
|
|
1724
|
-
await smithyClient.collectBody(output.body, context);
|
|
1725
|
-
return contents;
|
|
1726
|
-
};
|
|
1727
|
-
const de_UpdateCaseCommand = async (output, context) => {
|
|
1728
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1729
|
-
return de_CommandError(output, context);
|
|
1730
|
-
}
|
|
1731
|
-
const contents = smithyClient.map({
|
|
1732
|
-
$metadata: deserializeMetadata(output),
|
|
1733
|
-
});
|
|
1734
|
-
await smithyClient.collectBody(output.body, context);
|
|
1735
|
-
return contents;
|
|
1736
|
-
};
|
|
1737
|
-
const de_UpdateCaseRuleCommand = async (output, context) => {
|
|
1738
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1739
|
-
return de_CommandError(output, context);
|
|
1740
|
-
}
|
|
1741
|
-
const contents = smithyClient.map({
|
|
1742
|
-
$metadata: deserializeMetadata(output),
|
|
1743
|
-
});
|
|
1744
|
-
await smithyClient.collectBody(output.body, context);
|
|
1745
|
-
return contents;
|
|
1746
|
-
};
|
|
1747
|
-
const de_UpdateFieldCommand = async (output, context) => {
|
|
1748
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1749
|
-
return de_CommandError(output, context);
|
|
1750
|
-
}
|
|
1751
|
-
const contents = smithyClient.map({
|
|
1752
|
-
$metadata: deserializeMetadata(output),
|
|
1753
|
-
});
|
|
1754
|
-
await smithyClient.collectBody(output.body, context);
|
|
1755
|
-
return contents;
|
|
1756
|
-
};
|
|
1757
|
-
const de_UpdateLayoutCommand = async (output, context) => {
|
|
1758
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1759
|
-
return de_CommandError(output, context);
|
|
1760
|
-
}
|
|
1761
|
-
const contents = smithyClient.map({
|
|
1762
|
-
$metadata: deserializeMetadata(output),
|
|
1763
|
-
});
|
|
1764
|
-
await smithyClient.collectBody(output.body, context);
|
|
1765
|
-
return contents;
|
|
1766
|
-
};
|
|
1767
|
-
const de_UpdateTemplateCommand = async (output, context) => {
|
|
1768
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1769
|
-
return de_CommandError(output, context);
|
|
1770
|
-
}
|
|
1771
|
-
const contents = smithyClient.map({
|
|
1772
|
-
$metadata: deserializeMetadata(output),
|
|
1773
|
-
});
|
|
1774
|
-
await smithyClient.collectBody(output.body, context);
|
|
1775
|
-
return contents;
|
|
1776
|
-
};
|
|
1777
|
-
const de_CommandError = async (output, context) => {
|
|
1778
|
-
const parsedOutput = {
|
|
1779
|
-
...output,
|
|
1780
|
-
body: await core$1.parseJsonErrorBody(output.body, context),
|
|
1781
|
-
};
|
|
1782
|
-
const errorCode = core$1.loadRestJsonErrorCode(output, parsedOutput.body);
|
|
1783
|
-
switch (errorCode) {
|
|
1784
|
-
case "AccessDeniedException":
|
|
1785
|
-
case "com.amazonaws.connectcases#AccessDeniedException":
|
|
1786
|
-
throw await de_AccessDeniedExceptionRes(parsedOutput);
|
|
1787
|
-
case "InternalServerException":
|
|
1788
|
-
case "com.amazonaws.connectcases#InternalServerException":
|
|
1789
|
-
throw await de_InternalServerExceptionRes(parsedOutput);
|
|
1790
|
-
case "ResourceNotFoundException":
|
|
1791
|
-
case "com.amazonaws.connectcases#ResourceNotFoundException":
|
|
1792
|
-
throw await de_ResourceNotFoundExceptionRes(parsedOutput);
|
|
1793
|
-
case "ThrottlingException":
|
|
1794
|
-
case "com.amazonaws.connectcases#ThrottlingException":
|
|
1795
|
-
throw await de_ThrottlingExceptionRes(parsedOutput);
|
|
1796
|
-
case "ValidationException":
|
|
1797
|
-
case "com.amazonaws.connectcases#ValidationException":
|
|
1798
|
-
throw await de_ValidationExceptionRes(parsedOutput);
|
|
1799
|
-
case "ServiceQuotaExceededException":
|
|
1800
|
-
case "com.amazonaws.connectcases#ServiceQuotaExceededException":
|
|
1801
|
-
throw await de_ServiceQuotaExceededExceptionRes(parsedOutput);
|
|
1802
|
-
case "ConflictException":
|
|
1803
|
-
case "com.amazonaws.connectcases#ConflictException":
|
|
1804
|
-
throw await de_ConflictExceptionRes(parsedOutput);
|
|
1805
|
-
default:
|
|
1806
|
-
const parsedBody = parsedOutput.body;
|
|
1807
|
-
return throwDefaultError({
|
|
1808
|
-
output,
|
|
1809
|
-
parsedBody,
|
|
1810
|
-
errorCode,
|
|
1811
|
-
});
|
|
1812
|
-
}
|
|
1813
|
-
};
|
|
1814
|
-
const throwDefaultError = smithyClient.withBaseException(ConnectCasesServiceException);
|
|
1815
|
-
const de_AccessDeniedExceptionRes = async (parsedOutput, context) => {
|
|
1816
|
-
const contents = smithyClient.map({});
|
|
1817
|
-
const data = parsedOutput.body;
|
|
1818
|
-
const doc = smithyClient.take(data, {
|
|
1819
|
-
message: smithyClient.expectString,
|
|
1820
|
-
});
|
|
1821
|
-
Object.assign(contents, doc);
|
|
1822
|
-
const exception = new AccessDeniedException({
|
|
1823
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1824
|
-
...contents,
|
|
1825
|
-
});
|
|
1826
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
1827
|
-
};
|
|
1828
|
-
const de_ConflictExceptionRes = async (parsedOutput, context) => {
|
|
1829
|
-
const contents = smithyClient.map({});
|
|
1830
|
-
const data = parsedOutput.body;
|
|
1831
|
-
const doc = smithyClient.take(data, {
|
|
1832
|
-
message: smithyClient.expectString,
|
|
1833
|
-
});
|
|
1834
|
-
Object.assign(contents, doc);
|
|
1835
|
-
const exception = new ConflictException({
|
|
1836
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1837
|
-
...contents,
|
|
1838
|
-
});
|
|
1839
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
1840
|
-
};
|
|
1841
|
-
const de_InternalServerExceptionRes = async (parsedOutput, context) => {
|
|
1842
|
-
const contents = smithyClient.map({
|
|
1843
|
-
[_rAS]: [() => void 0 !== parsedOutput.headers[_ra], () => smithyClient.strictParseInt32(parsedOutput.headers[_ra])],
|
|
1844
|
-
});
|
|
1845
|
-
const data = parsedOutput.body;
|
|
1846
|
-
const doc = smithyClient.take(data, {
|
|
1847
|
-
message: smithyClient.expectString,
|
|
1848
|
-
});
|
|
1849
|
-
Object.assign(contents, doc);
|
|
1850
|
-
const exception = new InternalServerException({
|
|
1851
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1852
|
-
...contents,
|
|
1853
|
-
});
|
|
1854
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
1855
|
-
};
|
|
1856
|
-
const de_ResourceNotFoundExceptionRes = async (parsedOutput, context) => {
|
|
1857
|
-
const contents = smithyClient.map({});
|
|
1858
|
-
const data = parsedOutput.body;
|
|
1859
|
-
const doc = smithyClient.take(data, {
|
|
1860
|
-
message: smithyClient.expectString,
|
|
1861
|
-
resourceId: smithyClient.expectString,
|
|
1862
|
-
resourceType: smithyClient.expectString,
|
|
1863
|
-
});
|
|
1864
|
-
Object.assign(contents, doc);
|
|
1865
|
-
const exception = new ResourceNotFoundException({
|
|
1866
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1867
|
-
...contents,
|
|
1868
|
-
});
|
|
1869
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
1870
|
-
};
|
|
1871
|
-
const de_ServiceQuotaExceededExceptionRes = async (parsedOutput, context) => {
|
|
1872
|
-
const contents = smithyClient.map({});
|
|
1873
|
-
const data = parsedOutput.body;
|
|
1874
|
-
const doc = smithyClient.take(data, {
|
|
1875
|
-
message: smithyClient.expectString,
|
|
1876
|
-
});
|
|
1877
|
-
Object.assign(contents, doc);
|
|
1878
|
-
const exception = new ServiceQuotaExceededException({
|
|
1879
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1880
|
-
...contents,
|
|
1881
|
-
});
|
|
1882
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
1883
|
-
};
|
|
1884
|
-
const de_ThrottlingExceptionRes = async (parsedOutput, context) => {
|
|
1885
|
-
const contents = smithyClient.map({});
|
|
1886
|
-
const data = parsedOutput.body;
|
|
1887
|
-
const doc = smithyClient.take(data, {
|
|
1888
|
-
message: smithyClient.expectString,
|
|
1889
|
-
});
|
|
1890
|
-
Object.assign(contents, doc);
|
|
1891
|
-
const exception = new ThrottlingException({
|
|
1892
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1893
|
-
...contents,
|
|
1894
|
-
});
|
|
1895
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
1896
|
-
};
|
|
1897
|
-
const de_ValidationExceptionRes = async (parsedOutput, context) => {
|
|
1898
|
-
const contents = smithyClient.map({});
|
|
1899
|
-
const data = parsedOutput.body;
|
|
1900
|
-
const doc = smithyClient.take(data, {
|
|
1901
|
-
message: smithyClient.expectString,
|
|
1902
|
-
});
|
|
1903
|
-
Object.assign(contents, doc);
|
|
1904
|
-
const exception = new ValidationException({
|
|
1905
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1906
|
-
...contents,
|
|
1907
|
-
});
|
|
1908
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
1909
|
-
};
|
|
1910
|
-
const se_BooleanCondition = (input, context) => {
|
|
1911
|
-
return exports.BooleanCondition.visit(input, {
|
|
1912
|
-
equalTo: (value) => ({ equalTo: se_BooleanOperands(value) }),
|
|
1913
|
-
notEqualTo: (value) => ({ notEqualTo: se_BooleanOperands(value) }),
|
|
1914
|
-
_: (name, value) => ({ [name]: value }),
|
|
1915
|
-
});
|
|
1916
|
-
};
|
|
1917
|
-
const se_BooleanConditionList = (input, context) => {
|
|
1918
|
-
return input
|
|
1919
|
-
.filter((e) => e != null)
|
|
1920
|
-
.map((entry) => {
|
|
1921
|
-
return se_BooleanCondition(entry);
|
|
1922
|
-
});
|
|
1923
|
-
};
|
|
1924
|
-
const se_BooleanOperands = (input, context) => {
|
|
1925
|
-
return smithyClient.take(input, {
|
|
1926
|
-
operandOne: smithyClient._json,
|
|
1927
|
-
operandTwo: (_) => se_OperandTwo(_),
|
|
1928
|
-
result: [],
|
|
1929
|
-
});
|
|
1930
|
-
};
|
|
1931
|
-
const se_CaseFilter = (input, context) => {
|
|
1932
|
-
return exports.CaseFilter.visit(input, {
|
|
1933
|
-
andAll: (value) => ({ andAll: se_CaseFilterList(value) }),
|
|
1934
|
-
field: (value) => ({ field: se_FieldFilter(value) }),
|
|
1935
|
-
not: (value) => ({ not: se_CaseFilter(value) }),
|
|
1936
|
-
orAll: (value) => ({ orAll: se_CaseFilterList(value) }),
|
|
1937
|
-
_: (name, value) => ({ [name]: value }),
|
|
1938
|
-
});
|
|
1939
|
-
};
|
|
1940
|
-
const se_CaseFilterList = (input, context) => {
|
|
1941
|
-
return input
|
|
1942
|
-
.filter((e) => e != null)
|
|
1943
|
-
.map((entry) => {
|
|
1944
|
-
return se_CaseFilter(entry);
|
|
1945
|
-
});
|
|
1946
|
-
};
|
|
1947
|
-
const se_CaseRuleDetails = (input, context) => {
|
|
1948
|
-
return exports.CaseRuleDetails.visit(input, {
|
|
1949
|
-
fieldOptions: (value) => ({ fieldOptions: smithyClient._json(value) }),
|
|
1950
|
-
hidden: (value) => ({ hidden: se_HiddenCaseRule(value) }),
|
|
1951
|
-
required: (value) => ({ required: se_RequiredCaseRule(value) }),
|
|
1952
|
-
_: (name, value) => ({ [name]: value }),
|
|
1953
|
-
});
|
|
1954
|
-
};
|
|
1955
|
-
const se_CustomFieldsFilter = (input, context) => {
|
|
1956
|
-
return exports.CustomFieldsFilter.visit(input, {
|
|
1957
|
-
andAll: (value) => ({ andAll: se_CustomFieldsFilterList(value) }),
|
|
1958
|
-
field: (value) => ({ field: se_FieldFilter(value) }),
|
|
1959
|
-
not: (value) => ({ not: se_CustomFieldsFilter(value) }),
|
|
1960
|
-
orAll: (value) => ({ orAll: se_CustomFieldsFilterList(value) }),
|
|
1961
|
-
_: (name, value) => ({ [name]: value }),
|
|
1962
|
-
});
|
|
1963
|
-
};
|
|
1964
|
-
const se_CustomFieldsFilterList = (input, context) => {
|
|
1965
|
-
return input
|
|
1966
|
-
.filter((e) => e != null)
|
|
1967
|
-
.map((entry) => {
|
|
1968
|
-
return se_CustomFieldsFilter(entry);
|
|
1969
|
-
});
|
|
1970
|
-
};
|
|
1971
|
-
const se_CustomFilter = (input, context) => {
|
|
1972
|
-
return smithyClient.take(input, {
|
|
1973
|
-
fields: (_) => se_CustomFieldsFilter(_),
|
|
1974
|
-
});
|
|
1975
|
-
};
|
|
1976
|
-
const se_CustomInputContent = (input, context) => {
|
|
1977
|
-
return smithyClient.take(input, {
|
|
1978
|
-
fields: (_) => se_FieldValueList(_),
|
|
1979
|
-
});
|
|
1980
|
-
};
|
|
1981
|
-
const se_FieldFilter = (input, context) => {
|
|
1982
|
-
return exports.FieldFilter.visit(input, {
|
|
1983
|
-
contains: (value) => ({ contains: se_FieldValue(value) }),
|
|
1984
|
-
equalTo: (value) => ({ equalTo: se_FieldValue(value) }),
|
|
1985
|
-
greaterThan: (value) => ({ greaterThan: se_FieldValue(value) }),
|
|
1986
|
-
greaterThanOrEqualTo: (value) => ({ greaterThanOrEqualTo: se_FieldValue(value) }),
|
|
1987
|
-
lessThan: (value) => ({ lessThan: se_FieldValue(value) }),
|
|
1988
|
-
lessThanOrEqualTo: (value) => ({ lessThanOrEqualTo: se_FieldValue(value) }),
|
|
1989
|
-
_: (name, value) => ({ [name]: value }),
|
|
1990
|
-
});
|
|
1991
|
-
};
|
|
1992
|
-
const se_FieldValue = (input, context) => {
|
|
1993
|
-
return smithyClient.take(input, {
|
|
1994
|
-
id: [],
|
|
1995
|
-
value: (_) => se_FieldValueUnion(_),
|
|
1996
|
-
});
|
|
1997
|
-
};
|
|
1998
|
-
const se_FieldValueList = (input, context) => {
|
|
1999
|
-
return input
|
|
2000
|
-
.filter((e) => e != null)
|
|
2001
|
-
.map((entry) => {
|
|
2002
|
-
return se_FieldValue(entry);
|
|
2003
|
-
});
|
|
2004
|
-
};
|
|
2005
|
-
const se_FieldValueUnion = (input, context) => {
|
|
2006
|
-
return exports.FieldValueUnion.visit(input, {
|
|
2007
|
-
booleanValue: (value) => ({ booleanValue: value }),
|
|
2008
|
-
doubleValue: (value) => ({ doubleValue: smithyClient.serializeFloat(value) }),
|
|
2009
|
-
emptyValue: (value) => ({ emptyValue: smithyClient._json(value) }),
|
|
2010
|
-
stringValue: (value) => ({ stringValue: value }),
|
|
2011
|
-
userArnValue: (value) => ({ userArnValue: value }),
|
|
2012
|
-
_: (name, value) => ({ [name]: value }),
|
|
2013
|
-
});
|
|
2014
|
-
};
|
|
2015
|
-
const se_HiddenCaseRule = (input, context) => {
|
|
2016
|
-
return smithyClient.take(input, {
|
|
2017
|
-
conditions: (_) => se_BooleanConditionList(_),
|
|
2018
|
-
defaultValue: [],
|
|
2019
|
-
});
|
|
2020
|
-
};
|
|
2021
|
-
const se_OperandTwo = (input, context) => {
|
|
2022
|
-
return exports.OperandTwo.visit(input, {
|
|
2023
|
-
booleanValue: (value) => ({ booleanValue: value }),
|
|
2024
|
-
doubleValue: (value) => ({ doubleValue: smithyClient.serializeFloat(value) }),
|
|
2025
|
-
emptyValue: (value) => ({ emptyValue: smithyClient._json(value) }),
|
|
2026
|
-
stringValue: (value) => ({ stringValue: value }),
|
|
2027
|
-
_: (name, value) => ({ [name]: value }),
|
|
2028
|
-
});
|
|
2029
|
-
};
|
|
2030
|
-
const se_RelatedItemFilterList = (input, context) => {
|
|
2031
|
-
return input
|
|
2032
|
-
.filter((e) => e != null)
|
|
2033
|
-
.map((entry) => {
|
|
2034
|
-
return se_RelatedItemTypeFilter(entry);
|
|
2035
|
-
});
|
|
2036
|
-
};
|
|
2037
|
-
const se_RelatedItemInputContent = (input, context) => {
|
|
2038
|
-
return exports.RelatedItemInputContent.visit(input, {
|
|
2039
|
-
comment: (value) => ({ comment: smithyClient._json(value) }),
|
|
2040
|
-
connectCase: (value) => ({ connectCase: smithyClient._json(value) }),
|
|
2041
|
-
contact: (value) => ({ contact: smithyClient._json(value) }),
|
|
2042
|
-
custom: (value) => ({ custom: se_CustomInputContent(value) }),
|
|
2043
|
-
file: (value) => ({ file: smithyClient._json(value) }),
|
|
2044
|
-
sla: (value) => ({ sla: se_SlaInputContent(value) }),
|
|
2045
|
-
_: (name, value) => ({ [name]: value }),
|
|
2046
|
-
});
|
|
2047
|
-
};
|
|
2048
|
-
const se_RelatedItemTypeFilter = (input, context) => {
|
|
2049
|
-
return exports.RelatedItemTypeFilter.visit(input, {
|
|
2050
|
-
comment: (value) => ({ comment: smithyClient._json(value) }),
|
|
2051
|
-
connectCase: (value) => ({ connectCase: smithyClient._json(value) }),
|
|
2052
|
-
contact: (value) => ({ contact: smithyClient._json(value) }),
|
|
2053
|
-
custom: (value) => ({ custom: se_CustomFilter(value) }),
|
|
2054
|
-
file: (value) => ({ file: smithyClient._json(value) }),
|
|
2055
|
-
sla: (value) => ({ sla: smithyClient._json(value) }),
|
|
2056
|
-
_: (name, value) => ({ [name]: value }),
|
|
2057
|
-
});
|
|
2058
|
-
};
|
|
2059
|
-
const se_RequiredCaseRule = (input, context) => {
|
|
2060
|
-
return smithyClient.take(input, {
|
|
2061
|
-
conditions: (_) => se_BooleanConditionList(_),
|
|
2062
|
-
defaultValue: [],
|
|
2063
|
-
});
|
|
2064
|
-
};
|
|
2065
|
-
const se_SlaFieldValueUnionList = (input, context) => {
|
|
2066
|
-
return input
|
|
2067
|
-
.filter((e) => e != null)
|
|
2068
|
-
.map((entry) => {
|
|
2069
|
-
return se_FieldValueUnion(entry);
|
|
2070
|
-
});
|
|
2071
|
-
};
|
|
2072
|
-
const se_SlaInputConfiguration = (input, context) => {
|
|
2073
|
-
return smithyClient.take(input, {
|
|
2074
|
-
fieldId: [],
|
|
2075
|
-
name: [],
|
|
2076
|
-
targetFieldValues: (_) => se_SlaFieldValueUnionList(_),
|
|
2077
|
-
targetSlaMinutes: [],
|
|
2078
|
-
type: [],
|
|
2079
|
-
});
|
|
2080
|
-
};
|
|
2081
|
-
const se_SlaInputContent = (input, context) => {
|
|
2082
|
-
return exports.SlaInputContent.visit(input, {
|
|
2083
|
-
slaInputConfiguration: (value) => ({ slaInputConfiguration: se_SlaInputConfiguration(value) }),
|
|
2084
|
-
_: (name, value) => ({ [name]: value }),
|
|
2085
|
-
});
|
|
2086
|
-
};
|
|
2087
|
-
const se_Tags = (input, context) => {
|
|
2088
|
-
return Object.entries(input).reduce((acc, [key, value]) => {
|
|
2089
|
-
if (value === null) {
|
|
2090
|
-
acc[key] = null;
|
|
2091
|
-
return acc;
|
|
2092
|
-
}
|
|
2093
|
-
acc[key] = value;
|
|
2094
|
-
return acc;
|
|
2095
|
-
}, {});
|
|
2096
|
-
};
|
|
2097
|
-
const de_AuditEvent = (output, context) => {
|
|
2098
|
-
return smithyClient.take(output, {
|
|
2099
|
-
eventId: smithyClient.expectString,
|
|
2100
|
-
fields: (_) => de_AuditEventFieldList(_),
|
|
2101
|
-
performedBy: smithyClient._json,
|
|
2102
|
-
performedTime: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
|
|
2103
|
-
relatedItemType: smithyClient.expectString,
|
|
2104
|
-
type: smithyClient.expectString,
|
|
2105
|
-
});
|
|
2106
|
-
};
|
|
2107
|
-
const de_AuditEventField = (output, context) => {
|
|
2108
|
-
return smithyClient.take(output, {
|
|
2109
|
-
eventFieldId: smithyClient.expectString,
|
|
2110
|
-
newValue: (_) => de_AuditEventFieldValueUnion(core$1.awsExpectUnion(_)),
|
|
2111
|
-
oldValue: (_) => de_AuditEventFieldValueUnion(core$1.awsExpectUnion(_)),
|
|
2112
|
-
});
|
|
2113
|
-
};
|
|
2114
|
-
const de_AuditEventFieldList = (output, context) => {
|
|
2115
|
-
const retVal = (output || []).map((entry) => {
|
|
2116
|
-
if (entry === null) {
|
|
2117
|
-
return null;
|
|
2118
|
-
}
|
|
2119
|
-
return de_AuditEventField(entry);
|
|
2120
|
-
});
|
|
2121
|
-
return retVal;
|
|
2122
|
-
};
|
|
2123
|
-
const de_AuditEventFieldValueUnion = (output, context) => {
|
|
2124
|
-
if (smithyClient.expectBoolean(output.booleanValue) !== undefined) {
|
|
2125
|
-
return { booleanValue: smithyClient.expectBoolean(output.booleanValue) };
|
|
2126
|
-
}
|
|
2127
|
-
if (smithyClient.limitedParseDouble(output.doubleValue) !== undefined) {
|
|
2128
|
-
return { doubleValue: smithyClient.limitedParseDouble(output.doubleValue) };
|
|
2129
|
-
}
|
|
2130
|
-
if (output.emptyValue != null) {
|
|
2131
|
-
return {
|
|
2132
|
-
emptyValue: smithyClient._json(output.emptyValue),
|
|
2133
|
-
};
|
|
2134
|
-
}
|
|
2135
|
-
if (smithyClient.expectString(output.stringValue) !== undefined) {
|
|
2136
|
-
return { stringValue: smithyClient.expectString(output.stringValue) };
|
|
2137
|
-
}
|
|
2138
|
-
if (smithyClient.expectString(output.userArnValue) !== undefined) {
|
|
2139
|
-
return { userArnValue: smithyClient.expectString(output.userArnValue) };
|
|
2140
|
-
}
|
|
2141
|
-
return { $unknown: Object.entries(output)[0] };
|
|
2142
|
-
};
|
|
2143
|
-
const de_AuditEventsList = (output, context) => {
|
|
2144
|
-
const retVal = (output || []).map((entry) => {
|
|
2145
|
-
if (entry === null) {
|
|
2146
|
-
return null;
|
|
2147
|
-
}
|
|
2148
|
-
return de_AuditEvent(entry);
|
|
2149
|
-
});
|
|
2150
|
-
return retVal;
|
|
2151
|
-
};
|
|
2152
|
-
const de_BatchGetCaseRuleList = (output, context) => {
|
|
2153
|
-
const retVal = (output || [])
|
|
2154
|
-
.filter((e) => e != null)
|
|
2155
|
-
.map((entry) => {
|
|
2156
|
-
return de_GetCaseRuleResponse(entry);
|
|
2157
|
-
});
|
|
2158
|
-
return retVal;
|
|
2159
|
-
};
|
|
2160
|
-
const de_BatchGetFieldList = (output, context) => {
|
|
2161
|
-
const retVal = (output || [])
|
|
2162
|
-
.filter((e) => e != null)
|
|
2163
|
-
.map((entry) => {
|
|
2164
|
-
return de_GetFieldResponse(entry);
|
|
2165
|
-
});
|
|
2166
|
-
return retVal;
|
|
2167
|
-
};
|
|
2168
|
-
const de_BooleanCondition = (output, context) => {
|
|
2169
|
-
if (output.equalTo != null) {
|
|
2170
|
-
return {
|
|
2171
|
-
equalTo: de_BooleanOperands(output.equalTo),
|
|
2172
|
-
};
|
|
2173
|
-
}
|
|
2174
|
-
if (output.notEqualTo != null) {
|
|
2175
|
-
return {
|
|
2176
|
-
notEqualTo: de_BooleanOperands(output.notEqualTo),
|
|
2177
|
-
};
|
|
2178
|
-
}
|
|
2179
|
-
return { $unknown: Object.entries(output)[0] };
|
|
2180
|
-
};
|
|
2181
|
-
const de_BooleanConditionList = (output, context) => {
|
|
2182
|
-
const retVal = (output || [])
|
|
2183
|
-
.filter((e) => e != null)
|
|
2184
|
-
.map((entry) => {
|
|
2185
|
-
return de_BooleanCondition(core$1.awsExpectUnion(entry));
|
|
2186
|
-
});
|
|
2187
|
-
return retVal;
|
|
2188
|
-
};
|
|
2189
|
-
const de_BooleanOperands = (output, context) => {
|
|
2190
|
-
return smithyClient.take(output, {
|
|
2191
|
-
operandOne: (_) => smithyClient._json(core$1.awsExpectUnion(_)),
|
|
2192
|
-
operandTwo: (_) => de_OperandTwo(core$1.awsExpectUnion(_)),
|
|
2193
|
-
result: smithyClient.expectBoolean,
|
|
2194
|
-
});
|
|
2195
|
-
};
|
|
2196
|
-
const de_CaseRuleDetails = (output, context) => {
|
|
2197
|
-
if (output.fieldOptions != null) {
|
|
2198
|
-
return {
|
|
2199
|
-
fieldOptions: smithyClient._json(output.fieldOptions),
|
|
2200
|
-
};
|
|
2201
|
-
}
|
|
2202
|
-
if (output.hidden != null) {
|
|
2203
|
-
return {
|
|
2204
|
-
hidden: de_HiddenCaseRule(output.hidden),
|
|
2205
|
-
};
|
|
2206
|
-
}
|
|
2207
|
-
if (output.required != null) {
|
|
2208
|
-
return {
|
|
2209
|
-
required: de_RequiredCaseRule(output.required),
|
|
2210
|
-
};
|
|
2211
|
-
}
|
|
2212
|
-
return { $unknown: Object.entries(output)[0] };
|
|
2213
|
-
};
|
|
2214
|
-
const de_ContactContent = (output, context) => {
|
|
2215
|
-
return smithyClient.take(output, {
|
|
2216
|
-
channel: smithyClient.expectString,
|
|
2217
|
-
connectedToSystemTime: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
|
|
2218
|
-
contactArn: smithyClient.expectString,
|
|
2219
|
-
});
|
|
2220
|
-
};
|
|
2221
|
-
const de_CustomContent = (output, context) => {
|
|
2222
|
-
return smithyClient.take(output, {
|
|
2223
|
-
fields: (_) => de_FieldValueList(_),
|
|
2224
|
-
});
|
|
2225
|
-
};
|
|
2226
|
-
const de_FieldValue = (output, context) => {
|
|
2227
|
-
return smithyClient.take(output, {
|
|
2228
|
-
id: smithyClient.expectString,
|
|
2229
|
-
value: (_) => de_FieldValueUnion(core$1.awsExpectUnion(_)),
|
|
2230
|
-
});
|
|
2231
|
-
};
|
|
2232
|
-
const de_FieldValueList = (output, context) => {
|
|
2233
|
-
const retVal = (output || [])
|
|
2234
|
-
.filter((e) => e != null)
|
|
2235
|
-
.map((entry) => {
|
|
2236
|
-
return de_FieldValue(entry);
|
|
2237
|
-
});
|
|
2238
|
-
return retVal;
|
|
2239
|
-
};
|
|
2240
|
-
const de_FieldValueUnion = (output, context) => {
|
|
2241
|
-
if (smithyClient.expectBoolean(output.booleanValue) !== undefined) {
|
|
2242
|
-
return { booleanValue: smithyClient.expectBoolean(output.booleanValue) };
|
|
2243
|
-
}
|
|
2244
|
-
if (smithyClient.limitedParseDouble(output.doubleValue) !== undefined) {
|
|
2245
|
-
return { doubleValue: smithyClient.limitedParseDouble(output.doubleValue) };
|
|
2246
|
-
}
|
|
2247
|
-
if (output.emptyValue != null) {
|
|
2248
|
-
return {
|
|
2249
|
-
emptyValue: smithyClient._json(output.emptyValue),
|
|
2250
|
-
};
|
|
2251
|
-
}
|
|
2252
|
-
if (smithyClient.expectString(output.stringValue) !== undefined) {
|
|
2253
|
-
return { stringValue: smithyClient.expectString(output.stringValue) };
|
|
2254
|
-
}
|
|
2255
|
-
if (smithyClient.expectString(output.userArnValue) !== undefined) {
|
|
2256
|
-
return { userArnValue: smithyClient.expectString(output.userArnValue) };
|
|
2257
|
-
}
|
|
2258
|
-
return { $unknown: Object.entries(output)[0] };
|
|
2259
|
-
};
|
|
2260
|
-
const de_GetCaseRuleResponse = (output, context) => {
|
|
2261
|
-
return smithyClient.take(output, {
|
|
2262
|
-
caseRuleArn: smithyClient.expectString,
|
|
2263
|
-
caseRuleId: smithyClient.expectString,
|
|
2264
|
-
createdTime: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
|
|
2265
|
-
deleted: smithyClient.expectBoolean,
|
|
2266
|
-
description: smithyClient.expectString,
|
|
2267
|
-
lastModifiedTime: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
|
|
2268
|
-
name: smithyClient.expectString,
|
|
2269
|
-
rule: (_) => de_CaseRuleDetails(core$1.awsExpectUnion(_)),
|
|
2270
|
-
tags: (_) => de_Tags(_),
|
|
2271
|
-
});
|
|
2272
|
-
};
|
|
2273
|
-
const de_GetFieldResponse = (output, context) => {
|
|
2274
|
-
return smithyClient.take(output, {
|
|
2275
|
-
createdTime: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
|
|
2276
|
-
deleted: smithyClient.expectBoolean,
|
|
2277
|
-
description: smithyClient.expectString,
|
|
2278
|
-
fieldArn: smithyClient.expectString,
|
|
2279
|
-
fieldId: smithyClient.expectString,
|
|
2280
|
-
lastModifiedTime: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
|
|
2281
|
-
name: smithyClient.expectString,
|
|
2282
|
-
namespace: smithyClient.expectString,
|
|
2283
|
-
tags: (_) => de_Tags(_),
|
|
2284
|
-
type: smithyClient.expectString,
|
|
2285
|
-
});
|
|
2286
|
-
};
|
|
2287
|
-
const de_HiddenCaseRule = (output, context) => {
|
|
2288
|
-
return smithyClient.take(output, {
|
|
2289
|
-
conditions: (_) => de_BooleanConditionList(_),
|
|
2290
|
-
defaultValue: smithyClient.expectBoolean,
|
|
2291
|
-
});
|
|
2292
|
-
};
|
|
2293
|
-
const de_OperandTwo = (output, context) => {
|
|
2294
|
-
if (smithyClient.expectBoolean(output.booleanValue) !== undefined) {
|
|
2295
|
-
return { booleanValue: smithyClient.expectBoolean(output.booleanValue) };
|
|
2296
|
-
}
|
|
2297
|
-
if (smithyClient.limitedParseDouble(output.doubleValue) !== undefined) {
|
|
2298
|
-
return { doubleValue: smithyClient.limitedParseDouble(output.doubleValue) };
|
|
2299
|
-
}
|
|
2300
|
-
if (output.emptyValue != null) {
|
|
2301
|
-
return {
|
|
2302
|
-
emptyValue: smithyClient._json(output.emptyValue),
|
|
2303
|
-
};
|
|
2304
|
-
}
|
|
2305
|
-
if (smithyClient.expectString(output.stringValue) !== undefined) {
|
|
2306
|
-
return { stringValue: smithyClient.expectString(output.stringValue) };
|
|
2307
|
-
}
|
|
2308
|
-
return { $unknown: Object.entries(output)[0] };
|
|
2309
|
-
};
|
|
2310
|
-
const de_RelatedItemContent = (output, context) => {
|
|
2311
|
-
if (output.comment != null) {
|
|
2312
|
-
return {
|
|
2313
|
-
comment: smithyClient._json(output.comment),
|
|
2314
|
-
};
|
|
2315
|
-
}
|
|
2316
|
-
if (output.connectCase != null) {
|
|
2317
|
-
return {
|
|
2318
|
-
connectCase: smithyClient._json(output.connectCase),
|
|
2319
|
-
};
|
|
2320
|
-
}
|
|
2321
|
-
if (output.contact != null) {
|
|
2322
|
-
return {
|
|
2323
|
-
contact: de_ContactContent(output.contact),
|
|
2324
|
-
};
|
|
2325
|
-
}
|
|
2326
|
-
if (output.custom != null) {
|
|
2327
|
-
return {
|
|
2328
|
-
custom: de_CustomContent(output.custom),
|
|
2329
|
-
};
|
|
2330
|
-
}
|
|
2331
|
-
if (output.file != null) {
|
|
2332
|
-
return {
|
|
2333
|
-
file: smithyClient._json(output.file),
|
|
2334
|
-
};
|
|
2335
|
-
}
|
|
2336
|
-
if (output.sla != null) {
|
|
2337
|
-
return {
|
|
2338
|
-
sla: de_SlaContent(output.sla),
|
|
2339
|
-
};
|
|
2340
|
-
}
|
|
2341
|
-
return { $unknown: Object.entries(output)[0] };
|
|
2342
|
-
};
|
|
2343
|
-
const de_RequiredCaseRule = (output, context) => {
|
|
2344
|
-
return smithyClient.take(output, {
|
|
2345
|
-
conditions: (_) => de_BooleanConditionList(_),
|
|
2346
|
-
defaultValue: smithyClient.expectBoolean,
|
|
2347
|
-
});
|
|
2348
|
-
};
|
|
2349
|
-
const de_SearchAllRelatedItemsResponseItem = (output, context) => {
|
|
2350
|
-
return smithyClient.take(output, {
|
|
2351
|
-
associationTime: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
|
|
2352
|
-
caseId: smithyClient.expectString,
|
|
2353
|
-
content: (_) => de_RelatedItemContent(core$1.awsExpectUnion(_)),
|
|
2354
|
-
performedBy: (_) => smithyClient._json(core$1.awsExpectUnion(_)),
|
|
2355
|
-
relatedItemId: smithyClient.expectString,
|
|
2356
|
-
tags: (_) => de_Tags(_),
|
|
2357
|
-
type: smithyClient.expectString,
|
|
2358
|
-
});
|
|
2359
|
-
};
|
|
2360
|
-
const de_SearchAllRelatedItemsResponseItemList = (output, context) => {
|
|
2361
|
-
const retVal = (output || []).map((entry) => {
|
|
2362
|
-
if (entry === null) {
|
|
2363
|
-
return null;
|
|
2364
|
-
}
|
|
2365
|
-
return de_SearchAllRelatedItemsResponseItem(entry);
|
|
2366
|
-
});
|
|
2367
|
-
return retVal;
|
|
2368
|
-
};
|
|
2369
|
-
const de_SearchCasesResponseItem = (output, context) => {
|
|
2370
|
-
return smithyClient.take(output, {
|
|
2371
|
-
caseId: smithyClient.expectString,
|
|
2372
|
-
fields: (_) => de_FieldValueList(_),
|
|
2373
|
-
tags: (_) => de_Tags(_),
|
|
2374
|
-
templateId: smithyClient.expectString,
|
|
2375
|
-
});
|
|
2376
|
-
};
|
|
2377
|
-
const de_SearchCasesResponseItemList = (output, context) => {
|
|
2378
|
-
const retVal = (output || []).map((entry) => {
|
|
2379
|
-
if (entry === null) {
|
|
2380
|
-
return null;
|
|
2381
|
-
}
|
|
2382
|
-
return de_SearchCasesResponseItem(entry);
|
|
2383
|
-
});
|
|
2384
|
-
return retVal;
|
|
2385
|
-
};
|
|
2386
|
-
const de_SearchRelatedItemsResponseItem = (output, context) => {
|
|
2387
|
-
return smithyClient.take(output, {
|
|
2388
|
-
associationTime: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
|
|
2389
|
-
content: (_) => de_RelatedItemContent(core$1.awsExpectUnion(_)),
|
|
2390
|
-
performedBy: (_) => smithyClient._json(core$1.awsExpectUnion(_)),
|
|
2391
|
-
relatedItemId: smithyClient.expectString,
|
|
2392
|
-
tags: (_) => de_Tags(_),
|
|
2393
|
-
type: smithyClient.expectString,
|
|
2394
|
-
});
|
|
2395
|
-
};
|
|
2396
|
-
const de_SearchRelatedItemsResponseItemList = (output, context) => {
|
|
2397
|
-
const retVal = (output || []).map((entry) => {
|
|
2398
|
-
if (entry === null) {
|
|
2399
|
-
return null;
|
|
2400
|
-
}
|
|
2401
|
-
return de_SearchRelatedItemsResponseItem(entry);
|
|
2402
|
-
});
|
|
2403
|
-
return retVal;
|
|
2404
|
-
};
|
|
2405
|
-
const de_SlaConfiguration = (output, context) => {
|
|
2406
|
-
return smithyClient.take(output, {
|
|
2407
|
-
completionTime: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
|
|
2408
|
-
fieldId: smithyClient.expectString,
|
|
2409
|
-
name: smithyClient.expectString,
|
|
2410
|
-
status: smithyClient.expectString,
|
|
2411
|
-
targetFieldValues: (_) => de_SlaFieldValueUnionList(_),
|
|
2412
|
-
targetTime: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
|
|
2413
|
-
type: smithyClient.expectString,
|
|
2414
|
-
});
|
|
2415
|
-
};
|
|
2416
|
-
const de_SlaContent = (output, context) => {
|
|
2417
|
-
return smithyClient.take(output, {
|
|
2418
|
-
slaConfiguration: (_) => de_SlaConfiguration(_),
|
|
2419
|
-
});
|
|
2420
|
-
};
|
|
2421
|
-
const de_SlaFieldValueUnionList = (output, context) => {
|
|
2422
|
-
const retVal = (output || [])
|
|
2423
|
-
.filter((e) => e != null)
|
|
2424
|
-
.map((entry) => {
|
|
2425
|
-
return de_FieldValueUnion(core$1.awsExpectUnion(entry));
|
|
2426
|
-
});
|
|
2427
|
-
return retVal;
|
|
2428
|
-
};
|
|
2429
|
-
const de_Tags = (output, context) => {
|
|
2430
|
-
return Object.entries(output).reduce((acc, [key, value]) => {
|
|
2431
|
-
if (value === null) {
|
|
2432
|
-
acc[key] = null;
|
|
2433
|
-
return acc;
|
|
2434
|
-
}
|
|
2435
|
-
acc[key] = smithyClient.expectString(value);
|
|
2436
|
-
return acc;
|
|
2437
|
-
}, {});
|
|
2438
|
-
};
|
|
2439
|
-
const deserializeMetadata = (output) => ({
|
|
2440
|
-
httpStatusCode: output.statusCode,
|
|
2441
|
-
requestId: output.headers["x-amzn-requestid"] ?? output.headers["x-amzn-request-id"] ?? output.headers["x-amz-request-id"],
|
|
2442
|
-
extendedRequestId: output.headers["x-amz-id-2"],
|
|
2443
|
-
cfId: output.headers["x-amz-cf-id"],
|
|
2444
|
-
});
|
|
483
|
+
const _ADE = "AccessDeniedException";
|
|
484
|
+
const _AE = "AuditEvent";
|
|
485
|
+
const _AEF = "AuditEventField";
|
|
486
|
+
const _AEFL = "AuditEventFieldList";
|
|
487
|
+
const _AEFVU = "AuditEventFieldValueUnion";
|
|
488
|
+
const _AEL = "AuditEventsList";
|
|
489
|
+
const _AEPB = "AuditEventPerformedBy";
|
|
490
|
+
const _BC = "BooleanCondition";
|
|
491
|
+
const _BCL = "BooleanConditionList";
|
|
492
|
+
const _BGCR = "BatchGetCaseRule";
|
|
493
|
+
const _BGCREL = "BatchGetCaseRuleErrorList";
|
|
494
|
+
const _BGCRL = "BatchGetCaseRuleList";
|
|
495
|
+
const _BGCRR = "BatchGetCaseRuleRequest";
|
|
496
|
+
const _BGCRRa = "BatchGetCaseRuleResponse";
|
|
497
|
+
const _BGF = "BatchGetField";
|
|
498
|
+
const _BGFEL = "BatchGetFieldErrorList";
|
|
499
|
+
const _BGFIL = "BatchGetFieldIdentifierList";
|
|
500
|
+
const _BGFL = "BatchGetFieldList";
|
|
501
|
+
const _BGFR = "BatchGetFieldRequest";
|
|
502
|
+
const _BGFRa = "BatchGetFieldResponse";
|
|
503
|
+
const _BL = "BasicLayout";
|
|
504
|
+
const _BO = "BooleanOperands";
|
|
505
|
+
const _BPFO = "BatchPutFieldOptions";
|
|
506
|
+
const _BPFOR = "BatchPutFieldOptionsRequest";
|
|
507
|
+
const _BPFORa = "BatchPutFieldOptionsResponse";
|
|
508
|
+
const _C = "Contact";
|
|
509
|
+
const _CC = "CommentContent";
|
|
510
|
+
const _CCC = "ConnectCaseContent";
|
|
511
|
+
const _CCF = "ConnectCaseFilter";
|
|
512
|
+
const _CCIC = "ConnectCaseInputContent";
|
|
513
|
+
const _CCR = "CreateCaseRequest";
|
|
514
|
+
const _CCRR = "CreateCaseRuleRequest";
|
|
515
|
+
const _CCRRr = "CreateCaseRuleResponse";
|
|
516
|
+
const _CCRr = "CreateCaseResponse";
|
|
517
|
+
const _CCRre = "CreateCaseRule";
|
|
518
|
+
const _CCo = "ContactContent";
|
|
519
|
+
const _CCr = "CreateCase";
|
|
520
|
+
const _CCu = "CustomContent";
|
|
521
|
+
const _CD = "CreateDomain";
|
|
522
|
+
const _CDR = "CreateDomainRequest";
|
|
523
|
+
const _CDRr = "CreateDomainResponse";
|
|
524
|
+
const _CE = "CustomEntity";
|
|
525
|
+
const _CEID = "CaseEventIncludedData";
|
|
526
|
+
const _CEo = "ConflictException";
|
|
527
|
+
const _CF = "CommentFilter";
|
|
528
|
+
const _CFF = "CustomFieldsFilter";
|
|
529
|
+
const _CFFL = "CustomFieldsFilterList";
|
|
530
|
+
const _CFL = "CaseFilterList";
|
|
531
|
+
const _CFR = "CreateFieldRequest";
|
|
532
|
+
const _CFRr = "CreateFieldResponse";
|
|
533
|
+
const _CFa = "CaseFilter";
|
|
534
|
+
const _CFo = "ContactFilter";
|
|
535
|
+
const _CFr = "CreateField";
|
|
536
|
+
const _CFu = "CustomFilter";
|
|
537
|
+
const _CIC = "CustomInputContent";
|
|
538
|
+
const _CL = "CreateLayout";
|
|
539
|
+
const _CLR = "CreateLayoutRequest";
|
|
540
|
+
const _CLRr = "CreateLayoutResponse";
|
|
541
|
+
const _CRD = "CaseRuleDetails";
|
|
542
|
+
const _CRE = "CaseRuleError";
|
|
543
|
+
const _CRI = "CaseRuleIdentifier";
|
|
544
|
+
const _CRIL = "CaseRuleIdentifierList";
|
|
545
|
+
const _CRIR = "CreateRelatedItemRequest";
|
|
546
|
+
const _CRIRr = "CreateRelatedItemResponse";
|
|
547
|
+
const _CRIr = "CreateRelatedItem";
|
|
548
|
+
const _CRS = "CaseRuleSummary";
|
|
549
|
+
const _CRSL = "CaseRuleSummaryList";
|
|
550
|
+
const _CS = "CaseSummary";
|
|
551
|
+
const _CSL = "CaseSummaryList";
|
|
552
|
+
const _CT = "CreateTemplate";
|
|
553
|
+
const _CTR = "CreateTemplateRequest";
|
|
554
|
+
const _CTRr = "CreateTemplateResponse";
|
|
555
|
+
const _DC = "DeleteCase";
|
|
556
|
+
const _DCR = "DeleteCaseRequest";
|
|
557
|
+
const _DCRR = "DeleteCaseRuleRequest";
|
|
558
|
+
const _DCRRe = "DeleteCaseRuleResponse";
|
|
559
|
+
const _DCRe = "DeleteCaseResponse";
|
|
560
|
+
const _DCRel = "DeleteCaseRule";
|
|
561
|
+
const _DD = "DeleteDomain";
|
|
562
|
+
const _DDR = "DeleteDomainRequest";
|
|
563
|
+
const _DDRe = "DeleteDomainResponse";
|
|
564
|
+
const _DF = "DeleteField";
|
|
565
|
+
const _DFR = "DeleteFieldRequest";
|
|
566
|
+
const _DFRe = "DeleteFieldResponse";
|
|
567
|
+
const _DL = "DeleteLayout";
|
|
568
|
+
const _DLR = "DeleteLayoutRequest";
|
|
569
|
+
const _DLRe = "DeleteLayoutResponse";
|
|
570
|
+
const _DRI = "DeleteRelatedItem";
|
|
571
|
+
const _DRIR = "DeleteRelatedItemRequest";
|
|
572
|
+
const _DRIRe = "DeleteRelatedItemResponse";
|
|
573
|
+
const _DS = "DomainSummary";
|
|
574
|
+
const _DSL = "DomainSummaryList";
|
|
575
|
+
const _DT = "DeleteTemplate";
|
|
576
|
+
const _DTR = "DeleteTemplateRequest";
|
|
577
|
+
const _DTRe = "DeleteTemplateResponse";
|
|
578
|
+
const _EBC = "EventBridgeConfiguration";
|
|
579
|
+
const _EFV = "EmptyFieldValue";
|
|
580
|
+
const _EID = "EventIncludedData";
|
|
581
|
+
const _EOV = "EmptyOperandValue";
|
|
582
|
+
const _FC = "FileContent";
|
|
583
|
+
const _FE = "FieldError";
|
|
584
|
+
const _FF = "FileFilter";
|
|
585
|
+
const _FFi = "FieldFilter";
|
|
586
|
+
const _FG = "FieldGroup";
|
|
587
|
+
const _FI = "FieldIdentifier";
|
|
588
|
+
const _FIL = "FieldIdentifierList";
|
|
589
|
+
const _FIi = "FieldItem";
|
|
590
|
+
const _FL = "FieldList";
|
|
591
|
+
const _FO = "FieldOption";
|
|
592
|
+
const _FOCR = "FieldOptionsCaseRule";
|
|
593
|
+
const _FOE = "FieldOptionError";
|
|
594
|
+
const _FOEL = "FieldOptionErrorList";
|
|
595
|
+
const _FOL = "FieldOptionsList";
|
|
596
|
+
const _FS = "FieldSummary";
|
|
597
|
+
const _FSL = "FieldSummaryList";
|
|
598
|
+
const _FV = "FieldValue";
|
|
599
|
+
const _FVL = "FieldValueList";
|
|
600
|
+
const _FVU = "FieldValueUnion";
|
|
601
|
+
const _GC = "GetCase";
|
|
602
|
+
const _GCAE = "GetCaseAuditEvents";
|
|
603
|
+
const _GCAER = "GetCaseAuditEventsRequest";
|
|
604
|
+
const _GCAERe = "GetCaseAuditEventsResponse";
|
|
605
|
+
const _GCEC = "GetCaseEventConfiguration";
|
|
606
|
+
const _GCECR = "GetCaseEventConfigurationRequest";
|
|
607
|
+
const _GCECRe = "GetCaseEventConfigurationResponse";
|
|
608
|
+
const _GCR = "GetCaseRequest";
|
|
609
|
+
const _GCRR = "GetCaseRuleResponse";
|
|
610
|
+
const _GCRe = "GetCaseResponse";
|
|
611
|
+
const _GD = "GetDomain";
|
|
612
|
+
const _GDR = "GetDomainRequest";
|
|
613
|
+
const _GDRe = "GetDomainResponse";
|
|
614
|
+
const _GFR = "GetFieldResponse";
|
|
615
|
+
const _GL = "GetLayout";
|
|
616
|
+
const _GLR = "GetLayoutRequest";
|
|
617
|
+
const _GLRe = "GetLayoutResponse";
|
|
618
|
+
const _GT = "GetTemplate";
|
|
619
|
+
const _GTR = "GetTemplateRequest";
|
|
620
|
+
const _GTRe = "GetTemplateResponse";
|
|
621
|
+
const _HCR = "HiddenCaseRule";
|
|
622
|
+
const _ISE = "InternalServerException";
|
|
623
|
+
const _LC = "LayoutConfiguration";
|
|
624
|
+
const _LCFC = "ListCasesForContact";
|
|
625
|
+
const _LCFCR = "ListCasesForContactRequest";
|
|
626
|
+
const _LCFCRi = "ListCasesForContactResponse";
|
|
627
|
+
const _LCR = "ListCaseRules";
|
|
628
|
+
const _LCRR = "ListCaseRulesRequest";
|
|
629
|
+
const _LCRRi = "ListCaseRulesResponse";
|
|
630
|
+
const _LCa = "LayoutContent";
|
|
631
|
+
const _LD = "ListDomains";
|
|
632
|
+
const _LDR = "ListDomainsRequest";
|
|
633
|
+
const _LDRi = "ListDomainsResponse";
|
|
634
|
+
const _LF = "ListFields";
|
|
635
|
+
const _LFO = "ListFieldOptions";
|
|
636
|
+
const _LFOR = "ListFieldOptionsRequest";
|
|
637
|
+
const _LFORi = "ListFieldOptionsResponse";
|
|
638
|
+
const _LFR = "ListFieldsRequest";
|
|
639
|
+
const _LFRi = "ListFieldsResponse";
|
|
640
|
+
const _LL = "ListLayouts";
|
|
641
|
+
const _LLR = "ListLayoutsRequest";
|
|
642
|
+
const _LLRi = "ListLayoutsResponse";
|
|
643
|
+
const _LS = "LayoutSections";
|
|
644
|
+
const _LSL = "LayoutSummaryList";
|
|
645
|
+
const _LSa = "LayoutSummary";
|
|
646
|
+
const _LT = "ListTemplates";
|
|
647
|
+
const _LTFR = "ListTagsForResource";
|
|
648
|
+
const _LTFRR = "ListTagsForResourceRequest";
|
|
649
|
+
const _LTFRRi = "ListTagsForResourceResponse";
|
|
650
|
+
const _LTR = "ListTemplatesRequest";
|
|
651
|
+
const _LTRi = "ListTemplatesResponse";
|
|
652
|
+
const _OO = "OperandOne";
|
|
653
|
+
const _OT = "OperandTwo";
|
|
654
|
+
const _PCEC = "PutCaseEventConfiguration";
|
|
655
|
+
const _PCECR = "PutCaseEventConfigurationRequest";
|
|
656
|
+
const _PCECRu = "PutCaseEventConfigurationResponse";
|
|
657
|
+
const _PCFOM = "ParentChildFieldOptionsMapping";
|
|
658
|
+
const _PCFOML = "ParentChildFieldOptionsMappingList";
|
|
659
|
+
const _RA = "Retry-After";
|
|
660
|
+
const _RCR = "RequiredCaseRule";
|
|
661
|
+
const _RF = "RequiredField";
|
|
662
|
+
const _RFL = "RequiredFieldList";
|
|
663
|
+
const _RIC = "RelatedItemContent";
|
|
664
|
+
const _RIEID = "RelatedItemEventIncludedData";
|
|
665
|
+
const _RIFL = "RelatedItemFilterList";
|
|
666
|
+
const _RIIC = "RelatedItemInputContent";
|
|
667
|
+
const _RITF = "RelatedItemTypeFilter";
|
|
668
|
+
const _RNFE = "ResourceNotFoundException";
|
|
669
|
+
const _S = "Sort";
|
|
670
|
+
const _SARI = "SearchAllRelatedItems";
|
|
671
|
+
const _SARIR = "SearchAllRelatedItemsRequest";
|
|
672
|
+
const _SARIRI = "SearchAllRelatedItemsResponseItem";
|
|
673
|
+
const _SARIRIL = "SearchAllRelatedItemsResponseItemList";
|
|
674
|
+
const _SARIRe = "SearchAllRelatedItemsResponse";
|
|
675
|
+
const _SARIS = "SearchAllRelatedItemsSort";
|
|
676
|
+
const _SARISL = "SearchAllRelatedItemsSortList";
|
|
677
|
+
const _SC = "SlaConfiguration";
|
|
678
|
+
const _SCR = "SearchCasesRequest";
|
|
679
|
+
const _SCRI = "SearchCasesResponseItem";
|
|
680
|
+
const _SCRIL = "SearchCasesResponseItemList";
|
|
681
|
+
const _SCRe = "SearchCasesResponse";
|
|
682
|
+
const _SCe = "SearchCases";
|
|
683
|
+
const _SCl = "SlaContent";
|
|
684
|
+
const _SF = "SlaFilter";
|
|
685
|
+
const _SFVUL = "SlaFieldValueUnionList";
|
|
686
|
+
const _SIC = "SlaInputConfiguration";
|
|
687
|
+
const _SICl = "SlaInputContent";
|
|
688
|
+
const _SL = "SectionsList";
|
|
689
|
+
const _SLo = "SortList";
|
|
690
|
+
const _SN = "SlaName";
|
|
691
|
+
const _SQEE = "ServiceQuotaExceededException";
|
|
692
|
+
const _SRI = "SearchRelatedItems";
|
|
693
|
+
const _SRIR = "SearchRelatedItemsRequest";
|
|
694
|
+
const _SRIRI = "SearchRelatedItemsResponseItem";
|
|
695
|
+
const _SRIRIL = "SearchRelatedItemsResponseItemList";
|
|
696
|
+
const _SRIRe = "SearchRelatedItemsResponse";
|
|
697
|
+
const _Se = "Section";
|
|
698
|
+
const _T = "Tags";
|
|
699
|
+
const _TCRL = "TemplateCaseRuleList";
|
|
700
|
+
const _TE = "ThrottlingException";
|
|
701
|
+
const _TR = "TemplateRule";
|
|
702
|
+
const _TRR = "TagResourceRequest";
|
|
703
|
+
const _TRa = "TagResource";
|
|
704
|
+
const _TS = "TemplateSummary";
|
|
705
|
+
const _TSL = "TemplateSummaryList";
|
|
706
|
+
const _UC = "UpdateCase";
|
|
707
|
+
const _UCR = "UpdateCaseRequest";
|
|
708
|
+
const _UCRR = "UpdateCaseRuleRequest";
|
|
709
|
+
const _UCRRp = "UpdateCaseRuleResponse";
|
|
710
|
+
const _UCRp = "UpdateCaseResponse";
|
|
711
|
+
const _UCRpd = "UpdateCaseRule";
|
|
712
|
+
const _UF = "UpdateField";
|
|
713
|
+
const _UFR = "UpdateFieldRequest";
|
|
714
|
+
const _UFRp = "UpdateFieldResponse";
|
|
715
|
+
const _UL = "UpdateLayout";
|
|
716
|
+
const _ULR = "UpdateLayoutRequest";
|
|
717
|
+
const _ULRp = "UpdateLayoutResponse";
|
|
718
|
+
const _UR = "UntagResource";
|
|
719
|
+
const _URR = "UntagResourceRequest";
|
|
720
|
+
const _UT = "UpdateTemplate";
|
|
721
|
+
const _UTR = "UpdateTemplateRequest";
|
|
722
|
+
const _UTRp = "UpdateTemplateResponse";
|
|
723
|
+
const _UU = "UserUnion";
|
|
724
|
+
const _VE = "ValidationException";
|
|
725
|
+
const _a = "active";
|
|
726
|
+
const _aA = "andAll";
|
|
727
|
+
const _aE = "auditEvents";
|
|
728
|
+
const _aT = "associationTime";
|
|
729
|
+
const _ar = "arn";
|
|
730
|
+
const _b = "body";
|
|
731
|
+
const _bV = "booleanValue";
|
|
732
|
+
const _ba = "basic";
|
|
733
|
+
const _c = "client";
|
|
734
|
+
const _cA = "contactArn";
|
|
735
|
+
const _cAa = "caseArn";
|
|
736
|
+
const _cC = "connectCase";
|
|
737
|
+
const _cD = "caseData";
|
|
738
|
+
const _cE = "customEntity";
|
|
739
|
+
const _cFI = "childFieldId";
|
|
740
|
+
const _cFOV = "childFieldOptionValues";
|
|
741
|
+
const _cI = "caseId";
|
|
742
|
+
const _cR = "caseRules";
|
|
743
|
+
const _cRA = "caseRuleArn";
|
|
744
|
+
const _cRI = "caseRuleId";
|
|
745
|
+
const _cT = "contentType";
|
|
746
|
+
const _cTST = "connectedToSystemTime";
|
|
747
|
+
const _cTl = "clientToken";
|
|
748
|
+
const _cTo = "completionTime";
|
|
749
|
+
const _cTr = "createdTime";
|
|
750
|
+
const _ca = "cases";
|
|
751
|
+
const _ch = "channel";
|
|
752
|
+
const _co = "content";
|
|
753
|
+
const _com = "comment";
|
|
754
|
+
const _con = "conditions";
|
|
755
|
+
const _cont = "contains";
|
|
756
|
+
const _conta = "contact";
|
|
757
|
+
const _cu = "custom";
|
|
758
|
+
const _d = "description";
|
|
759
|
+
const _dA = "domainArn";
|
|
760
|
+
const _dI = "domainId";
|
|
761
|
+
const _dL = "defaultLayout";
|
|
762
|
+
const _dS = "domainStatus";
|
|
763
|
+
const _dV = "defaultValue";
|
|
764
|
+
const _dVo = "doubleValue";
|
|
765
|
+
const _de = "deleted";
|
|
766
|
+
const _do = "domains";
|
|
767
|
+
const _e = "error";
|
|
768
|
+
const _eB = "eventBridge";
|
|
769
|
+
const _eC = "errorCode";
|
|
770
|
+
const _eFI = "eventFieldId";
|
|
771
|
+
const _eI = "eventId";
|
|
772
|
+
const _eT = "equalTo";
|
|
773
|
+
const _eV = "emptyValue";
|
|
774
|
+
const _en = "enabled";
|
|
775
|
+
const _er = "errors";
|
|
776
|
+
const _f = "fields";
|
|
777
|
+
const _fA = "fieldArn";
|
|
778
|
+
const _fAi = "fileArn";
|
|
779
|
+
const _fG = "fieldGroup";
|
|
780
|
+
const _fI = "fieldId";
|
|
781
|
+
const _fO = "fieldOptions";
|
|
782
|
+
const _fi = "filters";
|
|
783
|
+
const _fie = "field";
|
|
784
|
+
const _fil = "filter";
|
|
785
|
+
const _file = "file";
|
|
786
|
+
const _gT = "greaterThan";
|
|
787
|
+
const _gTOET = "greaterThanOrEqualTo";
|
|
788
|
+
const _h = "hidden";
|
|
789
|
+
const _hE = "httpError";
|
|
790
|
+
const _hH = "httpHeader";
|
|
791
|
+
const _hQ = "httpQuery";
|
|
792
|
+
const _ht = "http";
|
|
793
|
+
const _i = "id";
|
|
794
|
+
const _iC = "includeContent";
|
|
795
|
+
const _iD = "includedData";
|
|
796
|
+
const _iPA = "iamPrincipalArn";
|
|
797
|
+
const _l = "layouts";
|
|
798
|
+
const _lA = "layoutArn";
|
|
799
|
+
const _lC = "layoutConfiguration";
|
|
800
|
+
const _lI = "layoutId";
|
|
801
|
+
const _lMT = "lastModifiedTime";
|
|
802
|
+
const _lT = "lessThan";
|
|
803
|
+
const _lTOET = "lessThanOrEqualTo";
|
|
804
|
+
const _m = "message";
|
|
805
|
+
const _mI = "moreInfo";
|
|
2445
806
|
const _mR = "maxResults";
|
|
807
|
+
const _n = "name";
|
|
808
|
+
const _nET = "notEqualTo";
|
|
2446
809
|
const _nT = "nextToken";
|
|
810
|
+
const _nV = "newValue";
|
|
811
|
+
const _na = "namespace";
|
|
812
|
+
const _no = "not";
|
|
813
|
+
const _o = "options";
|
|
814
|
+
const _oA = "orAll";
|
|
815
|
+
const _oO = "operandOne";
|
|
816
|
+
const _oT = "operandTwo";
|
|
817
|
+
const _oV = "oldValue";
|
|
818
|
+
const _pB = "performedBy";
|
|
819
|
+
const _pCFOM = "parentChildFieldOptionsMappings";
|
|
820
|
+
const _pFI = "parentFieldId";
|
|
821
|
+
const _pFOV = "parentFieldOptionValue";
|
|
822
|
+
const _pT = "performedTime";
|
|
823
|
+
const _r = "result";
|
|
2447
824
|
const _rAS = "retryAfterSeconds";
|
|
2448
|
-
const
|
|
825
|
+
const _rF = "requiredFields";
|
|
826
|
+
const _rI = "resourceId";
|
|
827
|
+
const _rIA = "relatedItemArn";
|
|
828
|
+
const _rID = "relatedItemData";
|
|
829
|
+
const _rII = "relatedItemId";
|
|
830
|
+
const _rIT = "relatedItemType";
|
|
831
|
+
const _rIe = "relatedItems";
|
|
832
|
+
const _rT = "ruleType";
|
|
833
|
+
const _rTe = "resourceType";
|
|
834
|
+
const _re = "required";
|
|
835
|
+
const _ru = "rule";
|
|
836
|
+
const _rul = "rules";
|
|
2449
837
|
const _s = "status";
|
|
838
|
+
const _sC = "slaConfiguration";
|
|
839
|
+
const _sIC = "slaInputConfiguration";
|
|
840
|
+
const _sO = "sortOrder";
|
|
841
|
+
const _sP = "sortProperty";
|
|
842
|
+
const _sT = "searchTerm";
|
|
843
|
+
const _sV = "stringValue";
|
|
844
|
+
const _se = "server";
|
|
845
|
+
const _sec = "sections";
|
|
846
|
+
const _sl = "sla";
|
|
847
|
+
const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.connectcases";
|
|
848
|
+
const _so = "sorts";
|
|
849
|
+
const _sp = "sparse";
|
|
850
|
+
const _t = "type";
|
|
851
|
+
const _tA = "templateArn";
|
|
852
|
+
const _tFV = "targetFieldValues";
|
|
853
|
+
const _tI = "templateId";
|
|
2450
854
|
const _tK = "tagKeys";
|
|
2451
|
-
const
|
|
855
|
+
const _tP = "topPanel";
|
|
856
|
+
const _tSM = "targetSlaMinutes";
|
|
857
|
+
const _tT = "targetTime";
|
|
858
|
+
const _ta = "tags";
|
|
859
|
+
const _te = "templates";
|
|
860
|
+
const _u = "user";
|
|
861
|
+
const _uA = "userArn";
|
|
862
|
+
const _uAV = "userArnValue";
|
|
863
|
+
const _uCR = "unprocessedCaseRules";
|
|
864
|
+
const _v = "value";
|
|
865
|
+
const _va = "values";
|
|
866
|
+
const n0 = "com.amazonaws.connectcases";
|
|
867
|
+
var CustomEntity = [0, n0, _CE, 8, 0];
|
|
868
|
+
var SlaName = [0, n0, _SN, 8, 0];
|
|
869
|
+
var AccessDeniedException = [
|
|
870
|
+
-3,
|
|
871
|
+
n0,
|
|
872
|
+
_ADE,
|
|
873
|
+
{
|
|
874
|
+
[_e]: _c,
|
|
875
|
+
[_hE]: 403,
|
|
876
|
+
},
|
|
877
|
+
[_m],
|
|
878
|
+
[0],
|
|
879
|
+
];
|
|
880
|
+
schema.TypeRegistry.for(n0).registerError(AccessDeniedException, AccessDeniedException$1);
|
|
881
|
+
var AuditEvent = [
|
|
882
|
+
3,
|
|
883
|
+
n0,
|
|
884
|
+
_AE,
|
|
885
|
+
0,
|
|
886
|
+
[_eI, _t, _rIT, _pT, _f, _pB],
|
|
887
|
+
[0, 0, 0, 5, [() => AuditEventFieldList, 0], [() => AuditEventPerformedBy, 0]],
|
|
888
|
+
];
|
|
889
|
+
var AuditEventField = [
|
|
890
|
+
3,
|
|
891
|
+
n0,
|
|
892
|
+
_AEF,
|
|
893
|
+
0,
|
|
894
|
+
[_eFI, _oV, _nV],
|
|
895
|
+
[0, () => AuditEventFieldValueUnion, () => AuditEventFieldValueUnion],
|
|
896
|
+
];
|
|
897
|
+
var AuditEventPerformedBy = [3, n0, _AEPB, 0, [_u, _iPA], [[() => UserUnion, 0], 0]];
|
|
898
|
+
var BasicLayout = [
|
|
899
|
+
3,
|
|
900
|
+
n0,
|
|
901
|
+
_BL,
|
|
902
|
+
0,
|
|
903
|
+
[_tP, _mI],
|
|
904
|
+
[() => LayoutSections, () => LayoutSections],
|
|
905
|
+
];
|
|
906
|
+
var BatchGetCaseRuleRequest = [
|
|
907
|
+
3,
|
|
908
|
+
n0,
|
|
909
|
+
_BGCRR,
|
|
910
|
+
0,
|
|
911
|
+
[_dI, _cR],
|
|
912
|
+
[[0, 1], () => CaseRuleIdentifierList],
|
|
913
|
+
];
|
|
914
|
+
var BatchGetCaseRuleResponse = [
|
|
915
|
+
3,
|
|
916
|
+
n0,
|
|
917
|
+
_BGCRRa,
|
|
918
|
+
0,
|
|
919
|
+
[_cR, _er, _uCR],
|
|
920
|
+
[[() => BatchGetCaseRuleList, 0], () => BatchGetCaseRuleErrorList, 64 | 0],
|
|
921
|
+
];
|
|
922
|
+
var BatchGetFieldRequest = [
|
|
923
|
+
3,
|
|
924
|
+
n0,
|
|
925
|
+
_BGFR,
|
|
926
|
+
0,
|
|
927
|
+
[_dI, _f],
|
|
928
|
+
[[0, 1], () => BatchGetFieldIdentifierList],
|
|
929
|
+
];
|
|
930
|
+
var BatchGetFieldResponse = [
|
|
931
|
+
3,
|
|
932
|
+
n0,
|
|
933
|
+
_BGFRa,
|
|
934
|
+
0,
|
|
935
|
+
[_f, _er],
|
|
936
|
+
[[() => BatchGetFieldList, 0], () => BatchGetFieldErrorList],
|
|
937
|
+
];
|
|
938
|
+
var BatchPutFieldOptionsRequest = [
|
|
939
|
+
3,
|
|
940
|
+
n0,
|
|
941
|
+
_BPFOR,
|
|
942
|
+
0,
|
|
943
|
+
[_dI, _fI, _o],
|
|
944
|
+
[[0, 1], [0, 1], () => FieldOptionsList],
|
|
945
|
+
];
|
|
946
|
+
var BatchPutFieldOptionsResponse = [
|
|
947
|
+
3,
|
|
948
|
+
n0,
|
|
949
|
+
_BPFORa,
|
|
950
|
+
0,
|
|
951
|
+
[_er],
|
|
952
|
+
[() => FieldOptionErrorList],
|
|
953
|
+
];
|
|
954
|
+
var BooleanOperands = [
|
|
955
|
+
3,
|
|
956
|
+
n0,
|
|
957
|
+
_BO,
|
|
958
|
+
0,
|
|
959
|
+
[_oO, _oT, _r],
|
|
960
|
+
[() => OperandOne, () => OperandTwo, 2],
|
|
961
|
+
];
|
|
962
|
+
var CaseEventIncludedData = [3, n0, _CEID, 0, [_f], [() => FieldIdentifierList]];
|
|
963
|
+
var CaseRuleError = [3, n0, _CRE, 0, [_i, _eC, _m], [0, 0, 0]];
|
|
964
|
+
var CaseRuleIdentifier = [3, n0, _CRI, 0, [_i], [0]];
|
|
965
|
+
var CaseRuleSummary = [3, n0, _CRS, 0, [_cRI, _n, _cRA, _rT, _d], [0, 0, 0, 0, 0]];
|
|
966
|
+
var CaseSummary = [3, n0, _CS, 0, [_cI, _tI], [0, 0]];
|
|
967
|
+
var CommentContent = [3, n0, _CC, 0, [_b, _cT], [0, 0]];
|
|
968
|
+
var CommentFilter = [3, n0, _CF, 0, [], []];
|
|
969
|
+
var ConflictException = [
|
|
970
|
+
-3,
|
|
971
|
+
n0,
|
|
972
|
+
_CEo,
|
|
973
|
+
{
|
|
974
|
+
[_e]: _c,
|
|
975
|
+
[_hE]: 409,
|
|
976
|
+
},
|
|
977
|
+
[_m],
|
|
978
|
+
[0],
|
|
979
|
+
];
|
|
980
|
+
schema.TypeRegistry.for(n0).registerError(ConflictException, ConflictException$1);
|
|
981
|
+
var ConnectCaseContent = [3, n0, _CCC, 0, [_cI], [0]];
|
|
982
|
+
var ConnectCaseFilter = [3, n0, _CCF, 0, [_cI], [0]];
|
|
983
|
+
var ConnectCaseInputContent = [3, n0, _CCIC, 0, [_cI], [0]];
|
|
984
|
+
var Contact = [3, n0, _C, 0, [_cA], [0]];
|
|
985
|
+
var ContactContent = [3, n0, _CCo, 0, [_cA, _ch, _cTST], [0, 0, 5]];
|
|
986
|
+
var ContactFilter = [3, n0, _CFo, 0, [_ch, _cA], [64 | 0, 0]];
|
|
987
|
+
var CreateCaseRequest = [
|
|
988
|
+
3,
|
|
989
|
+
n0,
|
|
990
|
+
_CCR,
|
|
991
|
+
0,
|
|
992
|
+
[_dI, _tI, _f, _cTl, _pB],
|
|
993
|
+
[[0, 1], 0, () => FieldValueList, [0, 4], [() => UserUnion, 0]],
|
|
994
|
+
];
|
|
995
|
+
var CreateCaseResponse = [3, n0, _CCRr, 0, [_cI, _cAa], [0, 0]];
|
|
996
|
+
var CreateCaseRuleRequest = [
|
|
997
|
+
3,
|
|
998
|
+
n0,
|
|
999
|
+
_CCRR,
|
|
1000
|
+
0,
|
|
1001
|
+
[_dI, _n, _d, _ru],
|
|
1002
|
+
[[0, 1], 0, 0, () => CaseRuleDetails],
|
|
1003
|
+
];
|
|
1004
|
+
var CreateCaseRuleResponse = [3, n0, _CCRRr, 0, [_cRI, _cRA], [0, 0]];
|
|
1005
|
+
var CreateDomainRequest = [3, n0, _CDR, 0, [_n], [0]];
|
|
1006
|
+
var CreateDomainResponse = [3, n0, _CDRr, 0, [_dI, _dA, _dS], [0, 0, 0]];
|
|
1007
|
+
var CreateFieldRequest = [3, n0, _CFR, 0, [_dI, _n, _t, _d], [[0, 1], 0, 0, 0]];
|
|
1008
|
+
var CreateFieldResponse = [3, n0, _CFRr, 0, [_fI, _fA], [0, 0]];
|
|
1009
|
+
var CreateLayoutRequest = [
|
|
1010
|
+
3,
|
|
1011
|
+
n0,
|
|
1012
|
+
_CLR,
|
|
1013
|
+
0,
|
|
1014
|
+
[_dI, _n, _co],
|
|
1015
|
+
[[0, 1], 0, () => LayoutContent],
|
|
1016
|
+
];
|
|
1017
|
+
var CreateLayoutResponse = [3, n0, _CLRr, 0, [_lI, _lA], [0, 0]];
|
|
1018
|
+
var CreateRelatedItemRequest = [
|
|
1019
|
+
3,
|
|
1020
|
+
n0,
|
|
1021
|
+
_CRIR,
|
|
1022
|
+
0,
|
|
1023
|
+
[_dI, _cI, _t, _co, _pB],
|
|
1024
|
+
[[0, 1], [0, 1], 0, [() => RelatedItemInputContent, 0], [() => UserUnion, 0]],
|
|
1025
|
+
];
|
|
1026
|
+
var CreateRelatedItemResponse = [3, n0, _CRIRr, 0, [_rII, _rIA], [0, 0]];
|
|
1027
|
+
var CreateTemplateRequest = [
|
|
1028
|
+
3,
|
|
1029
|
+
n0,
|
|
1030
|
+
_CTR,
|
|
1031
|
+
0,
|
|
1032
|
+
[_dI, _n, _d, _lC, _rF, _s, _rul],
|
|
1033
|
+
[[0, 1], 0, 0, () => LayoutConfiguration, () => RequiredFieldList, 0, () => TemplateCaseRuleList],
|
|
1034
|
+
];
|
|
1035
|
+
var CreateTemplateResponse = [3, n0, _CTRr, 0, [_tI, _tA], [0, 0]];
|
|
1036
|
+
var CustomContent = [3, n0, _CCu, 0, [_f], [() => FieldValueList]];
|
|
1037
|
+
var CustomFilter = [3, n0, _CFu, 0, [_f], [() => CustomFieldsFilter]];
|
|
1038
|
+
var CustomInputContent = [3, n0, _CIC, 0, [_f], [() => FieldValueList]];
|
|
1039
|
+
var DeleteCaseRequest = [
|
|
1040
|
+
3,
|
|
1041
|
+
n0,
|
|
1042
|
+
_DCR,
|
|
1043
|
+
0,
|
|
1044
|
+
[_dI, _cI],
|
|
1045
|
+
[
|
|
1046
|
+
[0, 1],
|
|
1047
|
+
[0, 1],
|
|
1048
|
+
],
|
|
1049
|
+
];
|
|
1050
|
+
var DeleteCaseResponse = [3, n0, _DCRe, 0, [], []];
|
|
1051
|
+
var DeleteCaseRuleRequest = [
|
|
1052
|
+
3,
|
|
1053
|
+
n0,
|
|
1054
|
+
_DCRR,
|
|
1055
|
+
0,
|
|
1056
|
+
[_dI, _cRI],
|
|
1057
|
+
[
|
|
1058
|
+
[0, 1],
|
|
1059
|
+
[0, 1],
|
|
1060
|
+
],
|
|
1061
|
+
];
|
|
1062
|
+
var DeleteCaseRuleResponse = [3, n0, _DCRRe, 0, [], []];
|
|
1063
|
+
var DeleteDomainRequest = [3, n0, _DDR, 0, [_dI], [[0, 1]]];
|
|
1064
|
+
var DeleteDomainResponse = [3, n0, _DDRe, 0, [], []];
|
|
1065
|
+
var DeleteFieldRequest = [
|
|
1066
|
+
3,
|
|
1067
|
+
n0,
|
|
1068
|
+
_DFR,
|
|
1069
|
+
0,
|
|
1070
|
+
[_dI, _fI],
|
|
1071
|
+
[
|
|
1072
|
+
[0, 1],
|
|
1073
|
+
[0, 1],
|
|
1074
|
+
],
|
|
1075
|
+
];
|
|
1076
|
+
var DeleteFieldResponse = [3, n0, _DFRe, 0, [], []];
|
|
1077
|
+
var DeleteLayoutRequest = [
|
|
1078
|
+
3,
|
|
1079
|
+
n0,
|
|
1080
|
+
_DLR,
|
|
1081
|
+
0,
|
|
1082
|
+
[_dI, _lI],
|
|
1083
|
+
[
|
|
1084
|
+
[0, 1],
|
|
1085
|
+
[0, 1],
|
|
1086
|
+
],
|
|
1087
|
+
];
|
|
1088
|
+
var DeleteLayoutResponse = [3, n0, _DLRe, 0, [], []];
|
|
1089
|
+
var DeleteRelatedItemRequest = [
|
|
1090
|
+
3,
|
|
1091
|
+
n0,
|
|
1092
|
+
_DRIR,
|
|
1093
|
+
0,
|
|
1094
|
+
[_dI, _cI, _rII],
|
|
1095
|
+
[
|
|
1096
|
+
[0, 1],
|
|
1097
|
+
[0, 1],
|
|
1098
|
+
[0, 1],
|
|
1099
|
+
],
|
|
1100
|
+
];
|
|
1101
|
+
var DeleteRelatedItemResponse = [3, n0, _DRIRe, 0, [], []];
|
|
1102
|
+
var DeleteTemplateRequest = [
|
|
1103
|
+
3,
|
|
1104
|
+
n0,
|
|
1105
|
+
_DTR,
|
|
1106
|
+
0,
|
|
1107
|
+
[_dI, _tI],
|
|
1108
|
+
[
|
|
1109
|
+
[0, 1],
|
|
1110
|
+
[0, 1],
|
|
1111
|
+
],
|
|
1112
|
+
];
|
|
1113
|
+
var DeleteTemplateResponse = [3, n0, _DTRe, 0, [], []];
|
|
1114
|
+
var DomainSummary = [3, n0, _DS, 0, [_dI, _dA, _n], [0, 0, 0]];
|
|
1115
|
+
var EmptyFieldValue = [3, n0, _EFV, 0, [], []];
|
|
1116
|
+
var EmptyOperandValue = [3, n0, _EOV, 0, [], []];
|
|
1117
|
+
var EventBridgeConfiguration = [3, n0, _EBC, 0, [_en, _iD], [2, () => EventIncludedData]];
|
|
1118
|
+
var EventIncludedData = [
|
|
1119
|
+
3,
|
|
1120
|
+
n0,
|
|
1121
|
+
_EID,
|
|
1122
|
+
0,
|
|
1123
|
+
[_cD, _rID],
|
|
1124
|
+
[() => CaseEventIncludedData, () => RelatedItemEventIncludedData],
|
|
1125
|
+
];
|
|
1126
|
+
var FieldError = [3, n0, _FE, 0, [_i, _eC, _m], [0, 0, 0]];
|
|
1127
|
+
var FieldGroup = [3, n0, _FG, 0, [_n, _f], [0, () => FieldList]];
|
|
1128
|
+
var FieldIdentifier = [3, n0, _FI, 0, [_i], [0]];
|
|
1129
|
+
var FieldItem = [3, n0, _FIi, 0, [_i], [0]];
|
|
1130
|
+
var FieldOption = [3, n0, _FO, 0, [_n, _v, _a], [0, 0, 2]];
|
|
1131
|
+
var FieldOptionError = [3, n0, _FOE, 0, [_m, _eC, _v], [0, 0, 0]];
|
|
1132
|
+
var FieldOptionsCaseRule = [
|
|
1133
|
+
3,
|
|
1134
|
+
n0,
|
|
1135
|
+
_FOCR,
|
|
1136
|
+
0,
|
|
1137
|
+
[_pFI, _cFI, _pCFOM],
|
|
1138
|
+
[0, 0, () => ParentChildFieldOptionsMappingList],
|
|
1139
|
+
];
|
|
1140
|
+
var FieldSummary = [3, n0, _FS, 0, [_fI, _fA, _n, _t, _na], [0, 0, 0, 0, 0]];
|
|
1141
|
+
var FieldValue = [3, n0, _FV, 0, [_i, _v], [0, () => FieldValueUnion]];
|
|
1142
|
+
var FileContent = [3, n0, _FC, 0, [_fAi], [0]];
|
|
1143
|
+
var FileFilter = [3, n0, _FF, 0, [_fAi], [0]];
|
|
1144
|
+
var GetCaseAuditEventsRequest = [
|
|
1145
|
+
3,
|
|
1146
|
+
n0,
|
|
1147
|
+
_GCAER,
|
|
1148
|
+
0,
|
|
1149
|
+
[_cI, _dI, _mR, _nT],
|
|
1150
|
+
[[0, 1], [0, 1], 1, 0],
|
|
1151
|
+
];
|
|
1152
|
+
var GetCaseAuditEventsResponse = [
|
|
1153
|
+
3,
|
|
1154
|
+
n0,
|
|
1155
|
+
_GCAERe,
|
|
1156
|
+
0,
|
|
1157
|
+
[_nT, _aE],
|
|
1158
|
+
[0, [() => AuditEventsList, 0]],
|
|
1159
|
+
];
|
|
1160
|
+
var GetCaseEventConfigurationRequest = [3, n0, _GCECR, 0, [_dI], [[0, 1]]];
|
|
1161
|
+
var GetCaseEventConfigurationResponse = [
|
|
1162
|
+
3,
|
|
1163
|
+
n0,
|
|
1164
|
+
_GCECRe,
|
|
1165
|
+
0,
|
|
1166
|
+
[_eB],
|
|
1167
|
+
[() => EventBridgeConfiguration],
|
|
1168
|
+
];
|
|
1169
|
+
var GetCaseRequest = [
|
|
1170
|
+
3,
|
|
1171
|
+
n0,
|
|
1172
|
+
_GCR,
|
|
1173
|
+
0,
|
|
1174
|
+
[_cI, _dI, _f, _nT],
|
|
1175
|
+
[[0, 1], [0, 1], () => FieldIdentifierList, 0],
|
|
1176
|
+
];
|
|
1177
|
+
var GetCaseResponse = [
|
|
1178
|
+
3,
|
|
1179
|
+
n0,
|
|
1180
|
+
_GCRe,
|
|
1181
|
+
0,
|
|
1182
|
+
[_f, _tI, _nT, _ta],
|
|
1183
|
+
[() => FieldValueList, 0, 0, [() => Tags, 0]],
|
|
1184
|
+
];
|
|
1185
|
+
var GetCaseRuleResponse = [
|
|
1186
|
+
3,
|
|
1187
|
+
n0,
|
|
1188
|
+
_GCRR,
|
|
1189
|
+
0,
|
|
1190
|
+
[_cRI, _n, _cRA, _ru, _d, _de, _cTr, _lMT, _ta],
|
|
1191
|
+
[0, 0, 0, () => CaseRuleDetails, 0, 2, 5, 5, [() => Tags, 0]],
|
|
1192
|
+
];
|
|
1193
|
+
var GetDomainRequest = [3, n0, _GDR, 0, [_dI], [[0, 1]]];
|
|
1194
|
+
var GetDomainResponse = [
|
|
1195
|
+
3,
|
|
1196
|
+
n0,
|
|
1197
|
+
_GDRe,
|
|
1198
|
+
0,
|
|
1199
|
+
[_dI, _dA, _n, _cTr, _dS, _ta],
|
|
1200
|
+
[0, 0, 0, 5, 0, [() => Tags, 0]],
|
|
1201
|
+
];
|
|
1202
|
+
var GetFieldResponse = [
|
|
1203
|
+
3,
|
|
1204
|
+
n0,
|
|
1205
|
+
_GFR,
|
|
1206
|
+
0,
|
|
1207
|
+
[_fI, _n, _fA, _d, _t, _na, _ta, _de, _cTr, _lMT],
|
|
1208
|
+
[0, 0, 0, 0, 0, 0, [() => Tags, 0], 2, 5, 5],
|
|
1209
|
+
];
|
|
1210
|
+
var GetLayoutRequest = [
|
|
1211
|
+
3,
|
|
1212
|
+
n0,
|
|
1213
|
+
_GLR,
|
|
1214
|
+
0,
|
|
1215
|
+
[_dI, _lI],
|
|
1216
|
+
[
|
|
1217
|
+
[0, 1],
|
|
1218
|
+
[0, 1],
|
|
1219
|
+
],
|
|
1220
|
+
];
|
|
1221
|
+
var GetLayoutResponse = [
|
|
1222
|
+
3,
|
|
1223
|
+
n0,
|
|
1224
|
+
_GLRe,
|
|
1225
|
+
0,
|
|
1226
|
+
[_lI, _lA, _n, _co, _ta, _de, _cTr, _lMT],
|
|
1227
|
+
[0, 0, 0, () => LayoutContent, [() => Tags, 0], 2, 5, 5],
|
|
1228
|
+
];
|
|
1229
|
+
var GetTemplateRequest = [
|
|
1230
|
+
3,
|
|
1231
|
+
n0,
|
|
1232
|
+
_GTR,
|
|
1233
|
+
0,
|
|
1234
|
+
[_dI, _tI],
|
|
1235
|
+
[
|
|
1236
|
+
[0, 1],
|
|
1237
|
+
[0, 1],
|
|
1238
|
+
],
|
|
1239
|
+
];
|
|
1240
|
+
var GetTemplateResponse = [
|
|
1241
|
+
3,
|
|
1242
|
+
n0,
|
|
1243
|
+
_GTRe,
|
|
1244
|
+
0,
|
|
1245
|
+
[_tI, _tA, _n, _d, _lC, _rF, _ta, _s, _de, _cTr, _lMT, _rul],
|
|
1246
|
+
[
|
|
1247
|
+
0,
|
|
1248
|
+
0,
|
|
1249
|
+
0,
|
|
1250
|
+
0,
|
|
1251
|
+
() => LayoutConfiguration,
|
|
1252
|
+
() => RequiredFieldList,
|
|
1253
|
+
[() => Tags, 0],
|
|
1254
|
+
0,
|
|
1255
|
+
2,
|
|
1256
|
+
5,
|
|
1257
|
+
5,
|
|
1258
|
+
() => TemplateCaseRuleList,
|
|
1259
|
+
],
|
|
1260
|
+
];
|
|
1261
|
+
var HiddenCaseRule = [3, n0, _HCR, 0, [_dV, _con], [2, () => BooleanConditionList]];
|
|
1262
|
+
var InternalServerException = [
|
|
1263
|
+
-3,
|
|
1264
|
+
n0,
|
|
1265
|
+
_ISE,
|
|
1266
|
+
{
|
|
1267
|
+
[_e]: _se,
|
|
1268
|
+
[_hE]: 500,
|
|
1269
|
+
},
|
|
1270
|
+
[_m, _rAS],
|
|
1271
|
+
[
|
|
1272
|
+
0,
|
|
1273
|
+
[
|
|
1274
|
+
1,
|
|
1275
|
+
{
|
|
1276
|
+
[_hH]: _RA,
|
|
1277
|
+
},
|
|
1278
|
+
],
|
|
1279
|
+
],
|
|
1280
|
+
];
|
|
1281
|
+
schema.TypeRegistry.for(n0).registerError(InternalServerException, InternalServerException$1);
|
|
1282
|
+
var LayoutConfiguration = [3, n0, _LC, 0, [_dL], [0]];
|
|
1283
|
+
var LayoutSections = [3, n0, _LS, 0, [_sec], [() => SectionsList]];
|
|
1284
|
+
var LayoutSummary = [3, n0, _LSa, 0, [_lI, _lA, _n], [0, 0, 0]];
|
|
1285
|
+
var ListCaseRulesRequest = [
|
|
1286
|
+
3,
|
|
1287
|
+
n0,
|
|
1288
|
+
_LCRR,
|
|
1289
|
+
0,
|
|
1290
|
+
[_dI, _mR, _nT],
|
|
1291
|
+
[
|
|
1292
|
+
[0, 1],
|
|
1293
|
+
[
|
|
1294
|
+
1,
|
|
1295
|
+
{
|
|
1296
|
+
[_hQ]: _mR,
|
|
1297
|
+
},
|
|
1298
|
+
],
|
|
1299
|
+
[
|
|
1300
|
+
0,
|
|
1301
|
+
{
|
|
1302
|
+
[_hQ]: _nT,
|
|
1303
|
+
},
|
|
1304
|
+
],
|
|
1305
|
+
],
|
|
1306
|
+
];
|
|
1307
|
+
var ListCaseRulesResponse = [
|
|
1308
|
+
3,
|
|
1309
|
+
n0,
|
|
1310
|
+
_LCRRi,
|
|
1311
|
+
0,
|
|
1312
|
+
[_cR, _nT],
|
|
1313
|
+
[() => CaseRuleSummaryList, 0],
|
|
1314
|
+
];
|
|
1315
|
+
var ListCasesForContactRequest = [
|
|
1316
|
+
3,
|
|
1317
|
+
n0,
|
|
1318
|
+
_LCFCR,
|
|
1319
|
+
0,
|
|
1320
|
+
[_dI, _cA, _mR, _nT],
|
|
1321
|
+
[[0, 1], 0, 1, 0],
|
|
1322
|
+
];
|
|
1323
|
+
var ListCasesForContactResponse = [
|
|
1324
|
+
3,
|
|
1325
|
+
n0,
|
|
1326
|
+
_LCFCRi,
|
|
1327
|
+
0,
|
|
1328
|
+
[_ca, _nT],
|
|
1329
|
+
[() => CaseSummaryList, 0],
|
|
1330
|
+
];
|
|
1331
|
+
var ListDomainsRequest = [
|
|
1332
|
+
3,
|
|
1333
|
+
n0,
|
|
1334
|
+
_LDR,
|
|
1335
|
+
0,
|
|
1336
|
+
[_mR, _nT],
|
|
1337
|
+
[
|
|
1338
|
+
[
|
|
1339
|
+
1,
|
|
1340
|
+
{
|
|
1341
|
+
[_hQ]: _mR,
|
|
1342
|
+
},
|
|
1343
|
+
],
|
|
1344
|
+
[
|
|
1345
|
+
0,
|
|
1346
|
+
{
|
|
1347
|
+
[_hQ]: _nT,
|
|
1348
|
+
},
|
|
1349
|
+
],
|
|
1350
|
+
],
|
|
1351
|
+
];
|
|
1352
|
+
var ListDomainsResponse = [3, n0, _LDRi, 0, [_do, _nT], [() => DomainSummaryList, 0]];
|
|
1353
|
+
var ListFieldOptionsRequest = [
|
|
1354
|
+
3,
|
|
1355
|
+
n0,
|
|
1356
|
+
_LFOR,
|
|
1357
|
+
0,
|
|
1358
|
+
[_dI, _fI, _mR, _nT, _va],
|
|
1359
|
+
[
|
|
1360
|
+
[0, 1],
|
|
1361
|
+
[0, 1],
|
|
1362
|
+
[
|
|
1363
|
+
1,
|
|
1364
|
+
{
|
|
1365
|
+
[_hQ]: _mR,
|
|
1366
|
+
},
|
|
1367
|
+
],
|
|
1368
|
+
[
|
|
1369
|
+
0,
|
|
1370
|
+
{
|
|
1371
|
+
[_hQ]: _nT,
|
|
1372
|
+
},
|
|
1373
|
+
],
|
|
1374
|
+
[
|
|
1375
|
+
64 | 0,
|
|
1376
|
+
{
|
|
1377
|
+
[_hQ]: _va,
|
|
1378
|
+
},
|
|
1379
|
+
],
|
|
1380
|
+
],
|
|
1381
|
+
];
|
|
1382
|
+
var ListFieldOptionsResponse = [3, n0, _LFORi, 0, [_o, _nT], [() => FieldOptionsList, 0]];
|
|
1383
|
+
var ListFieldsRequest = [
|
|
1384
|
+
3,
|
|
1385
|
+
n0,
|
|
1386
|
+
_LFR,
|
|
1387
|
+
0,
|
|
1388
|
+
[_dI, _mR, _nT],
|
|
1389
|
+
[
|
|
1390
|
+
[0, 1],
|
|
1391
|
+
[
|
|
1392
|
+
1,
|
|
1393
|
+
{
|
|
1394
|
+
[_hQ]: _mR,
|
|
1395
|
+
},
|
|
1396
|
+
],
|
|
1397
|
+
[
|
|
1398
|
+
0,
|
|
1399
|
+
{
|
|
1400
|
+
[_hQ]: _nT,
|
|
1401
|
+
},
|
|
1402
|
+
],
|
|
1403
|
+
],
|
|
1404
|
+
];
|
|
1405
|
+
var ListFieldsResponse = [3, n0, _LFRi, 0, [_f, _nT], [() => FieldSummaryList, 0]];
|
|
1406
|
+
var ListLayoutsRequest = [
|
|
1407
|
+
3,
|
|
1408
|
+
n0,
|
|
1409
|
+
_LLR,
|
|
1410
|
+
0,
|
|
1411
|
+
[_dI, _mR, _nT],
|
|
1412
|
+
[
|
|
1413
|
+
[0, 1],
|
|
1414
|
+
[
|
|
1415
|
+
1,
|
|
1416
|
+
{
|
|
1417
|
+
[_hQ]: _mR,
|
|
1418
|
+
},
|
|
1419
|
+
],
|
|
1420
|
+
[
|
|
1421
|
+
0,
|
|
1422
|
+
{
|
|
1423
|
+
[_hQ]: _nT,
|
|
1424
|
+
},
|
|
1425
|
+
],
|
|
1426
|
+
],
|
|
1427
|
+
];
|
|
1428
|
+
var ListLayoutsResponse = [3, n0, _LLRi, 0, [_l, _nT], [() => LayoutSummaryList, 0]];
|
|
1429
|
+
var ListTagsForResourceRequest = [3, n0, _LTFRR, 0, [_ar], [[0, 1]]];
|
|
1430
|
+
var ListTagsForResourceResponse = [3, n0, _LTFRRi, 0, [_ta], [[() => Tags, 0]]];
|
|
1431
|
+
var ListTemplatesRequest = [
|
|
1432
|
+
3,
|
|
1433
|
+
n0,
|
|
1434
|
+
_LTR,
|
|
1435
|
+
0,
|
|
1436
|
+
[_dI, _mR, _nT, _s],
|
|
1437
|
+
[
|
|
1438
|
+
[0, 1],
|
|
1439
|
+
[
|
|
1440
|
+
1,
|
|
1441
|
+
{
|
|
1442
|
+
[_hQ]: _mR,
|
|
1443
|
+
},
|
|
1444
|
+
],
|
|
1445
|
+
[
|
|
1446
|
+
0,
|
|
1447
|
+
{
|
|
1448
|
+
[_hQ]: _nT,
|
|
1449
|
+
},
|
|
1450
|
+
],
|
|
1451
|
+
[
|
|
1452
|
+
64 | 0,
|
|
1453
|
+
{
|
|
1454
|
+
[_hQ]: _s,
|
|
1455
|
+
},
|
|
1456
|
+
],
|
|
1457
|
+
],
|
|
1458
|
+
];
|
|
1459
|
+
var ListTemplatesResponse = [3, n0, _LTRi, 0, [_te, _nT], [() => TemplateSummaryList, 0]];
|
|
1460
|
+
var ParentChildFieldOptionsMapping = [3, n0, _PCFOM, 0, [_pFOV, _cFOV], [0, 64 | 0]];
|
|
1461
|
+
var PutCaseEventConfigurationRequest = [
|
|
1462
|
+
3,
|
|
1463
|
+
n0,
|
|
1464
|
+
_PCECR,
|
|
1465
|
+
0,
|
|
1466
|
+
[_dI, _eB],
|
|
1467
|
+
[[0, 1], () => EventBridgeConfiguration],
|
|
1468
|
+
];
|
|
1469
|
+
var PutCaseEventConfigurationResponse = [3, n0, _PCECRu, 0, [], []];
|
|
1470
|
+
var RelatedItemEventIncludedData = [3, n0, _RIEID, 0, [_iC], [2]];
|
|
1471
|
+
var RequiredCaseRule = [3, n0, _RCR, 0, [_dV, _con], [2, () => BooleanConditionList]];
|
|
1472
|
+
var RequiredField = [3, n0, _RF, 0, [_fI], [0]];
|
|
1473
|
+
var ResourceNotFoundException = [
|
|
1474
|
+
-3,
|
|
1475
|
+
n0,
|
|
1476
|
+
_RNFE,
|
|
1477
|
+
{
|
|
1478
|
+
[_e]: _c,
|
|
1479
|
+
[_hE]: 404,
|
|
1480
|
+
},
|
|
1481
|
+
[_m, _rI, _rTe],
|
|
1482
|
+
[0, 0, 0],
|
|
1483
|
+
];
|
|
1484
|
+
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException, ResourceNotFoundException$1);
|
|
1485
|
+
var SearchAllRelatedItemsRequest = [
|
|
1486
|
+
3,
|
|
1487
|
+
n0,
|
|
1488
|
+
_SARIR,
|
|
1489
|
+
0,
|
|
1490
|
+
[_dI, _mR, _nT, _fi, _so],
|
|
1491
|
+
[[0, 1], 1, 0, [() => RelatedItemFilterList, 0], () => SearchAllRelatedItemsSortList],
|
|
1492
|
+
];
|
|
1493
|
+
var SearchAllRelatedItemsResponse = [
|
|
1494
|
+
3,
|
|
1495
|
+
n0,
|
|
1496
|
+
_SARIRe,
|
|
1497
|
+
0,
|
|
1498
|
+
[_nT, _rIe],
|
|
1499
|
+
[0, [() => SearchAllRelatedItemsResponseItemList, 0]],
|
|
1500
|
+
];
|
|
1501
|
+
var SearchAllRelatedItemsResponseItem = [
|
|
1502
|
+
3,
|
|
1503
|
+
n0,
|
|
1504
|
+
_SARIRI,
|
|
1505
|
+
0,
|
|
1506
|
+
[_rII, _cI, _t, _aT, _co, _pB, _ta],
|
|
1507
|
+
[0, 0, 0, 5, [() => RelatedItemContent, 0], [() => UserUnion, 0], [() => Tags, 0]],
|
|
1508
|
+
];
|
|
1509
|
+
var SearchAllRelatedItemsSort = [3, n0, _SARIS, 0, [_sP, _sO], [0, 0]];
|
|
1510
|
+
var SearchCasesRequest = [
|
|
1511
|
+
3,
|
|
1512
|
+
n0,
|
|
1513
|
+
_SCR,
|
|
1514
|
+
0,
|
|
1515
|
+
[_dI, _mR, _nT, _sT, _fil, _so, _f],
|
|
1516
|
+
[[0, 1], 1, 0, 0, () => CaseFilter, () => SortList, () => FieldIdentifierList],
|
|
1517
|
+
];
|
|
1518
|
+
var SearchCasesResponse = [
|
|
1519
|
+
3,
|
|
1520
|
+
n0,
|
|
1521
|
+
_SCRe,
|
|
1522
|
+
0,
|
|
1523
|
+
[_nT, _ca],
|
|
1524
|
+
[0, [() => SearchCasesResponseItemList, 0]],
|
|
1525
|
+
];
|
|
1526
|
+
var SearchCasesResponseItem = [
|
|
1527
|
+
3,
|
|
1528
|
+
n0,
|
|
1529
|
+
_SCRI,
|
|
1530
|
+
0,
|
|
1531
|
+
[_cI, _tI, _f, _ta],
|
|
1532
|
+
[0, 0, () => FieldValueList, [() => Tags, 0]],
|
|
1533
|
+
];
|
|
1534
|
+
var SearchRelatedItemsRequest = [
|
|
1535
|
+
3,
|
|
1536
|
+
n0,
|
|
1537
|
+
_SRIR,
|
|
1538
|
+
0,
|
|
1539
|
+
[_dI, _cI, _mR, _nT, _fi],
|
|
1540
|
+
[[0, 1], [0, 1], 1, 0, [() => RelatedItemFilterList, 0]],
|
|
1541
|
+
];
|
|
1542
|
+
var SearchRelatedItemsResponse = [
|
|
1543
|
+
3,
|
|
1544
|
+
n0,
|
|
1545
|
+
_SRIRe,
|
|
1546
|
+
0,
|
|
1547
|
+
[_nT, _rIe],
|
|
1548
|
+
[0, [() => SearchRelatedItemsResponseItemList, 0]],
|
|
1549
|
+
];
|
|
1550
|
+
var SearchRelatedItemsResponseItem = [
|
|
1551
|
+
3,
|
|
1552
|
+
n0,
|
|
1553
|
+
_SRIRI,
|
|
1554
|
+
0,
|
|
1555
|
+
[_rII, _t, _aT, _co, _ta, _pB],
|
|
1556
|
+
[0, 0, 5, [() => RelatedItemContent, 0], [() => Tags, 0], [() => UserUnion, 0]],
|
|
1557
|
+
];
|
|
1558
|
+
var ServiceQuotaExceededException = [
|
|
1559
|
+
-3,
|
|
1560
|
+
n0,
|
|
1561
|
+
_SQEE,
|
|
1562
|
+
{
|
|
1563
|
+
[_e]: _c,
|
|
1564
|
+
[_hE]: 402,
|
|
1565
|
+
},
|
|
1566
|
+
[_m],
|
|
1567
|
+
[0],
|
|
1568
|
+
];
|
|
1569
|
+
schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException, ServiceQuotaExceededException$1);
|
|
1570
|
+
var SlaConfiguration = [
|
|
1571
|
+
3,
|
|
1572
|
+
n0,
|
|
1573
|
+
_SC,
|
|
1574
|
+
0,
|
|
1575
|
+
[_n, _t, _s, _fI, _tFV, _tT, _cTo],
|
|
1576
|
+
[[() => SlaName, 0], 0, 0, 0, () => SlaFieldValueUnionList, 5, 5],
|
|
1577
|
+
];
|
|
1578
|
+
var SlaContent = [3, n0, _SCl, 0, [_sC], [[() => SlaConfiguration, 0]]];
|
|
1579
|
+
var SlaFilter = [3, n0, _SF, 0, [_n, _s], [[() => SlaName, 0], 0]];
|
|
1580
|
+
var SlaInputConfiguration = [
|
|
1581
|
+
3,
|
|
1582
|
+
n0,
|
|
1583
|
+
_SIC,
|
|
1584
|
+
0,
|
|
1585
|
+
[_n, _t, _fI, _tFV, _tSM],
|
|
1586
|
+
[[() => SlaName, 0], 0, 0, () => SlaFieldValueUnionList, 1],
|
|
1587
|
+
];
|
|
1588
|
+
var Sort = [3, n0, _S, 0, [_fI, _sO], [0, 0]];
|
|
1589
|
+
var TagResourceRequest = [
|
|
1590
|
+
3,
|
|
1591
|
+
n0,
|
|
1592
|
+
_TRR,
|
|
1593
|
+
0,
|
|
1594
|
+
[_ar, _ta],
|
|
1595
|
+
[
|
|
1596
|
+
[0, 1],
|
|
1597
|
+
[() => Tags, 0],
|
|
1598
|
+
],
|
|
1599
|
+
];
|
|
1600
|
+
var TemplateRule = [3, n0, _TR, 0, [_cRI, _fI], [0, 0]];
|
|
1601
|
+
var TemplateSummary = [3, n0, _TS, 0, [_tI, _tA, _n, _s], [0, 0, 0, 0]];
|
|
1602
|
+
var ThrottlingException = [
|
|
1603
|
+
-3,
|
|
1604
|
+
n0,
|
|
1605
|
+
_TE,
|
|
1606
|
+
{
|
|
1607
|
+
[_e]: _c,
|
|
1608
|
+
[_hE]: 429,
|
|
1609
|
+
},
|
|
1610
|
+
[_m],
|
|
1611
|
+
[0],
|
|
1612
|
+
];
|
|
1613
|
+
schema.TypeRegistry.for(n0).registerError(ThrottlingException, ThrottlingException$1);
|
|
1614
|
+
var UntagResourceRequest = [
|
|
1615
|
+
3,
|
|
1616
|
+
n0,
|
|
1617
|
+
_URR,
|
|
1618
|
+
0,
|
|
1619
|
+
[_ar, _tK],
|
|
1620
|
+
[
|
|
1621
|
+
[0, 1],
|
|
1622
|
+
[
|
|
1623
|
+
64 | 0,
|
|
1624
|
+
{
|
|
1625
|
+
[_hQ]: _tK,
|
|
1626
|
+
},
|
|
1627
|
+
],
|
|
1628
|
+
],
|
|
1629
|
+
];
|
|
1630
|
+
var UpdateCaseRequest = [
|
|
1631
|
+
3,
|
|
1632
|
+
n0,
|
|
1633
|
+
_UCR,
|
|
1634
|
+
0,
|
|
1635
|
+
[_dI, _cI, _f, _pB],
|
|
1636
|
+
[[0, 1], [0, 1], () => FieldValueList, [() => UserUnion, 0]],
|
|
1637
|
+
];
|
|
1638
|
+
var UpdateCaseResponse = [3, n0, _UCRp, 0, [], []];
|
|
1639
|
+
var UpdateCaseRuleRequest = [
|
|
1640
|
+
3,
|
|
1641
|
+
n0,
|
|
1642
|
+
_UCRR,
|
|
1643
|
+
0,
|
|
1644
|
+
[_dI, _cRI, _n, _d, _ru],
|
|
1645
|
+
[[0, 1], [0, 1], 0, 0, () => CaseRuleDetails],
|
|
1646
|
+
];
|
|
1647
|
+
var UpdateCaseRuleResponse = [3, n0, _UCRRp, 0, [], []];
|
|
1648
|
+
var UpdateFieldRequest = [3, n0, _UFR, 0, [_dI, _fI, _n, _d], [[0, 1], [0, 1], 0, 0]];
|
|
1649
|
+
var UpdateFieldResponse = [3, n0, _UFRp, 0, [], []];
|
|
1650
|
+
var UpdateLayoutRequest = [
|
|
1651
|
+
3,
|
|
1652
|
+
n0,
|
|
1653
|
+
_ULR,
|
|
1654
|
+
0,
|
|
1655
|
+
[_dI, _lI, _n, _co],
|
|
1656
|
+
[[0, 1], [0, 1], 0, () => LayoutContent],
|
|
1657
|
+
];
|
|
1658
|
+
var UpdateLayoutResponse = [3, n0, _ULRp, 0, [], []];
|
|
1659
|
+
var UpdateTemplateRequest = [
|
|
1660
|
+
3,
|
|
1661
|
+
n0,
|
|
1662
|
+
_UTR,
|
|
1663
|
+
0,
|
|
1664
|
+
[_dI, _tI, _n, _d, _lC, _rF, _s, _rul],
|
|
1665
|
+
[[0, 1], [0, 1], 0, 0, () => LayoutConfiguration, () => RequiredFieldList, 0, () => TemplateCaseRuleList],
|
|
1666
|
+
];
|
|
1667
|
+
var UpdateTemplateResponse = [3, n0, _UTRp, 0, [], []];
|
|
1668
|
+
var ValidationException = [
|
|
1669
|
+
-3,
|
|
1670
|
+
n0,
|
|
1671
|
+
_VE,
|
|
1672
|
+
{
|
|
1673
|
+
[_e]: _c,
|
|
1674
|
+
[_hE]: 400,
|
|
1675
|
+
},
|
|
1676
|
+
[_m],
|
|
1677
|
+
[0],
|
|
1678
|
+
];
|
|
1679
|
+
schema.TypeRegistry.for(n0).registerError(ValidationException, ValidationException$1);
|
|
1680
|
+
var __Unit = "unit";
|
|
1681
|
+
var ConnectCasesServiceException = [-3, _sm, "ConnectCasesServiceException", 0, [], []];
|
|
1682
|
+
schema.TypeRegistry.for(_sm).registerError(ConnectCasesServiceException, ConnectCasesServiceException$1);
|
|
1683
|
+
var AuditEventFieldList = [
|
|
1684
|
+
1,
|
|
1685
|
+
n0,
|
|
1686
|
+
_AEFL,
|
|
1687
|
+
{
|
|
1688
|
+
[_sp]: 1,
|
|
1689
|
+
},
|
|
1690
|
+
() => AuditEventField,
|
|
1691
|
+
];
|
|
1692
|
+
var AuditEventsList = [
|
|
1693
|
+
1,
|
|
1694
|
+
n0,
|
|
1695
|
+
_AEL,
|
|
1696
|
+
{
|
|
1697
|
+
[_sp]: 1,
|
|
1698
|
+
},
|
|
1699
|
+
[() => AuditEvent, 0],
|
|
1700
|
+
];
|
|
1701
|
+
var BatchGetCaseRuleErrorList = [1, n0, _BGCREL, 0, () => CaseRuleError];
|
|
1702
|
+
var BatchGetCaseRuleList = [1, n0, _BGCRL, 0, [() => GetCaseRuleResponse, 0]];
|
|
1703
|
+
var BatchGetFieldErrorList = [1, n0, _BGFEL, 0, () => FieldError];
|
|
1704
|
+
var BatchGetFieldIdentifierList = [1, n0, _BGFIL, 0, () => FieldIdentifier];
|
|
1705
|
+
var BatchGetFieldList = [1, n0, _BGFL, 0, [() => GetFieldResponse, 0]];
|
|
1706
|
+
var BooleanConditionList = [1, n0, _BCL, 0, () => BooleanCondition];
|
|
1707
|
+
var CaseFilterList = [1, n0, _CFL, 0, () => CaseFilter];
|
|
1708
|
+
var CaseRuleIdentifierList = [1, n0, _CRIL, 0, () => CaseRuleIdentifier];
|
|
1709
|
+
var CaseRuleSummaryList = [1, n0, _CRSL, 0, () => CaseRuleSummary];
|
|
1710
|
+
var CaseSummaryList = [1, n0, _CSL, 0, () => CaseSummary];
|
|
1711
|
+
var CustomFieldsFilterList = [1, n0, _CFFL, 0, () => CustomFieldsFilter];
|
|
1712
|
+
var DomainSummaryList = [1, n0, _DSL, 0, () => DomainSummary];
|
|
1713
|
+
var FieldIdentifierList = [1, n0, _FIL, 0, () => FieldIdentifier];
|
|
1714
|
+
var FieldList = [1, n0, _FL, 0, () => FieldItem];
|
|
1715
|
+
var FieldOptionErrorList = [1, n0, _FOEL, 0, () => FieldOptionError];
|
|
1716
|
+
var FieldOptionsList = [1, n0, _FOL, 0, () => FieldOption];
|
|
1717
|
+
var FieldSummaryList = [1, n0, _FSL, 0, () => FieldSummary];
|
|
1718
|
+
var FieldValueList = [1, n0, _FVL, 0, () => FieldValue];
|
|
1719
|
+
var LayoutSummaryList = [1, n0, _LSL, 0, () => LayoutSummary];
|
|
1720
|
+
var ParentChildFieldOptionsMappingList = [
|
|
1721
|
+
1,
|
|
1722
|
+
n0,
|
|
1723
|
+
_PCFOML,
|
|
1724
|
+
0,
|
|
1725
|
+
() => ParentChildFieldOptionsMapping,
|
|
1726
|
+
];
|
|
1727
|
+
var RelatedItemFilterList = [1, n0, _RIFL, 0, [() => RelatedItemTypeFilter, 0]];
|
|
1728
|
+
var RequiredFieldList = [1, n0, _RFL, 0, () => RequiredField];
|
|
1729
|
+
var SearchAllRelatedItemsResponseItemList = [
|
|
1730
|
+
1,
|
|
1731
|
+
n0,
|
|
1732
|
+
_SARIRIL,
|
|
1733
|
+
{
|
|
1734
|
+
[_sp]: 1,
|
|
1735
|
+
},
|
|
1736
|
+
[() => SearchAllRelatedItemsResponseItem, 0],
|
|
1737
|
+
];
|
|
1738
|
+
var SearchAllRelatedItemsSortList = [1, n0, _SARISL, 0, () => SearchAllRelatedItemsSort];
|
|
1739
|
+
var SearchCasesResponseItemList = [
|
|
1740
|
+
1,
|
|
1741
|
+
n0,
|
|
1742
|
+
_SCRIL,
|
|
1743
|
+
{
|
|
1744
|
+
[_sp]: 1,
|
|
1745
|
+
},
|
|
1746
|
+
[() => SearchCasesResponseItem, 0],
|
|
1747
|
+
];
|
|
1748
|
+
var SearchRelatedItemsResponseItemList = [
|
|
1749
|
+
1,
|
|
1750
|
+
n0,
|
|
1751
|
+
_SRIRIL,
|
|
1752
|
+
{
|
|
1753
|
+
[_sp]: 1,
|
|
1754
|
+
},
|
|
1755
|
+
[() => SearchRelatedItemsResponseItem, 0],
|
|
1756
|
+
];
|
|
1757
|
+
var SectionsList = [1, n0, _SL, 0, () => Section];
|
|
1758
|
+
var SlaFieldValueUnionList = [1, n0, _SFVUL, 0, () => FieldValueUnion];
|
|
1759
|
+
var SortList = [1, n0, _SLo, 0, () => Sort];
|
|
1760
|
+
var TemplateCaseRuleList = [1, n0, _TCRL, 0, () => TemplateRule];
|
|
1761
|
+
var TemplateSummaryList = [1, n0, _TSL, 0, () => TemplateSummary];
|
|
1762
|
+
var Tags = [
|
|
1763
|
+
2,
|
|
1764
|
+
n0,
|
|
1765
|
+
_T,
|
|
1766
|
+
{
|
|
1767
|
+
[_sp]: 1,
|
|
1768
|
+
},
|
|
1769
|
+
0,
|
|
1770
|
+
0,
|
|
1771
|
+
];
|
|
1772
|
+
var AuditEventFieldValueUnion = [
|
|
1773
|
+
3,
|
|
1774
|
+
n0,
|
|
1775
|
+
_AEFVU,
|
|
1776
|
+
0,
|
|
1777
|
+
[_sV, _dVo, _bV, _eV, _uAV],
|
|
1778
|
+
[0, 1, 2, () => EmptyFieldValue, 0],
|
|
1779
|
+
];
|
|
1780
|
+
var BooleanCondition = [
|
|
1781
|
+
3,
|
|
1782
|
+
n0,
|
|
1783
|
+
_BC,
|
|
1784
|
+
0,
|
|
1785
|
+
[_eT, _nET],
|
|
1786
|
+
[() => BooleanOperands, () => BooleanOperands],
|
|
1787
|
+
];
|
|
1788
|
+
var CaseFilter = [
|
|
1789
|
+
3,
|
|
1790
|
+
n0,
|
|
1791
|
+
_CFa,
|
|
1792
|
+
0,
|
|
1793
|
+
[_fie, _no, _aA, _oA],
|
|
1794
|
+
[() => FieldFilter, () => CaseFilter, () => CaseFilterList, () => CaseFilterList],
|
|
1795
|
+
];
|
|
1796
|
+
var CaseRuleDetails = [
|
|
1797
|
+
3,
|
|
1798
|
+
n0,
|
|
1799
|
+
_CRD,
|
|
1800
|
+
0,
|
|
1801
|
+
[_re, _fO, _h],
|
|
1802
|
+
[() => RequiredCaseRule, () => FieldOptionsCaseRule, () => HiddenCaseRule],
|
|
1803
|
+
];
|
|
1804
|
+
var CustomFieldsFilter = [
|
|
1805
|
+
3,
|
|
1806
|
+
n0,
|
|
1807
|
+
_CFF,
|
|
1808
|
+
0,
|
|
1809
|
+
[_fie, _no, _aA, _oA],
|
|
1810
|
+
[() => FieldFilter, () => CustomFieldsFilter, () => CustomFieldsFilterList, () => CustomFieldsFilterList],
|
|
1811
|
+
];
|
|
1812
|
+
var FieldFilter = [
|
|
1813
|
+
3,
|
|
1814
|
+
n0,
|
|
1815
|
+
_FFi,
|
|
1816
|
+
0,
|
|
1817
|
+
[_eT, _cont, _gT, _gTOET, _lT, _lTOET],
|
|
1818
|
+
[() => FieldValue, () => FieldValue, () => FieldValue, () => FieldValue, () => FieldValue, () => FieldValue],
|
|
1819
|
+
];
|
|
1820
|
+
var FieldValueUnion = [
|
|
1821
|
+
3,
|
|
1822
|
+
n0,
|
|
1823
|
+
_FVU,
|
|
1824
|
+
0,
|
|
1825
|
+
[_sV, _dVo, _bV, _eV, _uAV],
|
|
1826
|
+
[0, 1, 2, () => EmptyFieldValue, 0],
|
|
1827
|
+
];
|
|
1828
|
+
var LayoutContent = [3, n0, _LCa, 0, [_ba], [() => BasicLayout]];
|
|
1829
|
+
var OperandOne = [3, n0, _OO, 0, [_fI], [0]];
|
|
1830
|
+
var OperandTwo = [
|
|
1831
|
+
3,
|
|
1832
|
+
n0,
|
|
1833
|
+
_OT,
|
|
1834
|
+
0,
|
|
1835
|
+
[_sV, _bV, _dVo, _eV],
|
|
1836
|
+
[0, 2, 1, () => EmptyOperandValue],
|
|
1837
|
+
];
|
|
1838
|
+
var RelatedItemContent = [
|
|
1839
|
+
3,
|
|
1840
|
+
n0,
|
|
1841
|
+
_RIC,
|
|
1842
|
+
0,
|
|
1843
|
+
[_conta, _com, _file, _sl, _cC, _cu],
|
|
1844
|
+
[
|
|
1845
|
+
() => ContactContent,
|
|
1846
|
+
() => CommentContent,
|
|
1847
|
+
() => FileContent,
|
|
1848
|
+
[() => SlaContent, 0],
|
|
1849
|
+
() => ConnectCaseContent,
|
|
1850
|
+
() => CustomContent,
|
|
1851
|
+
],
|
|
1852
|
+
];
|
|
1853
|
+
var RelatedItemInputContent = [
|
|
1854
|
+
3,
|
|
1855
|
+
n0,
|
|
1856
|
+
_RIIC,
|
|
1857
|
+
0,
|
|
1858
|
+
[_conta, _com, _file, _sl, _cC, _cu],
|
|
1859
|
+
[
|
|
1860
|
+
() => Contact,
|
|
1861
|
+
() => CommentContent,
|
|
1862
|
+
() => FileContent,
|
|
1863
|
+
[() => SlaInputContent, 0],
|
|
1864
|
+
() => ConnectCaseInputContent,
|
|
1865
|
+
() => CustomInputContent,
|
|
1866
|
+
],
|
|
1867
|
+
];
|
|
1868
|
+
var RelatedItemTypeFilter = [
|
|
1869
|
+
3,
|
|
1870
|
+
n0,
|
|
1871
|
+
_RITF,
|
|
1872
|
+
0,
|
|
1873
|
+
[_conta, _com, _file, _sl, _cC, _cu],
|
|
1874
|
+
[
|
|
1875
|
+
() => ContactFilter,
|
|
1876
|
+
() => CommentFilter,
|
|
1877
|
+
() => FileFilter,
|
|
1878
|
+
[() => SlaFilter, 0],
|
|
1879
|
+
() => ConnectCaseFilter,
|
|
1880
|
+
() => CustomFilter,
|
|
1881
|
+
],
|
|
1882
|
+
];
|
|
1883
|
+
var Section = [3, n0, _Se, 0, [_fG], [() => FieldGroup]];
|
|
1884
|
+
var SlaInputContent = [3, n0, _SICl, 0, [_sIC], [[() => SlaInputConfiguration, 0]]];
|
|
1885
|
+
var UserUnion = [3, n0, _UU, 0, [_uA, _cE], [0, [() => CustomEntity, 0]]];
|
|
1886
|
+
var BatchGetCaseRule = [
|
|
1887
|
+
9,
|
|
1888
|
+
n0,
|
|
1889
|
+
_BGCR,
|
|
1890
|
+
{
|
|
1891
|
+
[_ht]: ["POST", "/domains/{domainId}/rules-batch", 200],
|
|
1892
|
+
},
|
|
1893
|
+
() => BatchGetCaseRuleRequest,
|
|
1894
|
+
() => BatchGetCaseRuleResponse,
|
|
1895
|
+
];
|
|
1896
|
+
var BatchGetField = [
|
|
1897
|
+
9,
|
|
1898
|
+
n0,
|
|
1899
|
+
_BGF,
|
|
1900
|
+
{
|
|
1901
|
+
[_ht]: ["POST", "/domains/{domainId}/fields-batch", 200],
|
|
1902
|
+
},
|
|
1903
|
+
() => BatchGetFieldRequest,
|
|
1904
|
+
() => BatchGetFieldResponse,
|
|
1905
|
+
];
|
|
1906
|
+
var BatchPutFieldOptions = [
|
|
1907
|
+
9,
|
|
1908
|
+
n0,
|
|
1909
|
+
_BPFO,
|
|
1910
|
+
{
|
|
1911
|
+
[_ht]: ["PUT", "/domains/{domainId}/fields/{fieldId}/options", 200],
|
|
1912
|
+
},
|
|
1913
|
+
() => BatchPutFieldOptionsRequest,
|
|
1914
|
+
() => BatchPutFieldOptionsResponse,
|
|
1915
|
+
];
|
|
1916
|
+
var CreateCase = [
|
|
1917
|
+
9,
|
|
1918
|
+
n0,
|
|
1919
|
+
_CCr,
|
|
1920
|
+
{
|
|
1921
|
+
[_ht]: ["POST", "/domains/{domainId}/cases", 200],
|
|
1922
|
+
},
|
|
1923
|
+
() => CreateCaseRequest,
|
|
1924
|
+
() => CreateCaseResponse,
|
|
1925
|
+
];
|
|
1926
|
+
var CreateCaseRule = [
|
|
1927
|
+
9,
|
|
1928
|
+
n0,
|
|
1929
|
+
_CCRre,
|
|
1930
|
+
{
|
|
1931
|
+
[_ht]: ["POST", "/domains/{domainId}/case-rules", 200],
|
|
1932
|
+
},
|
|
1933
|
+
() => CreateCaseRuleRequest,
|
|
1934
|
+
() => CreateCaseRuleResponse,
|
|
1935
|
+
];
|
|
1936
|
+
var CreateDomain = [
|
|
1937
|
+
9,
|
|
1938
|
+
n0,
|
|
1939
|
+
_CD,
|
|
1940
|
+
{
|
|
1941
|
+
[_ht]: ["POST", "/domains", 200],
|
|
1942
|
+
},
|
|
1943
|
+
() => CreateDomainRequest,
|
|
1944
|
+
() => CreateDomainResponse,
|
|
1945
|
+
];
|
|
1946
|
+
var CreateField = [
|
|
1947
|
+
9,
|
|
1948
|
+
n0,
|
|
1949
|
+
_CFr,
|
|
1950
|
+
{
|
|
1951
|
+
[_ht]: ["POST", "/domains/{domainId}/fields", 200],
|
|
1952
|
+
},
|
|
1953
|
+
() => CreateFieldRequest,
|
|
1954
|
+
() => CreateFieldResponse,
|
|
1955
|
+
];
|
|
1956
|
+
var CreateLayout = [
|
|
1957
|
+
9,
|
|
1958
|
+
n0,
|
|
1959
|
+
_CL,
|
|
1960
|
+
{
|
|
1961
|
+
[_ht]: ["POST", "/domains/{domainId}/layouts", 200],
|
|
1962
|
+
},
|
|
1963
|
+
() => CreateLayoutRequest,
|
|
1964
|
+
() => CreateLayoutResponse,
|
|
1965
|
+
];
|
|
1966
|
+
var CreateRelatedItem = [
|
|
1967
|
+
9,
|
|
1968
|
+
n0,
|
|
1969
|
+
_CRIr,
|
|
1970
|
+
{
|
|
1971
|
+
[_ht]: ["POST", "/domains/{domainId}/cases/{caseId}/related-items/", 200],
|
|
1972
|
+
},
|
|
1973
|
+
() => CreateRelatedItemRequest,
|
|
1974
|
+
() => CreateRelatedItemResponse,
|
|
1975
|
+
];
|
|
1976
|
+
var CreateTemplate = [
|
|
1977
|
+
9,
|
|
1978
|
+
n0,
|
|
1979
|
+
_CT,
|
|
1980
|
+
{
|
|
1981
|
+
[_ht]: ["POST", "/domains/{domainId}/templates", 200],
|
|
1982
|
+
},
|
|
1983
|
+
() => CreateTemplateRequest,
|
|
1984
|
+
() => CreateTemplateResponse,
|
|
1985
|
+
];
|
|
1986
|
+
var DeleteCase = [
|
|
1987
|
+
9,
|
|
1988
|
+
n0,
|
|
1989
|
+
_DC,
|
|
1990
|
+
{
|
|
1991
|
+
[_ht]: ["DELETE", "/domains/{domainId}/cases/{caseId}", 200],
|
|
1992
|
+
},
|
|
1993
|
+
() => DeleteCaseRequest,
|
|
1994
|
+
() => DeleteCaseResponse,
|
|
1995
|
+
];
|
|
1996
|
+
var DeleteCaseRule = [
|
|
1997
|
+
9,
|
|
1998
|
+
n0,
|
|
1999
|
+
_DCRel,
|
|
2000
|
+
{
|
|
2001
|
+
[_ht]: ["DELETE", "/domains/{domainId}/case-rules/{caseRuleId}", 200],
|
|
2002
|
+
},
|
|
2003
|
+
() => DeleteCaseRuleRequest,
|
|
2004
|
+
() => DeleteCaseRuleResponse,
|
|
2005
|
+
];
|
|
2006
|
+
var DeleteDomain = [
|
|
2007
|
+
9,
|
|
2008
|
+
n0,
|
|
2009
|
+
_DD,
|
|
2010
|
+
{
|
|
2011
|
+
[_ht]: ["DELETE", "/domains/{domainId}", 200],
|
|
2012
|
+
},
|
|
2013
|
+
() => DeleteDomainRequest,
|
|
2014
|
+
() => DeleteDomainResponse,
|
|
2015
|
+
];
|
|
2016
|
+
var DeleteField = [
|
|
2017
|
+
9,
|
|
2018
|
+
n0,
|
|
2019
|
+
_DF,
|
|
2020
|
+
{
|
|
2021
|
+
[_ht]: ["DELETE", "/domains/{domainId}/fields/{fieldId}", 200],
|
|
2022
|
+
},
|
|
2023
|
+
() => DeleteFieldRequest,
|
|
2024
|
+
() => DeleteFieldResponse,
|
|
2025
|
+
];
|
|
2026
|
+
var DeleteLayout = [
|
|
2027
|
+
9,
|
|
2028
|
+
n0,
|
|
2029
|
+
_DL,
|
|
2030
|
+
{
|
|
2031
|
+
[_ht]: ["DELETE", "/domains/{domainId}/layouts/{layoutId}", 200],
|
|
2032
|
+
},
|
|
2033
|
+
() => DeleteLayoutRequest,
|
|
2034
|
+
() => DeleteLayoutResponse,
|
|
2035
|
+
];
|
|
2036
|
+
var DeleteRelatedItem = [
|
|
2037
|
+
9,
|
|
2038
|
+
n0,
|
|
2039
|
+
_DRI,
|
|
2040
|
+
{
|
|
2041
|
+
[_ht]: ["DELETE", "/domains/{domainId}/cases/{caseId}/related-items/{relatedItemId}", 200],
|
|
2042
|
+
},
|
|
2043
|
+
() => DeleteRelatedItemRequest,
|
|
2044
|
+
() => DeleteRelatedItemResponse,
|
|
2045
|
+
];
|
|
2046
|
+
var DeleteTemplate = [
|
|
2047
|
+
9,
|
|
2048
|
+
n0,
|
|
2049
|
+
_DT,
|
|
2050
|
+
{
|
|
2051
|
+
[_ht]: ["DELETE", "/domains/{domainId}/templates/{templateId}", 200],
|
|
2052
|
+
},
|
|
2053
|
+
() => DeleteTemplateRequest,
|
|
2054
|
+
() => DeleteTemplateResponse,
|
|
2055
|
+
];
|
|
2056
|
+
var GetCase = [
|
|
2057
|
+
9,
|
|
2058
|
+
n0,
|
|
2059
|
+
_GC,
|
|
2060
|
+
{
|
|
2061
|
+
[_ht]: ["POST", "/domains/{domainId}/cases/{caseId}", 200],
|
|
2062
|
+
},
|
|
2063
|
+
() => GetCaseRequest,
|
|
2064
|
+
() => GetCaseResponse,
|
|
2065
|
+
];
|
|
2066
|
+
var GetCaseAuditEvents = [
|
|
2067
|
+
9,
|
|
2068
|
+
n0,
|
|
2069
|
+
_GCAE,
|
|
2070
|
+
{
|
|
2071
|
+
[_ht]: ["POST", "/domains/{domainId}/cases/{caseId}/audit-history", 200],
|
|
2072
|
+
},
|
|
2073
|
+
() => GetCaseAuditEventsRequest,
|
|
2074
|
+
() => GetCaseAuditEventsResponse,
|
|
2075
|
+
];
|
|
2076
|
+
var GetCaseEventConfiguration = [
|
|
2077
|
+
9,
|
|
2078
|
+
n0,
|
|
2079
|
+
_GCEC,
|
|
2080
|
+
{
|
|
2081
|
+
[_ht]: ["POST", "/domains/{domainId}/case-event-configuration", 200],
|
|
2082
|
+
},
|
|
2083
|
+
() => GetCaseEventConfigurationRequest,
|
|
2084
|
+
() => GetCaseEventConfigurationResponse,
|
|
2085
|
+
];
|
|
2086
|
+
var GetDomain = [
|
|
2087
|
+
9,
|
|
2088
|
+
n0,
|
|
2089
|
+
_GD,
|
|
2090
|
+
{
|
|
2091
|
+
[_ht]: ["POST", "/domains/{domainId}", 200],
|
|
2092
|
+
},
|
|
2093
|
+
() => GetDomainRequest,
|
|
2094
|
+
() => GetDomainResponse,
|
|
2095
|
+
];
|
|
2096
|
+
var GetLayout = [
|
|
2097
|
+
9,
|
|
2098
|
+
n0,
|
|
2099
|
+
_GL,
|
|
2100
|
+
{
|
|
2101
|
+
[_ht]: ["POST", "/domains/{domainId}/layouts/{layoutId}", 200],
|
|
2102
|
+
},
|
|
2103
|
+
() => GetLayoutRequest,
|
|
2104
|
+
() => GetLayoutResponse,
|
|
2105
|
+
];
|
|
2106
|
+
var GetTemplate = [
|
|
2107
|
+
9,
|
|
2108
|
+
n0,
|
|
2109
|
+
_GT,
|
|
2110
|
+
{
|
|
2111
|
+
[_ht]: ["POST", "/domains/{domainId}/templates/{templateId}", 200],
|
|
2112
|
+
},
|
|
2113
|
+
() => GetTemplateRequest,
|
|
2114
|
+
() => GetTemplateResponse,
|
|
2115
|
+
];
|
|
2116
|
+
var ListCaseRules = [
|
|
2117
|
+
9,
|
|
2118
|
+
n0,
|
|
2119
|
+
_LCR,
|
|
2120
|
+
{
|
|
2121
|
+
[_ht]: ["POST", "/domains/{domainId}/rules-list/", 200],
|
|
2122
|
+
},
|
|
2123
|
+
() => ListCaseRulesRequest,
|
|
2124
|
+
() => ListCaseRulesResponse,
|
|
2125
|
+
];
|
|
2126
|
+
var ListCasesForContact = [
|
|
2127
|
+
9,
|
|
2128
|
+
n0,
|
|
2129
|
+
_LCFC,
|
|
2130
|
+
{
|
|
2131
|
+
[_ht]: ["POST", "/domains/{domainId}/list-cases-for-contact", 200],
|
|
2132
|
+
},
|
|
2133
|
+
() => ListCasesForContactRequest,
|
|
2134
|
+
() => ListCasesForContactResponse,
|
|
2135
|
+
];
|
|
2136
|
+
var ListDomains = [
|
|
2137
|
+
9,
|
|
2138
|
+
n0,
|
|
2139
|
+
_LD,
|
|
2140
|
+
{
|
|
2141
|
+
[_ht]: ["POST", "/domains-list", 200],
|
|
2142
|
+
},
|
|
2143
|
+
() => ListDomainsRequest,
|
|
2144
|
+
() => ListDomainsResponse,
|
|
2145
|
+
];
|
|
2146
|
+
var ListFieldOptions = [
|
|
2147
|
+
9,
|
|
2148
|
+
n0,
|
|
2149
|
+
_LFO,
|
|
2150
|
+
{
|
|
2151
|
+
[_ht]: ["POST", "/domains/{domainId}/fields/{fieldId}/options-list", 200],
|
|
2152
|
+
},
|
|
2153
|
+
() => ListFieldOptionsRequest,
|
|
2154
|
+
() => ListFieldOptionsResponse,
|
|
2155
|
+
];
|
|
2156
|
+
var ListFields = [
|
|
2157
|
+
9,
|
|
2158
|
+
n0,
|
|
2159
|
+
_LF,
|
|
2160
|
+
{
|
|
2161
|
+
[_ht]: ["POST", "/domains/{domainId}/fields-list", 200],
|
|
2162
|
+
},
|
|
2163
|
+
() => ListFieldsRequest,
|
|
2164
|
+
() => ListFieldsResponse,
|
|
2165
|
+
];
|
|
2166
|
+
var ListLayouts = [
|
|
2167
|
+
9,
|
|
2168
|
+
n0,
|
|
2169
|
+
_LL,
|
|
2170
|
+
{
|
|
2171
|
+
[_ht]: ["POST", "/domains/{domainId}/layouts-list", 200],
|
|
2172
|
+
},
|
|
2173
|
+
() => ListLayoutsRequest,
|
|
2174
|
+
() => ListLayoutsResponse,
|
|
2175
|
+
];
|
|
2176
|
+
var ListTagsForResource = [
|
|
2177
|
+
9,
|
|
2178
|
+
n0,
|
|
2179
|
+
_LTFR,
|
|
2180
|
+
{
|
|
2181
|
+
[_ht]: ["GET", "/tags/{arn}", 200],
|
|
2182
|
+
},
|
|
2183
|
+
() => ListTagsForResourceRequest,
|
|
2184
|
+
() => ListTagsForResourceResponse,
|
|
2185
|
+
];
|
|
2186
|
+
var ListTemplates = [
|
|
2187
|
+
9,
|
|
2188
|
+
n0,
|
|
2189
|
+
_LT,
|
|
2190
|
+
{
|
|
2191
|
+
[_ht]: ["POST", "/domains/{domainId}/templates-list", 200],
|
|
2192
|
+
},
|
|
2193
|
+
() => ListTemplatesRequest,
|
|
2194
|
+
() => ListTemplatesResponse,
|
|
2195
|
+
];
|
|
2196
|
+
var PutCaseEventConfiguration = [
|
|
2197
|
+
9,
|
|
2198
|
+
n0,
|
|
2199
|
+
_PCEC,
|
|
2200
|
+
{
|
|
2201
|
+
[_ht]: ["PUT", "/domains/{domainId}/case-event-configuration", 200],
|
|
2202
|
+
},
|
|
2203
|
+
() => PutCaseEventConfigurationRequest,
|
|
2204
|
+
() => PutCaseEventConfigurationResponse,
|
|
2205
|
+
];
|
|
2206
|
+
var SearchAllRelatedItems = [
|
|
2207
|
+
9,
|
|
2208
|
+
n0,
|
|
2209
|
+
_SARI,
|
|
2210
|
+
{
|
|
2211
|
+
[_ht]: ["POST", "/domains/{domainId}/related-items-search", 200],
|
|
2212
|
+
},
|
|
2213
|
+
() => SearchAllRelatedItemsRequest,
|
|
2214
|
+
() => SearchAllRelatedItemsResponse,
|
|
2215
|
+
];
|
|
2216
|
+
var SearchCases = [
|
|
2217
|
+
9,
|
|
2218
|
+
n0,
|
|
2219
|
+
_SCe,
|
|
2220
|
+
{
|
|
2221
|
+
[_ht]: ["POST", "/domains/{domainId}/cases-search", 200],
|
|
2222
|
+
},
|
|
2223
|
+
() => SearchCasesRequest,
|
|
2224
|
+
() => SearchCasesResponse,
|
|
2225
|
+
];
|
|
2226
|
+
var SearchRelatedItems = [
|
|
2227
|
+
9,
|
|
2228
|
+
n0,
|
|
2229
|
+
_SRI,
|
|
2230
|
+
{
|
|
2231
|
+
[_ht]: ["POST", "/domains/{domainId}/cases/{caseId}/related-items-search", 200],
|
|
2232
|
+
},
|
|
2233
|
+
() => SearchRelatedItemsRequest,
|
|
2234
|
+
() => SearchRelatedItemsResponse,
|
|
2235
|
+
];
|
|
2236
|
+
var TagResource = [
|
|
2237
|
+
9,
|
|
2238
|
+
n0,
|
|
2239
|
+
_TRa,
|
|
2240
|
+
{
|
|
2241
|
+
[_ht]: ["POST", "/tags/{arn}", 200],
|
|
2242
|
+
},
|
|
2243
|
+
() => TagResourceRequest,
|
|
2244
|
+
() => __Unit,
|
|
2245
|
+
];
|
|
2246
|
+
var UntagResource = [
|
|
2247
|
+
9,
|
|
2248
|
+
n0,
|
|
2249
|
+
_UR,
|
|
2250
|
+
{
|
|
2251
|
+
[_ht]: ["DELETE", "/tags/{arn}", 200],
|
|
2252
|
+
},
|
|
2253
|
+
() => UntagResourceRequest,
|
|
2254
|
+
() => __Unit,
|
|
2255
|
+
];
|
|
2256
|
+
var UpdateCase = [
|
|
2257
|
+
9,
|
|
2258
|
+
n0,
|
|
2259
|
+
_UC,
|
|
2260
|
+
{
|
|
2261
|
+
[_ht]: ["PUT", "/domains/{domainId}/cases/{caseId}", 200],
|
|
2262
|
+
},
|
|
2263
|
+
() => UpdateCaseRequest,
|
|
2264
|
+
() => UpdateCaseResponse,
|
|
2265
|
+
];
|
|
2266
|
+
var UpdateCaseRule = [
|
|
2267
|
+
9,
|
|
2268
|
+
n0,
|
|
2269
|
+
_UCRpd,
|
|
2270
|
+
{
|
|
2271
|
+
[_ht]: ["PUT", "/domains/{domainId}/case-rules/{caseRuleId}", 200],
|
|
2272
|
+
},
|
|
2273
|
+
() => UpdateCaseRuleRequest,
|
|
2274
|
+
() => UpdateCaseRuleResponse,
|
|
2275
|
+
];
|
|
2276
|
+
var UpdateField = [
|
|
2277
|
+
9,
|
|
2278
|
+
n0,
|
|
2279
|
+
_UF,
|
|
2280
|
+
{
|
|
2281
|
+
[_ht]: ["PUT", "/domains/{domainId}/fields/{fieldId}", 200],
|
|
2282
|
+
},
|
|
2283
|
+
() => UpdateFieldRequest,
|
|
2284
|
+
() => UpdateFieldResponse,
|
|
2285
|
+
];
|
|
2286
|
+
var UpdateLayout = [
|
|
2287
|
+
9,
|
|
2288
|
+
n0,
|
|
2289
|
+
_UL,
|
|
2290
|
+
{
|
|
2291
|
+
[_ht]: ["PUT", "/domains/{domainId}/layouts/{layoutId}", 200],
|
|
2292
|
+
},
|
|
2293
|
+
() => UpdateLayoutRequest,
|
|
2294
|
+
() => UpdateLayoutResponse,
|
|
2295
|
+
];
|
|
2296
|
+
var UpdateTemplate = [
|
|
2297
|
+
9,
|
|
2298
|
+
n0,
|
|
2299
|
+
_UT,
|
|
2300
|
+
{
|
|
2301
|
+
[_ht]: ["PUT", "/domains/{domainId}/templates/{templateId}", 200],
|
|
2302
|
+
},
|
|
2303
|
+
() => UpdateTemplateRequest,
|
|
2304
|
+
() => UpdateTemplateResponse,
|
|
2305
|
+
];
|
|
2452
2306
|
|
|
2453
2307
|
class BatchGetCaseRuleCommand extends smithyClient.Command
|
|
2454
2308
|
.classBuilder()
|
|
2455
2309
|
.ep(commonParams)
|
|
2456
2310
|
.m(function (Command, cs, config, o) {
|
|
2457
|
-
return [
|
|
2458
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2459
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2460
|
-
];
|
|
2311
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2461
2312
|
})
|
|
2462
2313
|
.s("AmazonConnectCases", "BatchGetCaseRule", {})
|
|
2463
2314
|
.n("ConnectCasesClient", "BatchGetCaseRuleCommand")
|
|
2464
|
-
.
|
|
2465
|
-
.ser(se_BatchGetCaseRuleCommand)
|
|
2466
|
-
.de(de_BatchGetCaseRuleCommand)
|
|
2315
|
+
.sc(BatchGetCaseRule)
|
|
2467
2316
|
.build() {
|
|
2468
2317
|
}
|
|
2469
2318
|
|
|
@@ -2471,16 +2320,11 @@ class BatchGetFieldCommand extends smithyClient.Command
|
|
|
2471
2320
|
.classBuilder()
|
|
2472
2321
|
.ep(commonParams)
|
|
2473
2322
|
.m(function (Command, cs, config, o) {
|
|
2474
|
-
return [
|
|
2475
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2476
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2477
|
-
];
|
|
2323
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2478
2324
|
})
|
|
2479
2325
|
.s("AmazonConnectCases", "BatchGetField", {})
|
|
2480
2326
|
.n("ConnectCasesClient", "BatchGetFieldCommand")
|
|
2481
|
-
.
|
|
2482
|
-
.ser(se_BatchGetFieldCommand)
|
|
2483
|
-
.de(de_BatchGetFieldCommand)
|
|
2327
|
+
.sc(BatchGetField)
|
|
2484
2328
|
.build() {
|
|
2485
2329
|
}
|
|
2486
2330
|
|
|
@@ -2488,16 +2332,11 @@ class BatchPutFieldOptionsCommand extends smithyClient.Command
|
|
|
2488
2332
|
.classBuilder()
|
|
2489
2333
|
.ep(commonParams)
|
|
2490
2334
|
.m(function (Command, cs, config, o) {
|
|
2491
|
-
return [
|
|
2492
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2493
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2494
|
-
];
|
|
2335
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2495
2336
|
})
|
|
2496
2337
|
.s("AmazonConnectCases", "BatchPutFieldOptions", {})
|
|
2497
2338
|
.n("ConnectCasesClient", "BatchPutFieldOptionsCommand")
|
|
2498
|
-
.
|
|
2499
|
-
.ser(se_BatchPutFieldOptionsCommand)
|
|
2500
|
-
.de(de_BatchPutFieldOptionsCommand)
|
|
2339
|
+
.sc(BatchPutFieldOptions)
|
|
2501
2340
|
.build() {
|
|
2502
2341
|
}
|
|
2503
2342
|
|
|
@@ -2505,16 +2344,11 @@ class CreateCaseCommand extends smithyClient.Command
|
|
|
2505
2344
|
.classBuilder()
|
|
2506
2345
|
.ep(commonParams)
|
|
2507
2346
|
.m(function (Command, cs, config, o) {
|
|
2508
|
-
return [
|
|
2509
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2510
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2511
|
-
];
|
|
2347
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2512
2348
|
})
|
|
2513
2349
|
.s("AmazonConnectCases", "CreateCase", {})
|
|
2514
2350
|
.n("ConnectCasesClient", "CreateCaseCommand")
|
|
2515
|
-
.
|
|
2516
|
-
.ser(se_CreateCaseCommand)
|
|
2517
|
-
.de(de_CreateCaseCommand)
|
|
2351
|
+
.sc(CreateCase)
|
|
2518
2352
|
.build() {
|
|
2519
2353
|
}
|
|
2520
2354
|
|
|
@@ -2522,16 +2356,11 @@ class CreateCaseRuleCommand extends smithyClient.Command
|
|
|
2522
2356
|
.classBuilder()
|
|
2523
2357
|
.ep(commonParams)
|
|
2524
2358
|
.m(function (Command, cs, config, o) {
|
|
2525
|
-
return [
|
|
2526
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2527
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2528
|
-
];
|
|
2359
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2529
2360
|
})
|
|
2530
2361
|
.s("AmazonConnectCases", "CreateCaseRule", {})
|
|
2531
2362
|
.n("ConnectCasesClient", "CreateCaseRuleCommand")
|
|
2532
|
-
.
|
|
2533
|
-
.ser(se_CreateCaseRuleCommand)
|
|
2534
|
-
.de(de_CreateCaseRuleCommand)
|
|
2363
|
+
.sc(CreateCaseRule)
|
|
2535
2364
|
.build() {
|
|
2536
2365
|
}
|
|
2537
2366
|
|
|
@@ -2539,16 +2368,11 @@ class CreateDomainCommand extends smithyClient.Command
|
|
|
2539
2368
|
.classBuilder()
|
|
2540
2369
|
.ep(commonParams)
|
|
2541
2370
|
.m(function (Command, cs, config, o) {
|
|
2542
|
-
return [
|
|
2543
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2544
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2545
|
-
];
|
|
2371
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2546
2372
|
})
|
|
2547
2373
|
.s("AmazonConnectCases", "CreateDomain", {})
|
|
2548
2374
|
.n("ConnectCasesClient", "CreateDomainCommand")
|
|
2549
|
-
.
|
|
2550
|
-
.ser(se_CreateDomainCommand)
|
|
2551
|
-
.de(de_CreateDomainCommand)
|
|
2375
|
+
.sc(CreateDomain)
|
|
2552
2376
|
.build() {
|
|
2553
2377
|
}
|
|
2554
2378
|
|
|
@@ -2556,16 +2380,11 @@ class CreateFieldCommand extends smithyClient.Command
|
|
|
2556
2380
|
.classBuilder()
|
|
2557
2381
|
.ep(commonParams)
|
|
2558
2382
|
.m(function (Command, cs, config, o) {
|
|
2559
|
-
return [
|
|
2560
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2561
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2562
|
-
];
|
|
2383
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2563
2384
|
})
|
|
2564
2385
|
.s("AmazonConnectCases", "CreateField", {})
|
|
2565
2386
|
.n("ConnectCasesClient", "CreateFieldCommand")
|
|
2566
|
-
.
|
|
2567
|
-
.ser(se_CreateFieldCommand)
|
|
2568
|
-
.de(de_CreateFieldCommand)
|
|
2387
|
+
.sc(CreateField)
|
|
2569
2388
|
.build() {
|
|
2570
2389
|
}
|
|
2571
2390
|
|
|
@@ -2573,16 +2392,11 @@ class CreateLayoutCommand extends smithyClient.Command
|
|
|
2573
2392
|
.classBuilder()
|
|
2574
2393
|
.ep(commonParams)
|
|
2575
2394
|
.m(function (Command, cs, config, o) {
|
|
2576
|
-
return [
|
|
2577
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2578
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2579
|
-
];
|
|
2395
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2580
2396
|
})
|
|
2581
2397
|
.s("AmazonConnectCases", "CreateLayout", {})
|
|
2582
2398
|
.n("ConnectCasesClient", "CreateLayoutCommand")
|
|
2583
|
-
.
|
|
2584
|
-
.ser(se_CreateLayoutCommand)
|
|
2585
|
-
.de(de_CreateLayoutCommand)
|
|
2399
|
+
.sc(CreateLayout)
|
|
2586
2400
|
.build() {
|
|
2587
2401
|
}
|
|
2588
2402
|
|
|
@@ -2590,16 +2404,11 @@ class CreateRelatedItemCommand extends smithyClient.Command
|
|
|
2590
2404
|
.classBuilder()
|
|
2591
2405
|
.ep(commonParams)
|
|
2592
2406
|
.m(function (Command, cs, config, o) {
|
|
2593
|
-
return [
|
|
2594
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2595
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2596
|
-
];
|
|
2407
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2597
2408
|
})
|
|
2598
2409
|
.s("AmazonConnectCases", "CreateRelatedItem", {})
|
|
2599
2410
|
.n("ConnectCasesClient", "CreateRelatedItemCommand")
|
|
2600
|
-
.
|
|
2601
|
-
.ser(se_CreateRelatedItemCommand)
|
|
2602
|
-
.de(de_CreateRelatedItemCommand)
|
|
2411
|
+
.sc(CreateRelatedItem)
|
|
2603
2412
|
.build() {
|
|
2604
2413
|
}
|
|
2605
2414
|
|
|
@@ -2607,16 +2416,11 @@ class CreateTemplateCommand extends smithyClient.Command
|
|
|
2607
2416
|
.classBuilder()
|
|
2608
2417
|
.ep(commonParams)
|
|
2609
2418
|
.m(function (Command, cs, config, o) {
|
|
2610
|
-
return [
|
|
2611
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2612
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2613
|
-
];
|
|
2419
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2614
2420
|
})
|
|
2615
2421
|
.s("AmazonConnectCases", "CreateTemplate", {})
|
|
2616
2422
|
.n("ConnectCasesClient", "CreateTemplateCommand")
|
|
2617
|
-
.
|
|
2618
|
-
.ser(se_CreateTemplateCommand)
|
|
2619
|
-
.de(de_CreateTemplateCommand)
|
|
2423
|
+
.sc(CreateTemplate)
|
|
2620
2424
|
.build() {
|
|
2621
2425
|
}
|
|
2622
2426
|
|
|
@@ -2624,16 +2428,11 @@ class DeleteCaseCommand extends smithyClient.Command
|
|
|
2624
2428
|
.classBuilder()
|
|
2625
2429
|
.ep(commonParams)
|
|
2626
2430
|
.m(function (Command, cs, config, o) {
|
|
2627
|
-
return [
|
|
2628
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2629
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2630
|
-
];
|
|
2431
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2631
2432
|
})
|
|
2632
2433
|
.s("AmazonConnectCases", "DeleteCase", {})
|
|
2633
2434
|
.n("ConnectCasesClient", "DeleteCaseCommand")
|
|
2634
|
-
.
|
|
2635
|
-
.ser(se_DeleteCaseCommand)
|
|
2636
|
-
.de(de_DeleteCaseCommand)
|
|
2435
|
+
.sc(DeleteCase)
|
|
2637
2436
|
.build() {
|
|
2638
2437
|
}
|
|
2639
2438
|
|
|
@@ -2641,16 +2440,11 @@ class DeleteCaseRuleCommand extends smithyClient.Command
|
|
|
2641
2440
|
.classBuilder()
|
|
2642
2441
|
.ep(commonParams)
|
|
2643
2442
|
.m(function (Command, cs, config, o) {
|
|
2644
|
-
return [
|
|
2645
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2646
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2647
|
-
];
|
|
2443
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2648
2444
|
})
|
|
2649
2445
|
.s("AmazonConnectCases", "DeleteCaseRule", {})
|
|
2650
2446
|
.n("ConnectCasesClient", "DeleteCaseRuleCommand")
|
|
2651
|
-
.
|
|
2652
|
-
.ser(se_DeleteCaseRuleCommand)
|
|
2653
|
-
.de(de_DeleteCaseRuleCommand)
|
|
2447
|
+
.sc(DeleteCaseRule)
|
|
2654
2448
|
.build() {
|
|
2655
2449
|
}
|
|
2656
2450
|
|
|
@@ -2658,16 +2452,11 @@ class DeleteDomainCommand extends smithyClient.Command
|
|
|
2658
2452
|
.classBuilder()
|
|
2659
2453
|
.ep(commonParams)
|
|
2660
2454
|
.m(function (Command, cs, config, o) {
|
|
2661
|
-
return [
|
|
2662
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2663
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2664
|
-
];
|
|
2455
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2665
2456
|
})
|
|
2666
2457
|
.s("AmazonConnectCases", "DeleteDomain", {})
|
|
2667
2458
|
.n("ConnectCasesClient", "DeleteDomainCommand")
|
|
2668
|
-
.
|
|
2669
|
-
.ser(se_DeleteDomainCommand)
|
|
2670
|
-
.de(de_DeleteDomainCommand)
|
|
2459
|
+
.sc(DeleteDomain)
|
|
2671
2460
|
.build() {
|
|
2672
2461
|
}
|
|
2673
2462
|
|
|
@@ -2675,16 +2464,11 @@ class DeleteFieldCommand extends smithyClient.Command
|
|
|
2675
2464
|
.classBuilder()
|
|
2676
2465
|
.ep(commonParams)
|
|
2677
2466
|
.m(function (Command, cs, config, o) {
|
|
2678
|
-
return [
|
|
2679
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2680
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2681
|
-
];
|
|
2467
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2682
2468
|
})
|
|
2683
2469
|
.s("AmazonConnectCases", "DeleteField", {})
|
|
2684
2470
|
.n("ConnectCasesClient", "DeleteFieldCommand")
|
|
2685
|
-
.
|
|
2686
|
-
.ser(se_DeleteFieldCommand)
|
|
2687
|
-
.de(de_DeleteFieldCommand)
|
|
2471
|
+
.sc(DeleteField)
|
|
2688
2472
|
.build() {
|
|
2689
2473
|
}
|
|
2690
2474
|
|
|
@@ -2692,16 +2476,11 @@ class DeleteLayoutCommand extends smithyClient.Command
|
|
|
2692
2476
|
.classBuilder()
|
|
2693
2477
|
.ep(commonParams)
|
|
2694
2478
|
.m(function (Command, cs, config, o) {
|
|
2695
|
-
return [
|
|
2696
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2697
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2698
|
-
];
|
|
2479
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2699
2480
|
})
|
|
2700
2481
|
.s("AmazonConnectCases", "DeleteLayout", {})
|
|
2701
2482
|
.n("ConnectCasesClient", "DeleteLayoutCommand")
|
|
2702
|
-
.
|
|
2703
|
-
.ser(se_DeleteLayoutCommand)
|
|
2704
|
-
.de(de_DeleteLayoutCommand)
|
|
2483
|
+
.sc(DeleteLayout)
|
|
2705
2484
|
.build() {
|
|
2706
2485
|
}
|
|
2707
2486
|
|
|
@@ -2709,16 +2488,11 @@ class DeleteRelatedItemCommand extends smithyClient.Command
|
|
|
2709
2488
|
.classBuilder()
|
|
2710
2489
|
.ep(commonParams)
|
|
2711
2490
|
.m(function (Command, cs, config, o) {
|
|
2712
|
-
return [
|
|
2713
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2714
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2715
|
-
];
|
|
2491
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2716
2492
|
})
|
|
2717
2493
|
.s("AmazonConnectCases", "DeleteRelatedItem", {})
|
|
2718
2494
|
.n("ConnectCasesClient", "DeleteRelatedItemCommand")
|
|
2719
|
-
.
|
|
2720
|
-
.ser(se_DeleteRelatedItemCommand)
|
|
2721
|
-
.de(de_DeleteRelatedItemCommand)
|
|
2495
|
+
.sc(DeleteRelatedItem)
|
|
2722
2496
|
.build() {
|
|
2723
2497
|
}
|
|
2724
2498
|
|
|
@@ -2726,16 +2500,11 @@ class DeleteTemplateCommand extends smithyClient.Command
|
|
|
2726
2500
|
.classBuilder()
|
|
2727
2501
|
.ep(commonParams)
|
|
2728
2502
|
.m(function (Command, cs, config, o) {
|
|
2729
|
-
return [
|
|
2730
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2731
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2732
|
-
];
|
|
2503
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2733
2504
|
})
|
|
2734
2505
|
.s("AmazonConnectCases", "DeleteTemplate", {})
|
|
2735
2506
|
.n("ConnectCasesClient", "DeleteTemplateCommand")
|
|
2736
|
-
.
|
|
2737
|
-
.ser(se_DeleteTemplateCommand)
|
|
2738
|
-
.de(de_DeleteTemplateCommand)
|
|
2507
|
+
.sc(DeleteTemplate)
|
|
2739
2508
|
.build() {
|
|
2740
2509
|
}
|
|
2741
2510
|
|
|
@@ -2743,16 +2512,11 @@ class GetCaseAuditEventsCommand extends smithyClient.Command
|
|
|
2743
2512
|
.classBuilder()
|
|
2744
2513
|
.ep(commonParams)
|
|
2745
2514
|
.m(function (Command, cs, config, o) {
|
|
2746
|
-
return [
|
|
2747
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2748
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2749
|
-
];
|
|
2515
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2750
2516
|
})
|
|
2751
2517
|
.s("AmazonConnectCases", "GetCaseAuditEvents", {})
|
|
2752
2518
|
.n("ConnectCasesClient", "GetCaseAuditEventsCommand")
|
|
2753
|
-
.
|
|
2754
|
-
.ser(se_GetCaseAuditEventsCommand)
|
|
2755
|
-
.de(de_GetCaseAuditEventsCommand)
|
|
2519
|
+
.sc(GetCaseAuditEvents)
|
|
2756
2520
|
.build() {
|
|
2757
2521
|
}
|
|
2758
2522
|
|
|
@@ -2760,16 +2524,11 @@ class GetCaseCommand extends smithyClient.Command
|
|
|
2760
2524
|
.classBuilder()
|
|
2761
2525
|
.ep(commonParams)
|
|
2762
2526
|
.m(function (Command, cs, config, o) {
|
|
2763
|
-
return [
|
|
2764
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2765
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2766
|
-
];
|
|
2527
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2767
2528
|
})
|
|
2768
2529
|
.s("AmazonConnectCases", "GetCase", {})
|
|
2769
2530
|
.n("ConnectCasesClient", "GetCaseCommand")
|
|
2770
|
-
.
|
|
2771
|
-
.ser(se_GetCaseCommand)
|
|
2772
|
-
.de(de_GetCaseCommand)
|
|
2531
|
+
.sc(GetCase)
|
|
2773
2532
|
.build() {
|
|
2774
2533
|
}
|
|
2775
2534
|
|
|
@@ -2777,16 +2536,11 @@ class GetCaseEventConfigurationCommand extends smithyClient.Command
|
|
|
2777
2536
|
.classBuilder()
|
|
2778
2537
|
.ep(commonParams)
|
|
2779
2538
|
.m(function (Command, cs, config, o) {
|
|
2780
|
-
return [
|
|
2781
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2782
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2783
|
-
];
|
|
2539
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2784
2540
|
})
|
|
2785
2541
|
.s("AmazonConnectCases", "GetCaseEventConfiguration", {})
|
|
2786
2542
|
.n("ConnectCasesClient", "GetCaseEventConfigurationCommand")
|
|
2787
|
-
.
|
|
2788
|
-
.ser(se_GetCaseEventConfigurationCommand)
|
|
2789
|
-
.de(de_GetCaseEventConfigurationCommand)
|
|
2543
|
+
.sc(GetCaseEventConfiguration)
|
|
2790
2544
|
.build() {
|
|
2791
2545
|
}
|
|
2792
2546
|
|
|
@@ -2794,16 +2548,11 @@ class GetDomainCommand extends smithyClient.Command
|
|
|
2794
2548
|
.classBuilder()
|
|
2795
2549
|
.ep(commonParams)
|
|
2796
2550
|
.m(function (Command, cs, config, o) {
|
|
2797
|
-
return [
|
|
2798
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2799
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2800
|
-
];
|
|
2551
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2801
2552
|
})
|
|
2802
2553
|
.s("AmazonConnectCases", "GetDomain", {})
|
|
2803
2554
|
.n("ConnectCasesClient", "GetDomainCommand")
|
|
2804
|
-
.
|
|
2805
|
-
.ser(se_GetDomainCommand)
|
|
2806
|
-
.de(de_GetDomainCommand)
|
|
2555
|
+
.sc(GetDomain)
|
|
2807
2556
|
.build() {
|
|
2808
2557
|
}
|
|
2809
2558
|
|
|
@@ -2811,16 +2560,11 @@ class GetLayoutCommand extends smithyClient.Command
|
|
|
2811
2560
|
.classBuilder()
|
|
2812
2561
|
.ep(commonParams)
|
|
2813
2562
|
.m(function (Command, cs, config, o) {
|
|
2814
|
-
return [
|
|
2815
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2816
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2817
|
-
];
|
|
2563
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2818
2564
|
})
|
|
2819
2565
|
.s("AmazonConnectCases", "GetLayout", {})
|
|
2820
2566
|
.n("ConnectCasesClient", "GetLayoutCommand")
|
|
2821
|
-
.
|
|
2822
|
-
.ser(se_GetLayoutCommand)
|
|
2823
|
-
.de(de_GetLayoutCommand)
|
|
2567
|
+
.sc(GetLayout)
|
|
2824
2568
|
.build() {
|
|
2825
2569
|
}
|
|
2826
2570
|
|
|
@@ -2828,16 +2572,11 @@ class GetTemplateCommand extends smithyClient.Command
|
|
|
2828
2572
|
.classBuilder()
|
|
2829
2573
|
.ep(commonParams)
|
|
2830
2574
|
.m(function (Command, cs, config, o) {
|
|
2831
|
-
return [
|
|
2832
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2833
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2834
|
-
];
|
|
2575
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2835
2576
|
})
|
|
2836
2577
|
.s("AmazonConnectCases", "GetTemplate", {})
|
|
2837
2578
|
.n("ConnectCasesClient", "GetTemplateCommand")
|
|
2838
|
-
.
|
|
2839
|
-
.ser(se_GetTemplateCommand)
|
|
2840
|
-
.de(de_GetTemplateCommand)
|
|
2579
|
+
.sc(GetTemplate)
|
|
2841
2580
|
.build() {
|
|
2842
2581
|
}
|
|
2843
2582
|
|
|
@@ -2845,16 +2584,11 @@ class ListCaseRulesCommand extends smithyClient.Command
|
|
|
2845
2584
|
.classBuilder()
|
|
2846
2585
|
.ep(commonParams)
|
|
2847
2586
|
.m(function (Command, cs, config, o) {
|
|
2848
|
-
return [
|
|
2849
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2850
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2851
|
-
];
|
|
2587
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2852
2588
|
})
|
|
2853
2589
|
.s("AmazonConnectCases", "ListCaseRules", {})
|
|
2854
2590
|
.n("ConnectCasesClient", "ListCaseRulesCommand")
|
|
2855
|
-
.
|
|
2856
|
-
.ser(se_ListCaseRulesCommand)
|
|
2857
|
-
.de(de_ListCaseRulesCommand)
|
|
2591
|
+
.sc(ListCaseRules)
|
|
2858
2592
|
.build() {
|
|
2859
2593
|
}
|
|
2860
2594
|
|
|
@@ -2862,16 +2596,11 @@ class ListCasesForContactCommand extends smithyClient.Command
|
|
|
2862
2596
|
.classBuilder()
|
|
2863
2597
|
.ep(commonParams)
|
|
2864
2598
|
.m(function (Command, cs, config, o) {
|
|
2865
|
-
return [
|
|
2866
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2867
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2868
|
-
];
|
|
2599
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2869
2600
|
})
|
|
2870
2601
|
.s("AmazonConnectCases", "ListCasesForContact", {})
|
|
2871
2602
|
.n("ConnectCasesClient", "ListCasesForContactCommand")
|
|
2872
|
-
.
|
|
2873
|
-
.ser(se_ListCasesForContactCommand)
|
|
2874
|
-
.de(de_ListCasesForContactCommand)
|
|
2603
|
+
.sc(ListCasesForContact)
|
|
2875
2604
|
.build() {
|
|
2876
2605
|
}
|
|
2877
2606
|
|
|
@@ -2879,16 +2608,11 @@ class ListDomainsCommand extends smithyClient.Command
|
|
|
2879
2608
|
.classBuilder()
|
|
2880
2609
|
.ep(commonParams)
|
|
2881
2610
|
.m(function (Command, cs, config, o) {
|
|
2882
|
-
return [
|
|
2883
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2884
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2885
|
-
];
|
|
2611
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2886
2612
|
})
|
|
2887
2613
|
.s("AmazonConnectCases", "ListDomains", {})
|
|
2888
2614
|
.n("ConnectCasesClient", "ListDomainsCommand")
|
|
2889
|
-
.
|
|
2890
|
-
.ser(se_ListDomainsCommand)
|
|
2891
|
-
.de(de_ListDomainsCommand)
|
|
2615
|
+
.sc(ListDomains)
|
|
2892
2616
|
.build() {
|
|
2893
2617
|
}
|
|
2894
2618
|
|
|
@@ -2896,16 +2620,11 @@ class ListFieldOptionsCommand extends smithyClient.Command
|
|
|
2896
2620
|
.classBuilder()
|
|
2897
2621
|
.ep(commonParams)
|
|
2898
2622
|
.m(function (Command, cs, config, o) {
|
|
2899
|
-
return [
|
|
2900
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2901
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2902
|
-
];
|
|
2623
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2903
2624
|
})
|
|
2904
2625
|
.s("AmazonConnectCases", "ListFieldOptions", {})
|
|
2905
2626
|
.n("ConnectCasesClient", "ListFieldOptionsCommand")
|
|
2906
|
-
.
|
|
2907
|
-
.ser(se_ListFieldOptionsCommand)
|
|
2908
|
-
.de(de_ListFieldOptionsCommand)
|
|
2627
|
+
.sc(ListFieldOptions)
|
|
2909
2628
|
.build() {
|
|
2910
2629
|
}
|
|
2911
2630
|
|
|
@@ -2913,16 +2632,11 @@ class ListFieldsCommand extends smithyClient.Command
|
|
|
2913
2632
|
.classBuilder()
|
|
2914
2633
|
.ep(commonParams)
|
|
2915
2634
|
.m(function (Command, cs, config, o) {
|
|
2916
|
-
return [
|
|
2917
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2918
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2919
|
-
];
|
|
2635
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2920
2636
|
})
|
|
2921
2637
|
.s("AmazonConnectCases", "ListFields", {})
|
|
2922
2638
|
.n("ConnectCasesClient", "ListFieldsCommand")
|
|
2923
|
-
.
|
|
2924
|
-
.ser(se_ListFieldsCommand)
|
|
2925
|
-
.de(de_ListFieldsCommand)
|
|
2639
|
+
.sc(ListFields)
|
|
2926
2640
|
.build() {
|
|
2927
2641
|
}
|
|
2928
2642
|
|
|
@@ -2930,16 +2644,11 @@ class ListLayoutsCommand extends smithyClient.Command
|
|
|
2930
2644
|
.classBuilder()
|
|
2931
2645
|
.ep(commonParams)
|
|
2932
2646
|
.m(function (Command, cs, config, o) {
|
|
2933
|
-
return [
|
|
2934
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2935
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2936
|
-
];
|
|
2647
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2937
2648
|
})
|
|
2938
2649
|
.s("AmazonConnectCases", "ListLayouts", {})
|
|
2939
2650
|
.n("ConnectCasesClient", "ListLayoutsCommand")
|
|
2940
|
-
.
|
|
2941
|
-
.ser(se_ListLayoutsCommand)
|
|
2942
|
-
.de(de_ListLayoutsCommand)
|
|
2651
|
+
.sc(ListLayouts)
|
|
2943
2652
|
.build() {
|
|
2944
2653
|
}
|
|
2945
2654
|
|
|
@@ -2947,16 +2656,11 @@ class ListTagsForResourceCommand extends smithyClient.Command
|
|
|
2947
2656
|
.classBuilder()
|
|
2948
2657
|
.ep(commonParams)
|
|
2949
2658
|
.m(function (Command, cs, config, o) {
|
|
2950
|
-
return [
|
|
2951
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2952
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2953
|
-
];
|
|
2659
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2954
2660
|
})
|
|
2955
2661
|
.s("AmazonConnectCases", "ListTagsForResource", {})
|
|
2956
2662
|
.n("ConnectCasesClient", "ListTagsForResourceCommand")
|
|
2957
|
-
.
|
|
2958
|
-
.ser(se_ListTagsForResourceCommand)
|
|
2959
|
-
.de(de_ListTagsForResourceCommand)
|
|
2663
|
+
.sc(ListTagsForResource)
|
|
2960
2664
|
.build() {
|
|
2961
2665
|
}
|
|
2962
2666
|
|
|
@@ -2964,16 +2668,11 @@ class ListTemplatesCommand extends smithyClient.Command
|
|
|
2964
2668
|
.classBuilder()
|
|
2965
2669
|
.ep(commonParams)
|
|
2966
2670
|
.m(function (Command, cs, config, o) {
|
|
2967
|
-
return [
|
|
2968
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2969
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2970
|
-
];
|
|
2671
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2971
2672
|
})
|
|
2972
2673
|
.s("AmazonConnectCases", "ListTemplates", {})
|
|
2973
2674
|
.n("ConnectCasesClient", "ListTemplatesCommand")
|
|
2974
|
-
.
|
|
2975
|
-
.ser(se_ListTemplatesCommand)
|
|
2976
|
-
.de(de_ListTemplatesCommand)
|
|
2675
|
+
.sc(ListTemplates)
|
|
2977
2676
|
.build() {
|
|
2978
2677
|
}
|
|
2979
2678
|
|
|
@@ -2981,16 +2680,11 @@ class PutCaseEventConfigurationCommand extends smithyClient.Command
|
|
|
2981
2680
|
.classBuilder()
|
|
2982
2681
|
.ep(commonParams)
|
|
2983
2682
|
.m(function (Command, cs, config, o) {
|
|
2984
|
-
return [
|
|
2985
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2986
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2987
|
-
];
|
|
2683
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2988
2684
|
})
|
|
2989
2685
|
.s("AmazonConnectCases", "PutCaseEventConfiguration", {})
|
|
2990
2686
|
.n("ConnectCasesClient", "PutCaseEventConfigurationCommand")
|
|
2991
|
-
.
|
|
2992
|
-
.ser(se_PutCaseEventConfigurationCommand)
|
|
2993
|
-
.de(de_PutCaseEventConfigurationCommand)
|
|
2687
|
+
.sc(PutCaseEventConfiguration)
|
|
2994
2688
|
.build() {
|
|
2995
2689
|
}
|
|
2996
2690
|
|
|
@@ -2998,16 +2692,11 @@ class SearchAllRelatedItemsCommand extends smithyClient.Command
|
|
|
2998
2692
|
.classBuilder()
|
|
2999
2693
|
.ep(commonParams)
|
|
3000
2694
|
.m(function (Command, cs, config, o) {
|
|
3001
|
-
return [
|
|
3002
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
3003
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
3004
|
-
];
|
|
2695
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
3005
2696
|
})
|
|
3006
2697
|
.s("AmazonConnectCases", "SearchAllRelatedItems", {})
|
|
3007
2698
|
.n("ConnectCasesClient", "SearchAllRelatedItemsCommand")
|
|
3008
|
-
.
|
|
3009
|
-
.ser(se_SearchAllRelatedItemsCommand)
|
|
3010
|
-
.de(de_SearchAllRelatedItemsCommand)
|
|
2699
|
+
.sc(SearchAllRelatedItems)
|
|
3011
2700
|
.build() {
|
|
3012
2701
|
}
|
|
3013
2702
|
|
|
@@ -3015,16 +2704,11 @@ class SearchCasesCommand extends smithyClient.Command
|
|
|
3015
2704
|
.classBuilder()
|
|
3016
2705
|
.ep(commonParams)
|
|
3017
2706
|
.m(function (Command, cs, config, o) {
|
|
3018
|
-
return [
|
|
3019
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
3020
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
3021
|
-
];
|
|
2707
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
3022
2708
|
})
|
|
3023
2709
|
.s("AmazonConnectCases", "SearchCases", {})
|
|
3024
2710
|
.n("ConnectCasesClient", "SearchCasesCommand")
|
|
3025
|
-
.
|
|
3026
|
-
.ser(se_SearchCasesCommand)
|
|
3027
|
-
.de(de_SearchCasesCommand)
|
|
2711
|
+
.sc(SearchCases)
|
|
3028
2712
|
.build() {
|
|
3029
2713
|
}
|
|
3030
2714
|
|
|
@@ -3032,16 +2716,11 @@ class SearchRelatedItemsCommand extends smithyClient.Command
|
|
|
3032
2716
|
.classBuilder()
|
|
3033
2717
|
.ep(commonParams)
|
|
3034
2718
|
.m(function (Command, cs, config, o) {
|
|
3035
|
-
return [
|
|
3036
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
3037
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
3038
|
-
];
|
|
2719
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
3039
2720
|
})
|
|
3040
2721
|
.s("AmazonConnectCases", "SearchRelatedItems", {})
|
|
3041
2722
|
.n("ConnectCasesClient", "SearchRelatedItemsCommand")
|
|
3042
|
-
.
|
|
3043
|
-
.ser(se_SearchRelatedItemsCommand)
|
|
3044
|
-
.de(de_SearchRelatedItemsCommand)
|
|
2723
|
+
.sc(SearchRelatedItems)
|
|
3045
2724
|
.build() {
|
|
3046
2725
|
}
|
|
3047
2726
|
|
|
@@ -3049,16 +2728,11 @@ class TagResourceCommand extends smithyClient.Command
|
|
|
3049
2728
|
.classBuilder()
|
|
3050
2729
|
.ep(commonParams)
|
|
3051
2730
|
.m(function (Command, cs, config, o) {
|
|
3052
|
-
return [
|
|
3053
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
3054
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
3055
|
-
];
|
|
2731
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
3056
2732
|
})
|
|
3057
2733
|
.s("AmazonConnectCases", "TagResource", {})
|
|
3058
2734
|
.n("ConnectCasesClient", "TagResourceCommand")
|
|
3059
|
-
.
|
|
3060
|
-
.ser(se_TagResourceCommand)
|
|
3061
|
-
.de(de_TagResourceCommand)
|
|
2735
|
+
.sc(TagResource)
|
|
3062
2736
|
.build() {
|
|
3063
2737
|
}
|
|
3064
2738
|
|
|
@@ -3066,16 +2740,11 @@ class UntagResourceCommand extends smithyClient.Command
|
|
|
3066
2740
|
.classBuilder()
|
|
3067
2741
|
.ep(commonParams)
|
|
3068
2742
|
.m(function (Command, cs, config, o) {
|
|
3069
|
-
return [
|
|
3070
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
3071
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
3072
|
-
];
|
|
2743
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
3073
2744
|
})
|
|
3074
2745
|
.s("AmazonConnectCases", "UntagResource", {})
|
|
3075
2746
|
.n("ConnectCasesClient", "UntagResourceCommand")
|
|
3076
|
-
.
|
|
3077
|
-
.ser(se_UntagResourceCommand)
|
|
3078
|
-
.de(de_UntagResourceCommand)
|
|
2747
|
+
.sc(UntagResource)
|
|
3079
2748
|
.build() {
|
|
3080
2749
|
}
|
|
3081
2750
|
|
|
@@ -3083,16 +2752,11 @@ class UpdateCaseCommand extends smithyClient.Command
|
|
|
3083
2752
|
.classBuilder()
|
|
3084
2753
|
.ep(commonParams)
|
|
3085
2754
|
.m(function (Command, cs, config, o) {
|
|
3086
|
-
return [
|
|
3087
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
3088
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
3089
|
-
];
|
|
2755
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
3090
2756
|
})
|
|
3091
2757
|
.s("AmazonConnectCases", "UpdateCase", {})
|
|
3092
2758
|
.n("ConnectCasesClient", "UpdateCaseCommand")
|
|
3093
|
-
.
|
|
3094
|
-
.ser(se_UpdateCaseCommand)
|
|
3095
|
-
.de(de_UpdateCaseCommand)
|
|
2759
|
+
.sc(UpdateCase)
|
|
3096
2760
|
.build() {
|
|
3097
2761
|
}
|
|
3098
2762
|
|
|
@@ -3100,16 +2764,11 @@ class UpdateCaseRuleCommand extends smithyClient.Command
|
|
|
3100
2764
|
.classBuilder()
|
|
3101
2765
|
.ep(commonParams)
|
|
3102
2766
|
.m(function (Command, cs, config, o) {
|
|
3103
|
-
return [
|
|
3104
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
3105
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
3106
|
-
];
|
|
2767
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
3107
2768
|
})
|
|
3108
2769
|
.s("AmazonConnectCases", "UpdateCaseRule", {})
|
|
3109
2770
|
.n("ConnectCasesClient", "UpdateCaseRuleCommand")
|
|
3110
|
-
.
|
|
3111
|
-
.ser(se_UpdateCaseRuleCommand)
|
|
3112
|
-
.de(de_UpdateCaseRuleCommand)
|
|
2771
|
+
.sc(UpdateCaseRule)
|
|
3113
2772
|
.build() {
|
|
3114
2773
|
}
|
|
3115
2774
|
|
|
@@ -3117,16 +2776,11 @@ class UpdateFieldCommand extends smithyClient.Command
|
|
|
3117
2776
|
.classBuilder()
|
|
3118
2777
|
.ep(commonParams)
|
|
3119
2778
|
.m(function (Command, cs, config, o) {
|
|
3120
|
-
return [
|
|
3121
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
3122
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
3123
|
-
];
|
|
2779
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
3124
2780
|
})
|
|
3125
2781
|
.s("AmazonConnectCases", "UpdateField", {})
|
|
3126
2782
|
.n("ConnectCasesClient", "UpdateFieldCommand")
|
|
3127
|
-
.
|
|
3128
|
-
.ser(se_UpdateFieldCommand)
|
|
3129
|
-
.de(de_UpdateFieldCommand)
|
|
2783
|
+
.sc(UpdateField)
|
|
3130
2784
|
.build() {
|
|
3131
2785
|
}
|
|
3132
2786
|
|
|
@@ -3134,16 +2788,11 @@ class UpdateLayoutCommand extends smithyClient.Command
|
|
|
3134
2788
|
.classBuilder()
|
|
3135
2789
|
.ep(commonParams)
|
|
3136
2790
|
.m(function (Command, cs, config, o) {
|
|
3137
|
-
return [
|
|
3138
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
3139
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
3140
|
-
];
|
|
2791
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
3141
2792
|
})
|
|
3142
2793
|
.s("AmazonConnectCases", "UpdateLayout", {})
|
|
3143
2794
|
.n("ConnectCasesClient", "UpdateLayoutCommand")
|
|
3144
|
-
.
|
|
3145
|
-
.ser(se_UpdateLayoutCommand)
|
|
3146
|
-
.de(de_UpdateLayoutCommand)
|
|
2795
|
+
.sc(UpdateLayout)
|
|
3147
2796
|
.build() {
|
|
3148
2797
|
}
|
|
3149
2798
|
|
|
@@ -3151,16 +2800,11 @@ class UpdateTemplateCommand extends smithyClient.Command
|
|
|
3151
2800
|
.classBuilder()
|
|
3152
2801
|
.ep(commonParams)
|
|
3153
2802
|
.m(function (Command, cs, config, o) {
|
|
3154
|
-
return [
|
|
3155
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
3156
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
3157
|
-
];
|
|
2803
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
3158
2804
|
})
|
|
3159
2805
|
.s("AmazonConnectCases", "UpdateTemplate", {})
|
|
3160
2806
|
.n("ConnectCasesClient", "UpdateTemplateCommand")
|
|
3161
|
-
.
|
|
3162
|
-
.ser(se_UpdateTemplateCommand)
|
|
3163
|
-
.de(de_UpdateTemplateCommand)
|
|
2807
|
+
.sc(UpdateTemplate)
|
|
3164
2808
|
.build() {
|
|
3165
2809
|
}
|
|
3166
2810
|
|
|
@@ -3244,26 +2888,22 @@ Object.defineProperty(exports, "__Client", {
|
|
|
3244
2888
|
enumerable: true,
|
|
3245
2889
|
get: function () { return smithyClient.Client; }
|
|
3246
2890
|
});
|
|
3247
|
-
exports.AccessDeniedException = AccessDeniedException;
|
|
3248
|
-
exports.AuditEventFilterSensitiveLog = AuditEventFilterSensitiveLog;
|
|
3249
|
-
exports.AuditEventPerformedByFilterSensitiveLog = AuditEventPerformedByFilterSensitiveLog;
|
|
2891
|
+
exports.AccessDeniedException = AccessDeniedException$1;
|
|
3250
2892
|
exports.AuditEventType = AuditEventType;
|
|
3251
2893
|
exports.BatchGetCaseRuleCommand = BatchGetCaseRuleCommand;
|
|
3252
2894
|
exports.BatchGetFieldCommand = BatchGetFieldCommand;
|
|
3253
2895
|
exports.BatchPutFieldOptionsCommand = BatchPutFieldOptionsCommand;
|
|
3254
2896
|
exports.CommentBodyTextType = CommentBodyTextType;
|
|
3255
|
-
exports.ConflictException = ConflictException;
|
|
2897
|
+
exports.ConflictException = ConflictException$1;
|
|
3256
2898
|
exports.ConnectCases = ConnectCases;
|
|
3257
2899
|
exports.ConnectCasesClient = ConnectCasesClient;
|
|
3258
|
-
exports.ConnectCasesServiceException = ConnectCasesServiceException;
|
|
2900
|
+
exports.ConnectCasesServiceException = ConnectCasesServiceException$1;
|
|
3259
2901
|
exports.CreateCaseCommand = CreateCaseCommand;
|
|
3260
|
-
exports.CreateCaseRequestFilterSensitiveLog = CreateCaseRequestFilterSensitiveLog;
|
|
3261
2902
|
exports.CreateCaseRuleCommand = CreateCaseRuleCommand;
|
|
3262
2903
|
exports.CreateDomainCommand = CreateDomainCommand;
|
|
3263
2904
|
exports.CreateFieldCommand = CreateFieldCommand;
|
|
3264
2905
|
exports.CreateLayoutCommand = CreateLayoutCommand;
|
|
3265
2906
|
exports.CreateRelatedItemCommand = CreateRelatedItemCommand;
|
|
3266
|
-
exports.CreateRelatedItemRequestFilterSensitiveLog = CreateRelatedItemRequestFilterSensitiveLog;
|
|
3267
2907
|
exports.CreateTemplateCommand = CreateTemplateCommand;
|
|
3268
2908
|
exports.DeleteCaseCommand = DeleteCaseCommand;
|
|
3269
2909
|
exports.DeleteCaseRuleCommand = DeleteCaseRuleCommand;
|
|
@@ -3276,13 +2916,12 @@ exports.DomainStatus = DomainStatus;
|
|
|
3276
2916
|
exports.FieldNamespace = FieldNamespace;
|
|
3277
2917
|
exports.FieldType = FieldType;
|
|
3278
2918
|
exports.GetCaseAuditEventsCommand = GetCaseAuditEventsCommand;
|
|
3279
|
-
exports.GetCaseAuditEventsResponseFilterSensitiveLog = GetCaseAuditEventsResponseFilterSensitiveLog;
|
|
3280
2919
|
exports.GetCaseCommand = GetCaseCommand;
|
|
3281
2920
|
exports.GetCaseEventConfigurationCommand = GetCaseEventConfigurationCommand;
|
|
3282
2921
|
exports.GetDomainCommand = GetDomainCommand;
|
|
3283
2922
|
exports.GetLayoutCommand = GetLayoutCommand;
|
|
3284
2923
|
exports.GetTemplateCommand = GetTemplateCommand;
|
|
3285
|
-
exports.InternalServerException = InternalServerException;
|
|
2924
|
+
exports.InternalServerException = InternalServerException$1;
|
|
3286
2925
|
exports.ListCaseRulesCommand = ListCaseRulesCommand;
|
|
3287
2926
|
exports.ListCasesForContactCommand = ListCasesForContactCommand;
|
|
3288
2927
|
exports.ListDomainsCommand = ListDomainsCommand;
|
|
@@ -3293,42 +2932,26 @@ exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
|
3293
2932
|
exports.ListTemplatesCommand = ListTemplatesCommand;
|
|
3294
2933
|
exports.Order = Order;
|
|
3295
2934
|
exports.PutCaseEventConfigurationCommand = PutCaseEventConfigurationCommand;
|
|
3296
|
-
exports.RelatedItemContentFilterSensitiveLog = RelatedItemContentFilterSensitiveLog;
|
|
3297
|
-
exports.RelatedItemInputContentFilterSensitiveLog = RelatedItemInputContentFilterSensitiveLog;
|
|
3298
2935
|
exports.RelatedItemType = RelatedItemType;
|
|
3299
|
-
exports.
|
|
3300
|
-
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
2936
|
+
exports.ResourceNotFoundException = ResourceNotFoundException$1;
|
|
3301
2937
|
exports.RuleType = RuleType;
|
|
3302
2938
|
exports.SearchAllRelatedItemsCommand = SearchAllRelatedItemsCommand;
|
|
3303
|
-
exports.SearchAllRelatedItemsRequestFilterSensitiveLog = SearchAllRelatedItemsRequestFilterSensitiveLog;
|
|
3304
|
-
exports.SearchAllRelatedItemsResponseFilterSensitiveLog = SearchAllRelatedItemsResponseFilterSensitiveLog;
|
|
3305
|
-
exports.SearchAllRelatedItemsResponseItemFilterSensitiveLog = SearchAllRelatedItemsResponseItemFilterSensitiveLog;
|
|
3306
2939
|
exports.SearchAllRelatedItemsSortProperty = SearchAllRelatedItemsSortProperty;
|
|
3307
2940
|
exports.SearchCasesCommand = SearchCasesCommand;
|
|
3308
2941
|
exports.SearchRelatedItemsCommand = SearchRelatedItemsCommand;
|
|
3309
|
-
exports.
|
|
3310
|
-
exports.SearchRelatedItemsResponseFilterSensitiveLog = SearchRelatedItemsResponseFilterSensitiveLog;
|
|
3311
|
-
exports.SearchRelatedItemsResponseItemFilterSensitiveLog = SearchRelatedItemsResponseItemFilterSensitiveLog;
|
|
3312
|
-
exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
|
|
3313
|
-
exports.SlaConfigurationFilterSensitiveLog = SlaConfigurationFilterSensitiveLog;
|
|
3314
|
-
exports.SlaContentFilterSensitiveLog = SlaContentFilterSensitiveLog;
|
|
3315
|
-
exports.SlaFilterFilterSensitiveLog = SlaFilterFilterSensitiveLog;
|
|
3316
|
-
exports.SlaInputConfigurationFilterSensitiveLog = SlaInputConfigurationFilterSensitiveLog;
|
|
3317
|
-
exports.SlaInputContentFilterSensitiveLog = SlaInputContentFilterSensitiveLog;
|
|
2942
|
+
exports.ServiceQuotaExceededException = ServiceQuotaExceededException$1;
|
|
3318
2943
|
exports.SlaStatus = SlaStatus;
|
|
3319
2944
|
exports.SlaType = SlaType;
|
|
3320
2945
|
exports.TagResourceCommand = TagResourceCommand;
|
|
3321
2946
|
exports.TemplateStatus = TemplateStatus;
|
|
3322
|
-
exports.ThrottlingException = ThrottlingException;
|
|
2947
|
+
exports.ThrottlingException = ThrottlingException$1;
|
|
3323
2948
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
3324
2949
|
exports.UpdateCaseCommand = UpdateCaseCommand;
|
|
3325
|
-
exports.UpdateCaseRequestFilterSensitiveLog = UpdateCaseRequestFilterSensitiveLog;
|
|
3326
2950
|
exports.UpdateCaseRuleCommand = UpdateCaseRuleCommand;
|
|
3327
2951
|
exports.UpdateFieldCommand = UpdateFieldCommand;
|
|
3328
2952
|
exports.UpdateLayoutCommand = UpdateLayoutCommand;
|
|
3329
2953
|
exports.UpdateTemplateCommand = UpdateTemplateCommand;
|
|
3330
|
-
exports.
|
|
3331
|
-
exports.ValidationException = ValidationException;
|
|
2954
|
+
exports.ValidationException = ValidationException$1;
|
|
3332
2955
|
exports.paginateGetCase = paginateGetCase;
|
|
3333
2956
|
exports.paginateGetCaseAuditEvents = paginateGetCaseAuditEvents;
|
|
3334
2957
|
exports.paginateListCaseRules = paginateListCaseRules;
|