@aws-sdk/client-connectcases 3.278.0 → 3.281.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/README.md +248 -6
- package/dist-cjs/ConnectCases.js +15 -0
- package/dist-cjs/commands/DeleteDomainCommand.js +46 -0
- package/dist-cjs/commands/index.js +1 -0
- package/dist-cjs/endpoint/ruleset.js +3 -3
- package/dist-cjs/models/models_0.js +10 -2
- package/dist-cjs/protocols/Aws_restJson1.js +65 -2
- package/dist-es/ConnectCases.js +15 -0
- package/dist-es/commands/DeleteDomainCommand.js +42 -0
- package/dist-es/commands/index.js +1 -0
- package/dist-es/endpoint/ruleset.js +3 -3
- package/dist-es/models/models_0.js +6 -0
- package/dist-es/protocols/Aws_restJson1.js +61 -0
- package/dist-types/ConnectCases.d.ts +37 -9
- package/dist-types/ConnectCasesClient.d.ts +8 -8
- package/dist-types/commands/BatchGetFieldCommand.d.ts +6 -0
- package/dist-types/commands/BatchPutFieldOptionsCommand.d.ts +6 -0
- package/dist-types/commands/CreateCaseCommand.d.ts +23 -2
- package/dist-types/commands/CreateDomainCommand.d.ts +9 -1
- package/dist-types/commands/CreateFieldCommand.d.ts +6 -0
- package/dist-types/commands/CreateLayoutCommand.d.ts +6 -0
- package/dist-types/commands/CreateRelatedItemCommand.d.ts +6 -0
- package/dist-types/commands/CreateTemplateCommand.d.ts +6 -0
- package/dist-types/commands/DeleteDomainCommand.d.ts +43 -0
- package/dist-types/commands/GetCaseCommand.d.ts +6 -0
- package/dist-types/commands/GetCaseEventConfigurationCommand.d.ts +6 -0
- package/dist-types/commands/GetDomainCommand.d.ts +6 -0
- package/dist-types/commands/GetLayoutCommand.d.ts +6 -0
- package/dist-types/commands/GetTemplateCommand.d.ts +6 -0
- package/dist-types/commands/ListCasesForContactCommand.d.ts +6 -0
- package/dist-types/commands/ListDomainsCommand.d.ts +6 -0
- package/dist-types/commands/ListFieldOptionsCommand.d.ts +6 -0
- package/dist-types/commands/ListFieldsCommand.d.ts +6 -0
- package/dist-types/commands/ListLayoutsCommand.d.ts +6 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +6 -0
- package/dist-types/commands/ListTemplatesCommand.d.ts +6 -0
- package/dist-types/commands/PutCaseEventConfigurationCommand.d.ts +6 -0
- package/dist-types/commands/SearchCasesCommand.d.ts +11 -0
- package/dist-types/commands/SearchRelatedItemsCommand.d.ts +6 -0
- package/dist-types/commands/TagResourceCommand.d.ts +6 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +6 -0
- package/dist-types/commands/UpdateCaseCommand.d.ts +6 -0
- package/dist-types/commands/UpdateFieldCommand.d.ts +6 -0
- package/dist-types/commands/UpdateLayoutCommand.d.ts +6 -0
- package/dist-types/commands/UpdateTemplateCommand.d.ts +6 -0
- package/dist-types/commands/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +16 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +3 -0
- package/dist-types/ts3.4/ConnectCases.d.ts +17 -0
- package/dist-types/ts3.4/ConnectCasesClient.d.ts +6 -0
- package/dist-types/ts3.4/commands/DeleteDomainCommand.d.ts +34 -0
- package/dist-types/ts3.4/commands/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +10 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +12 -0
- package/package.json +6 -6
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { ConnectCasesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectCasesClient";
|
|
5
5
|
import { PutCaseEventConfigurationRequest, PutCaseEventConfigurationResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link PutCaseEventConfigurationCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface PutCaseEventConfigurationCommandInput extends PutCaseEventConfigurationRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link PutCaseEventConfigurationCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface PutCaseEventConfigurationCommandOutput extends PutCaseEventConfigurationResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,13 +3,24 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { ConnectCasesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectCasesClient";
|
|
5
5
|
import { SearchCasesRequest, SearchCasesResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link SearchCasesCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface SearchCasesCommandInput extends SearchCasesRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link SearchCasesCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface SearchCasesCommandOutput extends SearchCasesResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
11
17
|
* <p>Searches for cases within their associated Cases domain. Search results are returned
|
|
12
18
|
* as a paginated list of abridged case documents.</p>
|
|
19
|
+
* <note>
|
|
20
|
+
* <p>For <code>customer_id</code> you must provide the full customer profile ARN in this
|
|
21
|
+
* format: <code> arn:aws:profile:your AWS Region:your AWS account ID:domains/profiles domain
|
|
22
|
+
* name/profiles/profile ID</code>. </p>
|
|
23
|
+
* </note>
|
|
13
24
|
* @example
|
|
14
25
|
* Use a bare-bones client and the command you need to make an API call.
|
|
15
26
|
* ```javascript
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { ConnectCasesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectCasesClient";
|
|
5
5
|
import { SearchRelatedItemsRequest, SearchRelatedItemsResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link SearchRelatedItemsCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface SearchRelatedItemsCommandInput extends SearchRelatedItemsRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link SearchRelatedItemsCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface SearchRelatedItemsCommandOutput extends SearchRelatedItemsResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { ConnectCasesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectCasesClient";
|
|
5
5
|
import { TagResourceRequest } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link TagResourceCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface TagResourceCommandInput extends TagResourceRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link TagResourceCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface TagResourceCommandOutput extends __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { ConnectCasesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectCasesClient";
|
|
5
5
|
import { UntagResourceRequest } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link UntagResourceCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface UntagResourceCommandInput extends UntagResourceRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link UntagResourceCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface UntagResourceCommandOutput extends __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { ConnectCasesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectCasesClient";
|
|
5
5
|
import { UpdateCaseRequest, UpdateCaseResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link UpdateCaseCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface UpdateCaseCommandInput extends UpdateCaseRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link UpdateCaseCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface UpdateCaseCommandOutput extends UpdateCaseResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { ConnectCasesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectCasesClient";
|
|
5
5
|
import { UpdateFieldRequest, UpdateFieldResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link UpdateFieldCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface UpdateFieldCommandInput extends UpdateFieldRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link UpdateFieldCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface UpdateFieldCommandOutput extends UpdateFieldResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { ConnectCasesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectCasesClient";
|
|
5
5
|
import { UpdateLayoutRequest, UpdateLayoutResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link UpdateLayoutCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface UpdateLayoutCommandInput extends UpdateLayoutRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link UpdateLayoutCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface UpdateLayoutCommandOutput extends UpdateLayoutResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { ConnectCasesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectCasesClient";
|
|
5
5
|
import { UpdateTemplateRequest, UpdateTemplateResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link UpdateTemplateCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface UpdateTemplateCommandInput extends UpdateTemplateRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link UpdateTemplateCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface UpdateTemplateCommandOutput extends UpdateTemplateResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -6,6 +6,7 @@ export * from "./CreateFieldCommand";
|
|
|
6
6
|
export * from "./CreateLayoutCommand";
|
|
7
7
|
export * from "./CreateRelatedItemCommand";
|
|
8
8
|
export * from "./CreateTemplateCommand";
|
|
9
|
+
export * from "./DeleteDomainCommand";
|
|
9
10
|
export * from "./GetCaseCommand";
|
|
10
11
|
export * from "./GetCaseEventConfigurationCommand";
|
|
11
12
|
export * from "./GetDomainCommand";
|
|
@@ -715,6 +715,14 @@ export interface CreateDomainResponse {
|
|
|
715
715
|
*/
|
|
716
716
|
domainStatus: DomainStatus | string | undefined;
|
|
717
717
|
}
|
|
718
|
+
export interface DeleteDomainRequest {
|
|
719
|
+
/**
|
|
720
|
+
* <p>The unique identifier of the Cases domain. </p>
|
|
721
|
+
*/
|
|
722
|
+
domainId: string | undefined;
|
|
723
|
+
}
|
|
724
|
+
export interface DeleteDomainResponse {
|
|
725
|
+
}
|
|
718
726
|
export interface GetCaseEventConfigurationRequest {
|
|
719
727
|
/**
|
|
720
728
|
* <p>The unique identifier of the Cases domain. </p>
|
|
@@ -1762,6 +1770,14 @@ export declare const CreateDomainRequestFilterSensitiveLog: (obj: CreateDomainRe
|
|
|
1762
1770
|
* @internal
|
|
1763
1771
|
*/
|
|
1764
1772
|
export declare const CreateDomainResponseFilterSensitiveLog: (obj: CreateDomainResponse) => any;
|
|
1773
|
+
/**
|
|
1774
|
+
* @internal
|
|
1775
|
+
*/
|
|
1776
|
+
export declare const DeleteDomainRequestFilterSensitiveLog: (obj: DeleteDomainRequest) => any;
|
|
1777
|
+
/**
|
|
1778
|
+
* @internal
|
|
1779
|
+
*/
|
|
1780
|
+
export declare const DeleteDomainResponseFilterSensitiveLog: (obj: DeleteDomainResponse) => any;
|
|
1765
1781
|
/**
|
|
1766
1782
|
* @internal
|
|
1767
1783
|
*/
|
|
@@ -8,6 +8,7 @@ import { CreateFieldCommandInput, CreateFieldCommandOutput } from "../commands/C
|
|
|
8
8
|
import { CreateLayoutCommandInput, CreateLayoutCommandOutput } from "../commands/CreateLayoutCommand";
|
|
9
9
|
import { CreateRelatedItemCommandInput, CreateRelatedItemCommandOutput } from "../commands/CreateRelatedItemCommand";
|
|
10
10
|
import { CreateTemplateCommandInput, CreateTemplateCommandOutput } from "../commands/CreateTemplateCommand";
|
|
11
|
+
import { DeleteDomainCommandInput, DeleteDomainCommandOutput } from "../commands/DeleteDomainCommand";
|
|
11
12
|
import { GetCaseCommandInput, GetCaseCommandOutput } from "../commands/GetCaseCommand";
|
|
12
13
|
import { GetCaseEventConfigurationCommandInput, GetCaseEventConfigurationCommandOutput } from "../commands/GetCaseEventConfigurationCommand";
|
|
13
14
|
import { GetDomainCommandInput, GetDomainCommandOutput } from "../commands/GetDomainCommand";
|
|
@@ -37,6 +38,7 @@ export declare const serializeAws_restJson1CreateFieldCommand: (input: CreateFie
|
|
|
37
38
|
export declare const serializeAws_restJson1CreateLayoutCommand: (input: CreateLayoutCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
38
39
|
export declare const serializeAws_restJson1CreateRelatedItemCommand: (input: CreateRelatedItemCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
39
40
|
export declare const serializeAws_restJson1CreateTemplateCommand: (input: CreateTemplateCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
41
|
+
export declare const serializeAws_restJson1DeleteDomainCommand: (input: DeleteDomainCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
40
42
|
export declare const serializeAws_restJson1GetCaseCommand: (input: GetCaseCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
41
43
|
export declare const serializeAws_restJson1GetCaseEventConfigurationCommand: (input: GetCaseEventConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
42
44
|
export declare const serializeAws_restJson1GetDomainCommand: (input: GetDomainCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -66,6 +68,7 @@ export declare const deserializeAws_restJson1CreateFieldCommand: (output: __Http
|
|
|
66
68
|
export declare const deserializeAws_restJson1CreateLayoutCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateLayoutCommandOutput>;
|
|
67
69
|
export declare const deserializeAws_restJson1CreateRelatedItemCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateRelatedItemCommandOutput>;
|
|
68
70
|
export declare const deserializeAws_restJson1CreateTemplateCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateTemplateCommandOutput>;
|
|
71
|
+
export declare const deserializeAws_restJson1DeleteDomainCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteDomainCommandOutput>;
|
|
69
72
|
export declare const deserializeAws_restJson1GetCaseCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetCaseCommandOutput>;
|
|
70
73
|
export declare const deserializeAws_restJson1GetCaseEventConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetCaseEventConfigurationCommandOutput>;
|
|
71
74
|
export declare const deserializeAws_restJson1GetDomainCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetDomainCommandOutput>;
|
|
@@ -31,6 +31,10 @@ import {
|
|
|
31
31
|
CreateTemplateCommandInput,
|
|
32
32
|
CreateTemplateCommandOutput,
|
|
33
33
|
} from "./commands/CreateTemplateCommand";
|
|
34
|
+
import {
|
|
35
|
+
DeleteDomainCommandInput,
|
|
36
|
+
DeleteDomainCommandOutput,
|
|
37
|
+
} from "./commands/DeleteDomainCommand";
|
|
34
38
|
import {
|
|
35
39
|
GetCaseCommandInput,
|
|
36
40
|
GetCaseCommandOutput,
|
|
@@ -221,6 +225,19 @@ export declare class ConnectCases extends ConnectCasesClient {
|
|
|
221
225
|
options: __HttpHandlerOptions,
|
|
222
226
|
cb: (err: any, data?: CreateTemplateCommandOutput) => void
|
|
223
227
|
): void;
|
|
228
|
+
deleteDomain(
|
|
229
|
+
args: DeleteDomainCommandInput,
|
|
230
|
+
options?: __HttpHandlerOptions
|
|
231
|
+
): Promise<DeleteDomainCommandOutput>;
|
|
232
|
+
deleteDomain(
|
|
233
|
+
args: DeleteDomainCommandInput,
|
|
234
|
+
cb: (err: any, data?: DeleteDomainCommandOutput) => void
|
|
235
|
+
): void;
|
|
236
|
+
deleteDomain(
|
|
237
|
+
args: DeleteDomainCommandInput,
|
|
238
|
+
options: __HttpHandlerOptions,
|
|
239
|
+
cb: (err: any, data?: DeleteDomainCommandOutput) => void
|
|
240
|
+
): void;
|
|
224
241
|
getCase(
|
|
225
242
|
args: GetCaseCommandInput,
|
|
226
243
|
options?: __HttpHandlerOptions
|
|
@@ -76,6 +76,10 @@ import {
|
|
|
76
76
|
CreateTemplateCommandInput,
|
|
77
77
|
CreateTemplateCommandOutput,
|
|
78
78
|
} from "./commands/CreateTemplateCommand";
|
|
79
|
+
import {
|
|
80
|
+
DeleteDomainCommandInput,
|
|
81
|
+
DeleteDomainCommandOutput,
|
|
82
|
+
} from "./commands/DeleteDomainCommand";
|
|
79
83
|
import {
|
|
80
84
|
GetCaseCommandInput,
|
|
81
85
|
GetCaseCommandOutput,
|
|
@@ -174,6 +178,7 @@ export declare type ServiceInputTypes =
|
|
|
174
178
|
| CreateLayoutCommandInput
|
|
175
179
|
| CreateRelatedItemCommandInput
|
|
176
180
|
| CreateTemplateCommandInput
|
|
181
|
+
| DeleteDomainCommandInput
|
|
177
182
|
| GetCaseCommandInput
|
|
178
183
|
| GetCaseEventConfigurationCommandInput
|
|
179
184
|
| GetDomainCommandInput
|
|
@@ -204,6 +209,7 @@ export declare type ServiceOutputTypes =
|
|
|
204
209
|
| CreateLayoutCommandOutput
|
|
205
210
|
| CreateRelatedItemCommandOutput
|
|
206
211
|
| CreateTemplateCommandOutput
|
|
212
|
+
| DeleteDomainCommandOutput
|
|
207
213
|
| GetCaseCommandOutput
|
|
208
214
|
| GetCaseEventConfigurationCommandOutput
|
|
209
215
|
| GetDomainCommandOutput
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import {
|
|
10
|
+
ConnectCasesClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../ConnectCasesClient";
|
|
14
|
+
import { DeleteDomainRequest, DeleteDomainResponse } from "../models/models_0";
|
|
15
|
+
export interface DeleteDomainCommandInput extends DeleteDomainRequest {}
|
|
16
|
+
export interface DeleteDomainCommandOutput
|
|
17
|
+
extends DeleteDomainResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
export declare class DeleteDomainCommand extends $Command<
|
|
20
|
+
DeleteDomainCommandInput,
|
|
21
|
+
DeleteDomainCommandOutput,
|
|
22
|
+
ConnectCasesClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: DeleteDomainCommandInput;
|
|
25
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
26
|
+
constructor(input: DeleteDomainCommandInput);
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: ConnectCasesClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<DeleteDomainCommandInput, DeleteDomainCommandOutput>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|
|
@@ -6,6 +6,7 @@ export * from "./CreateFieldCommand";
|
|
|
6
6
|
export * from "./CreateLayoutCommand";
|
|
7
7
|
export * from "./CreateRelatedItemCommand";
|
|
8
8
|
export * from "./CreateTemplateCommand";
|
|
9
|
+
export * from "./DeleteDomainCommand";
|
|
9
10
|
export * from "./GetCaseCommand";
|
|
10
11
|
export * from "./GetCaseEventConfigurationCommand";
|
|
11
12
|
export * from "./GetDomainCommand";
|
|
@@ -386,6 +386,10 @@ export interface CreateDomainResponse {
|
|
|
386
386
|
domainArn: string | undefined;
|
|
387
387
|
domainStatus: DomainStatus | string | undefined;
|
|
388
388
|
}
|
|
389
|
+
export interface DeleteDomainRequest {
|
|
390
|
+
domainId: string | undefined;
|
|
391
|
+
}
|
|
392
|
+
export interface DeleteDomainResponse {}
|
|
389
393
|
export interface GetCaseEventConfigurationRequest {
|
|
390
394
|
domainId: string | undefined;
|
|
391
395
|
}
|
|
@@ -825,6 +829,12 @@ export declare const CreateDomainRequestFilterSensitiveLog: (
|
|
|
825
829
|
export declare const CreateDomainResponseFilterSensitiveLog: (
|
|
826
830
|
obj: CreateDomainResponse
|
|
827
831
|
) => any;
|
|
832
|
+
export declare const DeleteDomainRequestFilterSensitiveLog: (
|
|
833
|
+
obj: DeleteDomainRequest
|
|
834
|
+
) => any;
|
|
835
|
+
export declare const DeleteDomainResponseFilterSensitiveLog: (
|
|
836
|
+
obj: DeleteDomainResponse
|
|
837
|
+
) => any;
|
|
828
838
|
export declare const GetCaseEventConfigurationRequestFilterSensitiveLog: (
|
|
829
839
|
obj: GetCaseEventConfigurationRequest
|
|
830
840
|
) => any;
|
|
@@ -35,6 +35,10 @@ import {
|
|
|
35
35
|
CreateTemplateCommandInput,
|
|
36
36
|
CreateTemplateCommandOutput,
|
|
37
37
|
} from "../commands/CreateTemplateCommand";
|
|
38
|
+
import {
|
|
39
|
+
DeleteDomainCommandInput,
|
|
40
|
+
DeleteDomainCommandOutput,
|
|
41
|
+
} from "../commands/DeleteDomainCommand";
|
|
38
42
|
import {
|
|
39
43
|
GetCaseCommandInput,
|
|
40
44
|
GetCaseCommandOutput,
|
|
@@ -151,6 +155,10 @@ export declare const serializeAws_restJson1CreateTemplateCommand: (
|
|
|
151
155
|
input: CreateTemplateCommandInput,
|
|
152
156
|
context: __SerdeContext
|
|
153
157
|
) => Promise<__HttpRequest>;
|
|
158
|
+
export declare const serializeAws_restJson1DeleteDomainCommand: (
|
|
159
|
+
input: DeleteDomainCommandInput,
|
|
160
|
+
context: __SerdeContext
|
|
161
|
+
) => Promise<__HttpRequest>;
|
|
154
162
|
export declare const serializeAws_restJson1GetCaseCommand: (
|
|
155
163
|
input: GetCaseCommandInput,
|
|
156
164
|
context: __SerdeContext
|
|
@@ -267,6 +275,10 @@ export declare const deserializeAws_restJson1CreateTemplateCommand: (
|
|
|
267
275
|
output: __HttpResponse,
|
|
268
276
|
context: __SerdeContext
|
|
269
277
|
) => Promise<CreateTemplateCommandOutput>;
|
|
278
|
+
export declare const deserializeAws_restJson1DeleteDomainCommand: (
|
|
279
|
+
output: __HttpResponse,
|
|
280
|
+
context: __SerdeContext
|
|
281
|
+
) => Promise<DeleteDomainCommandOutput>;
|
|
270
282
|
export declare const deserializeAws_restJson1GetCaseCommand: (
|
|
271
283
|
output: __HttpResponse,
|
|
272
284
|
context: __SerdeContext
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-connectcases",
|
|
3
3
|
"description": "AWS SDK for JavaScript Connectcases Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.281.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -20,9 +20,9 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
23
|
-
"@aws-sdk/client-sts": "3.
|
|
23
|
+
"@aws-sdk/client-sts": "3.281.0",
|
|
24
24
|
"@aws-sdk/config-resolver": "3.272.0",
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.281.0",
|
|
26
26
|
"@aws-sdk/fetch-http-handler": "3.272.0",
|
|
27
27
|
"@aws-sdk/hash-node": "3.272.0",
|
|
28
28
|
"@aws-sdk/invalid-dependency": "3.272.0",
|
|
@@ -39,14 +39,14 @@
|
|
|
39
39
|
"@aws-sdk/node-config-provider": "3.272.0",
|
|
40
40
|
"@aws-sdk/node-http-handler": "3.272.0",
|
|
41
41
|
"@aws-sdk/protocol-http": "3.272.0",
|
|
42
|
-
"@aws-sdk/smithy-client": "3.
|
|
42
|
+
"@aws-sdk/smithy-client": "3.279.0",
|
|
43
43
|
"@aws-sdk/types": "3.272.0",
|
|
44
44
|
"@aws-sdk/url-parser": "3.272.0",
|
|
45
45
|
"@aws-sdk/util-base64": "3.208.0",
|
|
46
46
|
"@aws-sdk/util-body-length-browser": "3.188.0",
|
|
47
47
|
"@aws-sdk/util-body-length-node": "3.208.0",
|
|
48
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
49
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
48
|
+
"@aws-sdk/util-defaults-mode-browser": "3.279.0",
|
|
49
|
+
"@aws-sdk/util-defaults-mode-node": "3.279.0",
|
|
50
50
|
"@aws-sdk/util-endpoints": "3.272.0",
|
|
51
51
|
"@aws-sdk/util-retry": "3.272.0",
|
|
52
52
|
"@aws-sdk/util-user-agent-browser": "3.272.0",
|