@aws-sdk/client-connectcases 3.1087.0 → 3.1088.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 +1 -1
- package/dist-types/ts3.4/ConnectCases.d.ts +157 -210
- package/dist-types/ts3.4/ConnectCasesClient.d.ts +21 -76
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +5 -12
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +11 -15
- package/dist-types/ts3.4/commandBuilder.d.ts +7 -13
- package/dist-types/ts3.4/commands/BatchGetCaseRuleCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/BatchGetFieldCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/BatchPutFieldOptionsCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/CreateCaseCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/CreateCaseRuleCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/CreateDomainCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/CreateFieldCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/CreateLayoutCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/CreateRelatedItemCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/CreateTemplateCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/DeleteCaseCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/DeleteCaseRuleCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/DeleteDomainCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/DeleteFieldCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/DeleteLayoutCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/DeleteRelatedItemCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DeleteTemplateCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/GetCaseAuditEventsCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/GetCaseCommand.d.ts +7 -5
- package/dist-types/ts3.4/commands/GetCaseEventConfigurationCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/GetDomainCommand.d.ts +7 -5
- package/dist-types/ts3.4/commands/GetLayoutCommand.d.ts +7 -5
- package/dist-types/ts3.4/commands/GetTemplateCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/ListCaseRulesCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/ListCasesForContactCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ListDomainsCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/ListFieldOptionsCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/ListFieldsCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/ListLayoutsCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ListTemplatesCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/PutCaseEventConfigurationCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/SearchAllRelatedItemsCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/SearchCasesCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/SearchRelatedItemsCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +2 -2
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +2 -2
- package/dist-types/ts3.4/commands/UpdateCaseCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/UpdateCaseRuleCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/UpdateFieldCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/UpdateLayoutCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/UpdateRelatedItemCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/UpdateTemplateCommand.d.ts +4 -9
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +1 -1
- package/dist-types/ts3.4/extensionConfiguration.d.ts +2 -1
- package/dist-types/ts3.4/models/enums.d.ts +5 -10
- package/dist-types/ts3.4/models/errors.d.ts +6 -18
- package/dist-types/ts3.4/models/models_0.d.ts +2 -6
- package/dist-types/ts3.4/pagination/GetCasePaginator.d.ts +1 -4
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +1 -2
- package/dist-types/ts3.4/pagination/ListDomainsPaginator.d.ts +1 -4
- package/dist-types/ts3.4/pagination/ListFieldsPaginator.d.ts +1 -4
- package/dist-types/ts3.4/pagination/ListLayoutsPaginator.d.ts +1 -4
- package/dist-types/ts3.4/pagination/SearchCasesPaginator.d.ts +1 -4
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -22
- package/dist-types/ts3.4/runtimeConfig.d.ts +8 -16
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -22
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -1
- package/dist-types/ts3.4/runtimeExtensions.d.ts +1 -1
- package/package.json +38 -38
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { DeleteDomainRequest, DeleteDomainResponse } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface DeleteDomainCommandInput extends DeleteDomainRequest {}
|
|
5
|
-
export interface DeleteDomainCommandOutput
|
|
6
|
-
extends DeleteDomainResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface DeleteDomainCommandOutput extends DeleteDomainResponse, __MetadataBearer {}
|
|
8
6
|
declare const DeleteDomainCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: DeleteDomainCommandInput
|
|
8
|
+
input: DeleteDomainCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
DeleteDomainCommandInput,
|
|
13
11
|
DeleteDomainCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const DeleteDomainCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: DeleteDomainCommandInput
|
|
17
|
+
input: DeleteDomainCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
DeleteDomainCommandInput,
|
|
22
20
|
DeleteDomainCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { DeleteFieldRequest, DeleteFieldResponse } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface DeleteFieldCommandInput extends DeleteFieldRequest {}
|
|
5
|
-
export interface DeleteFieldCommandOutput
|
|
6
|
-
extends DeleteFieldResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface DeleteFieldCommandOutput extends DeleteFieldResponse, __MetadataBearer {}
|
|
8
6
|
declare const DeleteFieldCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: DeleteFieldCommandInput
|
|
8
|
+
input: DeleteFieldCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
DeleteFieldCommandInput,
|
|
13
11
|
DeleteFieldCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const DeleteFieldCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: DeleteFieldCommandInput
|
|
17
|
+
input: DeleteFieldCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
DeleteFieldCommandInput,
|
|
22
20
|
DeleteFieldCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { DeleteLayoutRequest, DeleteLayoutResponse } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface DeleteLayoutCommandInput extends DeleteLayoutRequest {}
|
|
5
|
-
export interface DeleteLayoutCommandOutput
|
|
6
|
-
extends DeleteLayoutResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface DeleteLayoutCommandOutput extends DeleteLayoutResponse, __MetadataBearer {}
|
|
8
6
|
declare const DeleteLayoutCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: DeleteLayoutCommandInput
|
|
8
|
+
input: DeleteLayoutCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
DeleteLayoutCommandInput,
|
|
13
11
|
DeleteLayoutCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const DeleteLayoutCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: DeleteLayoutCommandInput
|
|
17
|
+
input: DeleteLayoutCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
DeleteLayoutCommandInput,
|
|
22
20
|
DeleteLayoutCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
DeleteRelatedItemRequest,
|
|
4
|
-
DeleteRelatedItemResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { DeleteRelatedItemRequest, DeleteRelatedItemResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface DeleteRelatedItemCommandInput
|
|
8
|
-
extends DeleteRelatedItemRequest {}
|
|
4
|
+
export interface DeleteRelatedItemCommandInput extends DeleteRelatedItemRequest {}
|
|
9
5
|
export interface DeleteRelatedItemCommandOutput
|
|
10
|
-
extends DeleteRelatedItemResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends DeleteRelatedItemResponse, __MetadataBearer {}
|
|
12
7
|
declare const DeleteRelatedItemCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: DeleteRelatedItemCommandInput
|
|
9
|
+
input: DeleteRelatedItemCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
DeleteRelatedItemCommandInput,
|
|
17
12
|
DeleteRelatedItemCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const DeleteRelatedItemCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: DeleteRelatedItemCommandInput
|
|
18
|
+
input: DeleteRelatedItemCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
DeleteRelatedItemCommandInput,
|
|
26
21
|
DeleteRelatedItemCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
DeleteTemplateRequest,
|
|
4
|
-
DeleteTemplateResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { DeleteTemplateRequest, DeleteTemplateResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface DeleteTemplateCommandInput extends DeleteTemplateRequest {}
|
|
8
|
-
export interface DeleteTemplateCommandOutput
|
|
9
|
-
extends DeleteTemplateResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface DeleteTemplateCommandOutput extends DeleteTemplateResponse, __MetadataBearer {}
|
|
11
6
|
declare const DeleteTemplateCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: DeleteTemplateCommandInput
|
|
8
|
+
input: DeleteTemplateCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
DeleteTemplateCommandInput,
|
|
16
11
|
DeleteTemplateCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const DeleteTemplateCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: DeleteTemplateCommandInput
|
|
17
|
+
input: DeleteTemplateCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
DeleteTemplateCommandInput,
|
|
25
20
|
DeleteTemplateCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
GetCaseAuditEventsRequest,
|
|
4
|
-
GetCaseAuditEventsResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { GetCaseAuditEventsRequest, GetCaseAuditEventsResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface GetCaseAuditEventsCommandInput
|
|
8
|
-
extends GetCaseAuditEventsRequest {}
|
|
4
|
+
export interface GetCaseAuditEventsCommandInput extends GetCaseAuditEventsRequest {}
|
|
9
5
|
export interface GetCaseAuditEventsCommandOutput
|
|
10
|
-
extends GetCaseAuditEventsResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends GetCaseAuditEventsResponse, __MetadataBearer {}
|
|
12
7
|
declare const GetCaseAuditEventsCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: GetCaseAuditEventsCommandInput
|
|
9
|
+
input: GetCaseAuditEventsCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
GetCaseAuditEventsCommandInput,
|
|
17
12
|
GetCaseAuditEventsCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const GetCaseAuditEventsCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: GetCaseAuditEventsCommandInput
|
|
18
|
+
input: GetCaseAuditEventsCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
GetCaseAuditEventsCommandInput,
|
|
26
21
|
GetCaseAuditEventsCommandOutput,
|
|
@@ -2,18 +2,20 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { GetCaseRequest, GetCaseResponse } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface GetCaseCommandInput extends GetCaseRequest {}
|
|
5
|
-
export interface GetCaseCommandOutput
|
|
6
|
-
extends GetCaseResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface GetCaseCommandOutput extends GetCaseResponse, __MetadataBearer {}
|
|
8
6
|
declare const GetCaseCommand_base: {
|
|
9
|
-
new (
|
|
7
|
+
new (
|
|
8
|
+
input: GetCaseCommandInput,
|
|
9
|
+
): import("@smithy/core/client").CommandImpl<
|
|
10
10
|
GetCaseCommandInput,
|
|
11
11
|
GetCaseCommandOutput,
|
|
12
12
|
import("..").ConnectCasesClientResolvedConfig,
|
|
13
13
|
import("..").ServiceInputTypes,
|
|
14
14
|
import("..").ServiceOutputTypes
|
|
15
15
|
>;
|
|
16
|
-
new (
|
|
16
|
+
new (
|
|
17
|
+
input: GetCaseCommandInput,
|
|
18
|
+
): import("@smithy/core/client").CommandImpl<
|
|
17
19
|
GetCaseCommandInput,
|
|
18
20
|
GetCaseCommandOutput,
|
|
19
21
|
import("..").ConnectCasesClientResolvedConfig,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
GetCaseEventConfigurationResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface GetCaseEventConfigurationCommandInput
|
|
8
|
-
extends GetCaseEventConfigurationRequest {}
|
|
7
|
+
export interface GetCaseEventConfigurationCommandInput extends GetCaseEventConfigurationRequest {}
|
|
9
8
|
export interface GetCaseEventConfigurationCommandOutput
|
|
10
|
-
extends GetCaseEventConfigurationResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends GetCaseEventConfigurationResponse, __MetadataBearer {}
|
|
12
10
|
declare const GetCaseEventConfigurationCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: GetCaseEventConfigurationCommandInput
|
|
12
|
+
input: GetCaseEventConfigurationCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
GetCaseEventConfigurationCommandInput,
|
|
17
15
|
GetCaseEventConfigurationCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const GetCaseEventConfigurationCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: GetCaseEventConfigurationCommandInput
|
|
21
|
+
input: GetCaseEventConfigurationCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
GetCaseEventConfigurationCommandInput,
|
|
26
24
|
GetCaseEventConfigurationCommandOutput,
|
|
@@ -2,18 +2,20 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { GetDomainRequest, GetDomainResponse } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface GetDomainCommandInput extends GetDomainRequest {}
|
|
5
|
-
export interface GetDomainCommandOutput
|
|
6
|
-
extends GetDomainResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface GetDomainCommandOutput extends GetDomainResponse, __MetadataBearer {}
|
|
8
6
|
declare const GetDomainCommand_base: {
|
|
9
|
-
new (
|
|
7
|
+
new (
|
|
8
|
+
input: GetDomainCommandInput,
|
|
9
|
+
): import("@smithy/core/client").CommandImpl<
|
|
10
10
|
GetDomainCommandInput,
|
|
11
11
|
GetDomainCommandOutput,
|
|
12
12
|
import("..").ConnectCasesClientResolvedConfig,
|
|
13
13
|
import("..").ServiceInputTypes,
|
|
14
14
|
import("..").ServiceOutputTypes
|
|
15
15
|
>;
|
|
16
|
-
new (
|
|
16
|
+
new (
|
|
17
|
+
input: GetDomainCommandInput,
|
|
18
|
+
): import("@smithy/core/client").CommandImpl<
|
|
17
19
|
GetDomainCommandInput,
|
|
18
20
|
GetDomainCommandOutput,
|
|
19
21
|
import("..").ConnectCasesClientResolvedConfig,
|
|
@@ -2,18 +2,20 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { GetLayoutRequest, GetLayoutResponse } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface GetLayoutCommandInput extends GetLayoutRequest {}
|
|
5
|
-
export interface GetLayoutCommandOutput
|
|
6
|
-
extends GetLayoutResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface GetLayoutCommandOutput extends GetLayoutResponse, __MetadataBearer {}
|
|
8
6
|
declare const GetLayoutCommand_base: {
|
|
9
|
-
new (
|
|
7
|
+
new (
|
|
8
|
+
input: GetLayoutCommandInput,
|
|
9
|
+
): import("@smithy/core/client").CommandImpl<
|
|
10
10
|
GetLayoutCommandInput,
|
|
11
11
|
GetLayoutCommandOutput,
|
|
12
12
|
import("..").ConnectCasesClientResolvedConfig,
|
|
13
13
|
import("..").ServiceInputTypes,
|
|
14
14
|
import("..").ServiceOutputTypes
|
|
15
15
|
>;
|
|
16
|
-
new (
|
|
16
|
+
new (
|
|
17
|
+
input: GetLayoutCommandInput,
|
|
18
|
+
): import("@smithy/core/client").CommandImpl<
|
|
17
19
|
GetLayoutCommandInput,
|
|
18
20
|
GetLayoutCommandOutput,
|
|
19
21
|
import("..").ConnectCasesClientResolvedConfig,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { GetTemplateRequest, GetTemplateResponse } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface GetTemplateCommandInput extends GetTemplateRequest {}
|
|
5
|
-
export interface GetTemplateCommandOutput
|
|
6
|
-
extends GetTemplateResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface GetTemplateCommandOutput extends GetTemplateResponse, __MetadataBearer {}
|
|
8
6
|
declare const GetTemplateCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: GetTemplateCommandInput
|
|
8
|
+
input: GetTemplateCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
GetTemplateCommandInput,
|
|
13
11
|
GetTemplateCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const GetTemplateCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: GetTemplateCommandInput
|
|
17
|
+
input: GetTemplateCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
GetTemplateCommandInput,
|
|
22
20
|
GetTemplateCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListCaseRulesRequest,
|
|
4
|
-
ListCaseRulesResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListCaseRulesRequest, ListCaseRulesResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface ListCaseRulesCommandInput extends ListCaseRulesRequest {}
|
|
8
|
-
export interface ListCaseRulesCommandOutput
|
|
9
|
-
extends ListCaseRulesResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface ListCaseRulesCommandOutput extends ListCaseRulesResponse, __MetadataBearer {}
|
|
11
6
|
declare const ListCaseRulesCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: ListCaseRulesCommandInput
|
|
8
|
+
input: ListCaseRulesCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
ListCaseRulesCommandInput,
|
|
16
11
|
ListCaseRulesCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const ListCaseRulesCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: ListCaseRulesCommandInput
|
|
17
|
+
input: ListCaseRulesCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
ListCaseRulesCommandInput,
|
|
25
20
|
ListCaseRulesCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListCasesForContactRequest,
|
|
4
|
-
ListCasesForContactResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListCasesForContactRequest, ListCasesForContactResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListCasesForContactCommandInput
|
|
8
|
-
extends ListCasesForContactRequest {}
|
|
4
|
+
export interface ListCasesForContactCommandInput extends ListCasesForContactRequest {}
|
|
9
5
|
export interface ListCasesForContactCommandOutput
|
|
10
|
-
extends ListCasesForContactResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends ListCasesForContactResponse, __MetadataBearer {}
|
|
12
7
|
declare const ListCasesForContactCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: ListCasesForContactCommandInput
|
|
9
|
+
input: ListCasesForContactCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
ListCasesForContactCommandInput,
|
|
17
12
|
ListCasesForContactCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const ListCasesForContactCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: ListCasesForContactCommandInput
|
|
18
|
+
input: ListCasesForContactCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
ListCasesForContactCommandInput,
|
|
26
21
|
ListCasesForContactCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { ListDomainsRequest, ListDomainsResponse } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface ListDomainsCommandInput extends ListDomainsRequest {}
|
|
5
|
-
export interface ListDomainsCommandOutput
|
|
6
|
-
extends ListDomainsResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface ListDomainsCommandOutput extends ListDomainsResponse, __MetadataBearer {}
|
|
8
6
|
declare const ListDomainsCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: ListDomainsCommandInput
|
|
8
|
+
input: ListDomainsCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
ListDomainsCommandInput,
|
|
13
11
|
ListDomainsCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListFieldOptionsRequest,
|
|
4
|
-
ListFieldOptionsResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListFieldOptionsRequest, ListFieldOptionsResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface ListFieldOptionsCommandInput extends ListFieldOptionsRequest {}
|
|
8
|
-
export interface ListFieldOptionsCommandOutput
|
|
9
|
-
extends ListFieldOptionsResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface ListFieldOptionsCommandOutput extends ListFieldOptionsResponse, __MetadataBearer {}
|
|
11
6
|
declare const ListFieldOptionsCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: ListFieldOptionsCommandInput
|
|
8
|
+
input: ListFieldOptionsCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
ListFieldOptionsCommandInput,
|
|
16
11
|
ListFieldOptionsCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const ListFieldOptionsCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: ListFieldOptionsCommandInput
|
|
17
|
+
input: ListFieldOptionsCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
ListFieldOptionsCommandInput,
|
|
25
20
|
ListFieldOptionsCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { ListFieldsRequest, ListFieldsResponse } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface ListFieldsCommandInput extends ListFieldsRequest {}
|
|
5
|
-
export interface ListFieldsCommandOutput
|
|
6
|
-
extends ListFieldsResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface ListFieldsCommandOutput extends ListFieldsResponse, __MetadataBearer {}
|
|
8
6
|
declare const ListFieldsCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: ListFieldsCommandInput
|
|
8
|
+
input: ListFieldsCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
ListFieldsCommandInput,
|
|
13
11
|
ListFieldsCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const ListFieldsCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: ListFieldsCommandInput
|
|
17
|
+
input: ListFieldsCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
ListFieldsCommandInput,
|
|
22
20
|
ListFieldsCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { ListLayoutsRequest, ListLayoutsResponse } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface ListLayoutsCommandInput extends ListLayoutsRequest {}
|
|
5
|
-
export interface ListLayoutsCommandOutput
|
|
6
|
-
extends ListLayoutsResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface ListLayoutsCommandOutput extends ListLayoutsResponse, __MetadataBearer {}
|
|
8
6
|
declare const ListLayoutsCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: ListLayoutsCommandInput
|
|
8
|
+
input: ListLayoutsCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
ListLayoutsCommandInput,
|
|
13
11
|
ListLayoutsCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const ListLayoutsCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: ListLayoutsCommandInput
|
|
17
|
+
input: ListLayoutsCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
ListLayoutsCommandInput,
|
|
22
20
|
ListLayoutsCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListTagsForResourceRequest,
|
|
4
|
-
ListTagsForResourceResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListTagsForResourceCommandInput
|
|
8
|
-
extends ListTagsForResourceRequest {}
|
|
4
|
+
export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequest {}
|
|
9
5
|
export interface ListTagsForResourceCommandOutput
|
|
10
|
-
extends ListTagsForResourceResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends ListTagsForResourceResponse, __MetadataBearer {}
|
|
12
7
|
declare const ListTagsForResourceCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: ListTagsForResourceCommandInput
|
|
9
|
+
input: ListTagsForResourceCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
ListTagsForResourceCommandInput,
|
|
17
12
|
ListTagsForResourceCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const ListTagsForResourceCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: ListTagsForResourceCommandInput
|
|
18
|
+
input: ListTagsForResourceCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
ListTagsForResourceCommandInput,
|
|
26
21
|
ListTagsForResourceCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListTemplatesRequest,
|
|
4
|
-
ListTemplatesResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListTemplatesRequest, ListTemplatesResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface ListTemplatesCommandInput extends ListTemplatesRequest {}
|
|
8
|
-
export interface ListTemplatesCommandOutput
|
|
9
|
-
extends ListTemplatesResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface ListTemplatesCommandOutput extends ListTemplatesResponse, __MetadataBearer {}
|
|
11
6
|
declare const ListTemplatesCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: ListTemplatesCommandInput
|
|
8
|
+
input: ListTemplatesCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
ListTemplatesCommandInput,
|
|
16
11
|
ListTemplatesCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const ListTemplatesCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: ListTemplatesCommandInput
|
|
17
|
+
input: ListTemplatesCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
ListTemplatesCommandInput,
|
|
25
20
|
ListTemplatesCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
PutCaseEventConfigurationResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface PutCaseEventConfigurationCommandInput
|
|
8
|
-
extends PutCaseEventConfigurationRequest {}
|
|
7
|
+
export interface PutCaseEventConfigurationCommandInput extends PutCaseEventConfigurationRequest {}
|
|
9
8
|
export interface PutCaseEventConfigurationCommandOutput
|
|
10
|
-
extends PutCaseEventConfigurationResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends PutCaseEventConfigurationResponse, __MetadataBearer {}
|
|
12
10
|
declare const PutCaseEventConfigurationCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: PutCaseEventConfigurationCommandInput
|
|
12
|
+
input: PutCaseEventConfigurationCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
PutCaseEventConfigurationCommandInput,
|
|
17
15
|
PutCaseEventConfigurationCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const PutCaseEventConfigurationCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: PutCaseEventConfigurationCommandInput
|
|
21
|
+
input: PutCaseEventConfigurationCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
PutCaseEventConfigurationCommandInput,
|
|
26
24
|
PutCaseEventConfigurationCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
SearchAllRelatedItemsRequest,
|
|
4
|
-
SearchAllRelatedItemsResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { SearchAllRelatedItemsRequest, SearchAllRelatedItemsResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface SearchAllRelatedItemsCommandInput
|
|
8
|
-
extends SearchAllRelatedItemsRequest {}
|
|
4
|
+
export interface SearchAllRelatedItemsCommandInput extends SearchAllRelatedItemsRequest {}
|
|
9
5
|
export interface SearchAllRelatedItemsCommandOutput
|
|
10
|
-
extends SearchAllRelatedItemsResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends SearchAllRelatedItemsResponse, __MetadataBearer {}
|
|
12
7
|
declare const SearchAllRelatedItemsCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: SearchAllRelatedItemsCommandInput
|
|
9
|
+
input: SearchAllRelatedItemsCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
SearchAllRelatedItemsCommandInput,
|
|
17
12
|
SearchAllRelatedItemsCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const SearchAllRelatedItemsCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: SearchAllRelatedItemsCommandInput
|
|
18
|
+
input: SearchAllRelatedItemsCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
SearchAllRelatedItemsCommandInput,
|
|
26
21
|
SearchAllRelatedItemsCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { SearchCasesRequest, SearchCasesResponse } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface SearchCasesCommandInput extends SearchCasesRequest {}
|
|
5
|
-
export interface SearchCasesCommandOutput
|
|
6
|
-
extends SearchCasesResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface SearchCasesCommandOutput extends SearchCasesResponse, __MetadataBearer {}
|
|
8
6
|
declare const SearchCasesCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: SearchCasesCommandInput
|
|
8
|
+
input: SearchCasesCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
SearchCasesCommandInput,
|
|
13
11
|
SearchCasesCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const SearchCasesCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: SearchCasesCommandInput
|
|
17
|
+
input: SearchCasesCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
SearchCasesCommandInput,
|
|
22
20
|
SearchCasesCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
SearchRelatedItemsRequest,
|
|
4
|
-
SearchRelatedItemsResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { SearchRelatedItemsRequest, SearchRelatedItemsResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface SearchRelatedItemsCommandInput
|
|
8
|
-
extends SearchRelatedItemsRequest {}
|
|
4
|
+
export interface SearchRelatedItemsCommandInput extends SearchRelatedItemsRequest {}
|
|
9
5
|
export interface SearchRelatedItemsCommandOutput
|
|
10
|
-
extends SearchRelatedItemsResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends SearchRelatedItemsResponse, __MetadataBearer {}
|
|
12
7
|
declare const SearchRelatedItemsCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: SearchRelatedItemsCommandInput
|
|
9
|
+
input: SearchRelatedItemsCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
SearchRelatedItemsCommandInput,
|
|
17
12
|
SearchRelatedItemsCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const SearchRelatedItemsCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: SearchRelatedItemsCommandInput
|
|
18
|
+
input: SearchRelatedItemsCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
SearchRelatedItemsCommandInput,
|
|
26
21
|
SearchRelatedItemsCommandOutput,
|
|
@@ -5,7 +5,7 @@ export interface TagResourceCommandInput extends TagResourceRequest {}
|
|
|
5
5
|
export interface TagResourceCommandOutput extends __MetadataBearer {}
|
|
6
6
|
declare const TagResourceCommand_base: {
|
|
7
7
|
new (
|
|
8
|
-
input: TagResourceCommandInput
|
|
8
|
+
input: TagResourceCommandInput,
|
|
9
9
|
): import("@smithy/core/client").CommandImpl<
|
|
10
10
|
TagResourceCommandInput,
|
|
11
11
|
TagResourceCommandOutput,
|
|
@@ -14,7 +14,7 @@ declare const TagResourceCommand_base: {
|
|
|
14
14
|
import("..").ServiceOutputTypes
|
|
15
15
|
>;
|
|
16
16
|
new (
|
|
17
|
-
input: TagResourceCommandInput
|
|
17
|
+
input: TagResourceCommandInput,
|
|
18
18
|
): import("@smithy/core/client").CommandImpl<
|
|
19
19
|
TagResourceCommandInput,
|
|
20
20
|
TagResourceCommandOutput,
|