@aws-sdk/client-support-app 3.1077.0 → 3.1078.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 +18 -103
- package/dist-es/commandBuilder.js +6 -0
- package/dist-es/commands/CreateSlackChannelConfigurationCommand.js +2 -14
- package/dist-es/commands/DeleteAccountAliasCommand.js +2 -14
- package/dist-es/commands/DeleteSlackChannelConfigurationCommand.js +2 -14
- package/dist-es/commands/DeleteSlackWorkspaceConfigurationCommand.js +2 -14
- package/dist-es/commands/GetAccountAliasCommand.js +2 -14
- package/dist-es/commands/ListSlackChannelConfigurationsCommand.js +2 -14
- package/dist-es/commands/ListSlackWorkspaceConfigurationsCommand.js +2 -14
- package/dist-es/commands/PutAccountAliasCommand.js +2 -14
- package/dist-es/commands/RegisterSlackWorkspaceForOrganizationCommand.js +2 -14
- package/dist-es/commands/UpdateSlackChannelConfigurationCommand.js +2 -14
- package/dist-es/index.js +1 -0
- package/dist-types/commandBuilder.d.ts +18 -0
- package/dist-types/commands/CreateSlackChannelConfigurationCommand.d.ts +3 -8
- package/dist-types/commands/DeleteAccountAliasCommand.d.ts +3 -8
- package/dist-types/commands/DeleteSlackChannelConfigurationCommand.d.ts +3 -8
- package/dist-types/commands/DeleteSlackWorkspaceConfigurationCommand.d.ts +3 -8
- package/dist-types/commands/GetAccountAliasCommand.d.ts +3 -8
- package/dist-types/commands/ListSlackChannelConfigurationsCommand.d.ts +3 -8
- package/dist-types/commands/ListSlackWorkspaceConfigurationsCommand.d.ts +3 -8
- package/dist-types/commands/PutAccountAliasCommand.d.ts +3 -8
- package/dist-types/commands/RegisterSlackWorkspaceForOrganizationCommand.d.ts +3 -8
- package/dist-types/commands/UpdateSlackChannelConfigurationCommand.d.ts +3 -8
- package/dist-types/index.d.ts +1 -0
- package/dist-types/ts3.4/commandBuilder.d.ts +46 -0
- package/dist-types/ts3.4/commands/CreateSlackChannelConfigurationCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/DeleteAccountAliasCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/DeleteSlackChannelConfigurationCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/DeleteSlackWorkspaceConfigurationCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/GetAccountAliasCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/ListSlackChannelConfigurationsCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/ListSlackWorkspaceConfigurationsCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/PutAccountAliasCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/RegisterSlackWorkspaceForOrganizationCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/UpdateSlackChannelConfigurationCommand.d.ts +7 -16
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/package.json +8 -8
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import type { RegisterSlackWorkspaceForOrganizationRequest, RegisterSlackWorkspaceForOrganizationResult } from "../models/models_0";
|
|
4
|
-
import type { ServiceInputTypes, ServiceOutputTypes, SupportAppClientResolvedConfig } from "../SupportAppClient";
|
|
5
3
|
/**
|
|
6
4
|
* @public
|
|
7
5
|
*/
|
|
8
6
|
export type { __MetadataBearer };
|
|
9
|
-
export { $Command };
|
|
10
7
|
/**
|
|
11
8
|
* @public
|
|
12
9
|
*
|
|
@@ -22,11 +19,9 @@ export interface RegisterSlackWorkspaceForOrganizationCommandInput extends Regis
|
|
|
22
19
|
export interface RegisterSlackWorkspaceForOrganizationCommandOutput extends RegisterSlackWorkspaceForOrganizationResult, __MetadataBearer {
|
|
23
20
|
}
|
|
24
21
|
declare const RegisterSlackWorkspaceForOrganizationCommand_base: {
|
|
25
|
-
new (input: RegisterSlackWorkspaceForOrganizationCommandInput): import("@smithy/core/client").CommandImpl<RegisterSlackWorkspaceForOrganizationCommandInput, RegisterSlackWorkspaceForOrganizationCommandOutput, SupportAppClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (input: RegisterSlackWorkspaceForOrganizationCommandInput): import("@smithy/core/client").CommandImpl<RegisterSlackWorkspaceForOrganizationCommandInput, RegisterSlackWorkspaceForOrganizationCommandOutput, SupportAppClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
22
|
+
new (input: RegisterSlackWorkspaceForOrganizationCommandInput): import("@smithy/core/client").CommandImpl<RegisterSlackWorkspaceForOrganizationCommandInput, RegisterSlackWorkspaceForOrganizationCommandOutput, import("..").SupportAppClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (input: RegisterSlackWorkspaceForOrganizationCommandInput): import("@smithy/core/client").CommandImpl<RegisterSlackWorkspaceForOrganizationCommandInput, RegisterSlackWorkspaceForOrganizationCommandOutput, import("..").SupportAppClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
25
|
};
|
|
31
26
|
/**
|
|
32
27
|
* <p>Registers a Slack workspace for your Amazon Web Services account. To call this API, your account must be
|
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import type { UpdateSlackChannelConfigurationRequest, UpdateSlackChannelConfigurationResult } from "../models/models_0";
|
|
4
|
-
import type { ServiceInputTypes, ServiceOutputTypes, SupportAppClientResolvedConfig } from "../SupportAppClient";
|
|
5
3
|
/**
|
|
6
4
|
* @public
|
|
7
5
|
*/
|
|
8
6
|
export type { __MetadataBearer };
|
|
9
|
-
export { $Command };
|
|
10
7
|
/**
|
|
11
8
|
* @public
|
|
12
9
|
*
|
|
@@ -22,11 +19,9 @@ export interface UpdateSlackChannelConfigurationCommandInput extends UpdateSlack
|
|
|
22
19
|
export interface UpdateSlackChannelConfigurationCommandOutput extends UpdateSlackChannelConfigurationResult, __MetadataBearer {
|
|
23
20
|
}
|
|
24
21
|
declare const UpdateSlackChannelConfigurationCommand_base: {
|
|
25
|
-
new (input: UpdateSlackChannelConfigurationCommandInput): import("@smithy/core/client").CommandImpl<UpdateSlackChannelConfigurationCommandInput, UpdateSlackChannelConfigurationCommandOutput, SupportAppClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (input: UpdateSlackChannelConfigurationCommandInput): import("@smithy/core/client").CommandImpl<UpdateSlackChannelConfigurationCommandInput, UpdateSlackChannelConfigurationCommandOutput, SupportAppClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
22
|
+
new (input: UpdateSlackChannelConfigurationCommandInput): import("@smithy/core/client").CommandImpl<UpdateSlackChannelConfigurationCommandInput, UpdateSlackChannelConfigurationCommandOutput, import("..").SupportAppClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (input: UpdateSlackChannelConfigurationCommandInput): import("@smithy/core/client").CommandImpl<UpdateSlackChannelConfigurationCommandInput, UpdateSlackChannelConfigurationCommandOutput, import("..").SupportAppClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
25
|
};
|
|
31
26
|
/**
|
|
32
27
|
* <p>Updates the configuration for a Slack channel, such as case update notifications.</p>
|
package/dist-types/index.d.ts
CHANGED
|
@@ -62,6 +62,7 @@ export type { ClientInputEndpointParameters } from "./endpoint/EndpointParameter
|
|
|
62
62
|
export type { RuntimeExtension } from "./runtimeExtensions";
|
|
63
63
|
export type { SupportAppExtensionConfiguration } from "./extensionConfiguration";
|
|
64
64
|
export * from "./commands";
|
|
65
|
+
export { Command as $Command } from "@smithy/core/client";
|
|
65
66
|
export * from "./schemas/schemas_0";
|
|
66
67
|
export * from "./pagination";
|
|
67
68
|
export * from "./models/enums";
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ServiceInputTypes,
|
|
4
|
+
ServiceOutputTypes,
|
|
5
|
+
SupportAppClientResolvedConfig,
|
|
6
|
+
} from "./SupportAppClient";
|
|
7
|
+
export declare const command: <
|
|
8
|
+
I extends ServiceInputTypes,
|
|
9
|
+
O extends ServiceOutputTypes
|
|
10
|
+
>(
|
|
11
|
+
added: EndpointParameterInstructions,
|
|
12
|
+
plugins: (
|
|
13
|
+
CommandCtor: any,
|
|
14
|
+
clientStack: any,
|
|
15
|
+
config: any,
|
|
16
|
+
options: any
|
|
17
|
+
) => import("@smithy/types").Pluggable<any, any>[],
|
|
18
|
+
op: string,
|
|
19
|
+
$: import("@smithy/types").StaticOperationSchema,
|
|
20
|
+
smithyContext?: Record<string, unknown>
|
|
21
|
+
) => {
|
|
22
|
+
new (input: I): import("@smithy/core/client").CommandImpl<
|
|
23
|
+
I,
|
|
24
|
+
O,
|
|
25
|
+
SupportAppClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
...[input]: import("@smithy/types").OptionalParameter<I>
|
|
31
|
+
): import("@smithy/core/client").CommandImpl<
|
|
32
|
+
I,
|
|
33
|
+
O,
|
|
34
|
+
SupportAppClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare const _ep0: EndpointParameterInstructions;
|
|
41
|
+
export declare const _mw0: (
|
|
42
|
+
Command: any,
|
|
43
|
+
cs: any,
|
|
44
|
+
config: any,
|
|
45
|
+
o: any
|
|
46
|
+
) => never[];
|
|
@@ -1,16 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import {
|
|
4
3
|
CreateSlackChannelConfigurationRequest,
|
|
5
4
|
CreateSlackChannelConfigurationResult,
|
|
6
5
|
} from "../models/models_0";
|
|
7
|
-
import {
|
|
8
|
-
ServiceInputTypes,
|
|
9
|
-
ServiceOutputTypes,
|
|
10
|
-
SupportAppClientResolvedConfig,
|
|
11
|
-
} from "../SupportAppClient";
|
|
12
6
|
export { __MetadataBearer };
|
|
13
|
-
export { $Command };
|
|
14
7
|
export interface CreateSlackChannelConfigurationCommandInput
|
|
15
8
|
extends CreateSlackChannelConfigurationRequest {}
|
|
16
9
|
export interface CreateSlackChannelConfigurationCommandOutput
|
|
@@ -22,22 +15,20 @@ declare const CreateSlackChannelConfigurationCommand_base: {
|
|
|
22
15
|
): import("@smithy/core/client").CommandImpl<
|
|
23
16
|
CreateSlackChannelConfigurationCommandInput,
|
|
24
17
|
CreateSlackChannelConfigurationCommandOutput,
|
|
25
|
-
SupportAppClientResolvedConfig,
|
|
26
|
-
ServiceInputTypes,
|
|
27
|
-
ServiceOutputTypes
|
|
18
|
+
import("..").SupportAppClientResolvedConfig,
|
|
19
|
+
import("..").ServiceInputTypes,
|
|
20
|
+
import("..").ServiceOutputTypes
|
|
28
21
|
>;
|
|
29
22
|
new (
|
|
30
23
|
input: CreateSlackChannelConfigurationCommandInput
|
|
31
24
|
): import("@smithy/core/client").CommandImpl<
|
|
32
25
|
CreateSlackChannelConfigurationCommandInput,
|
|
33
26
|
CreateSlackChannelConfigurationCommandOutput,
|
|
34
|
-
SupportAppClientResolvedConfig,
|
|
35
|
-
ServiceInputTypes,
|
|
36
|
-
ServiceOutputTypes
|
|
27
|
+
import("..").SupportAppClientResolvedConfig,
|
|
28
|
+
import("..").ServiceInputTypes,
|
|
29
|
+
import("..").ServiceOutputTypes
|
|
37
30
|
>;
|
|
38
|
-
getEndpointParameterInstructions():
|
|
39
|
-
[x: string]: unknown;
|
|
40
|
-
};
|
|
31
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
41
32
|
};
|
|
42
33
|
export declare class CreateSlackChannelConfigurationCommand extends CreateSlackChannelConfigurationCommand_base {
|
|
43
34
|
protected static __types: {
|
|
@@ -1,16 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import {
|
|
4
3
|
DeleteAccountAliasRequest,
|
|
5
4
|
DeleteAccountAliasResult,
|
|
6
5
|
} from "../models/models_0";
|
|
7
|
-
import {
|
|
8
|
-
ServiceInputTypes,
|
|
9
|
-
ServiceOutputTypes,
|
|
10
|
-
SupportAppClientResolvedConfig,
|
|
11
|
-
} from "../SupportAppClient";
|
|
12
6
|
export { __MetadataBearer };
|
|
13
|
-
export { $Command };
|
|
14
7
|
export interface DeleteAccountAliasCommandInput
|
|
15
8
|
extends DeleteAccountAliasRequest {}
|
|
16
9
|
export interface DeleteAccountAliasCommandOutput
|
|
@@ -22,22 +15,20 @@ declare const DeleteAccountAliasCommand_base: {
|
|
|
22
15
|
): import("@smithy/core/client").CommandImpl<
|
|
23
16
|
DeleteAccountAliasCommandInput,
|
|
24
17
|
DeleteAccountAliasCommandOutput,
|
|
25
|
-
SupportAppClientResolvedConfig,
|
|
26
|
-
ServiceInputTypes,
|
|
27
|
-
ServiceOutputTypes
|
|
18
|
+
import("..").SupportAppClientResolvedConfig,
|
|
19
|
+
import("..").ServiceInputTypes,
|
|
20
|
+
import("..").ServiceOutputTypes
|
|
28
21
|
>;
|
|
29
22
|
new (
|
|
30
23
|
...[input]: [] | [DeleteAccountAliasCommandInput]
|
|
31
24
|
): import("@smithy/core/client").CommandImpl<
|
|
32
25
|
DeleteAccountAliasCommandInput,
|
|
33
26
|
DeleteAccountAliasCommandOutput,
|
|
34
|
-
SupportAppClientResolvedConfig,
|
|
35
|
-
ServiceInputTypes,
|
|
36
|
-
ServiceOutputTypes
|
|
27
|
+
import("..").SupportAppClientResolvedConfig,
|
|
28
|
+
import("..").ServiceInputTypes,
|
|
29
|
+
import("..").ServiceOutputTypes
|
|
37
30
|
>;
|
|
38
|
-
getEndpointParameterInstructions():
|
|
39
|
-
[x: string]: unknown;
|
|
40
|
-
};
|
|
31
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
41
32
|
};
|
|
42
33
|
export declare class DeleteAccountAliasCommand extends DeleteAccountAliasCommand_base {
|
|
43
34
|
protected static __types: {
|
|
@@ -1,16 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import {
|
|
4
3
|
DeleteSlackChannelConfigurationRequest,
|
|
5
4
|
DeleteSlackChannelConfigurationResult,
|
|
6
5
|
} from "../models/models_0";
|
|
7
|
-
import {
|
|
8
|
-
ServiceInputTypes,
|
|
9
|
-
ServiceOutputTypes,
|
|
10
|
-
SupportAppClientResolvedConfig,
|
|
11
|
-
} from "../SupportAppClient";
|
|
12
6
|
export { __MetadataBearer };
|
|
13
|
-
export { $Command };
|
|
14
7
|
export interface DeleteSlackChannelConfigurationCommandInput
|
|
15
8
|
extends DeleteSlackChannelConfigurationRequest {}
|
|
16
9
|
export interface DeleteSlackChannelConfigurationCommandOutput
|
|
@@ -22,22 +15,20 @@ declare const DeleteSlackChannelConfigurationCommand_base: {
|
|
|
22
15
|
): import("@smithy/core/client").CommandImpl<
|
|
23
16
|
DeleteSlackChannelConfigurationCommandInput,
|
|
24
17
|
DeleteSlackChannelConfigurationCommandOutput,
|
|
25
|
-
SupportAppClientResolvedConfig,
|
|
26
|
-
ServiceInputTypes,
|
|
27
|
-
ServiceOutputTypes
|
|
18
|
+
import("..").SupportAppClientResolvedConfig,
|
|
19
|
+
import("..").ServiceInputTypes,
|
|
20
|
+
import("..").ServiceOutputTypes
|
|
28
21
|
>;
|
|
29
22
|
new (
|
|
30
23
|
input: DeleteSlackChannelConfigurationCommandInput
|
|
31
24
|
): import("@smithy/core/client").CommandImpl<
|
|
32
25
|
DeleteSlackChannelConfigurationCommandInput,
|
|
33
26
|
DeleteSlackChannelConfigurationCommandOutput,
|
|
34
|
-
SupportAppClientResolvedConfig,
|
|
35
|
-
ServiceInputTypes,
|
|
36
|
-
ServiceOutputTypes
|
|
27
|
+
import("..").SupportAppClientResolvedConfig,
|
|
28
|
+
import("..").ServiceInputTypes,
|
|
29
|
+
import("..").ServiceOutputTypes
|
|
37
30
|
>;
|
|
38
|
-
getEndpointParameterInstructions():
|
|
39
|
-
[x: string]: unknown;
|
|
40
|
-
};
|
|
31
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
41
32
|
};
|
|
42
33
|
export declare class DeleteSlackChannelConfigurationCommand extends DeleteSlackChannelConfigurationCommand_base {
|
|
43
34
|
protected static __types: {
|
|
@@ -1,16 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import {
|
|
4
3
|
DeleteSlackWorkspaceConfigurationRequest,
|
|
5
4
|
DeleteSlackWorkspaceConfigurationResult,
|
|
6
5
|
} from "../models/models_0";
|
|
7
|
-
import {
|
|
8
|
-
ServiceInputTypes,
|
|
9
|
-
ServiceOutputTypes,
|
|
10
|
-
SupportAppClientResolvedConfig,
|
|
11
|
-
} from "../SupportAppClient";
|
|
12
6
|
export { __MetadataBearer };
|
|
13
|
-
export { $Command };
|
|
14
7
|
export interface DeleteSlackWorkspaceConfigurationCommandInput
|
|
15
8
|
extends DeleteSlackWorkspaceConfigurationRequest {}
|
|
16
9
|
export interface DeleteSlackWorkspaceConfigurationCommandOutput
|
|
@@ -22,22 +15,20 @@ declare const DeleteSlackWorkspaceConfigurationCommand_base: {
|
|
|
22
15
|
): import("@smithy/core/client").CommandImpl<
|
|
23
16
|
DeleteSlackWorkspaceConfigurationCommandInput,
|
|
24
17
|
DeleteSlackWorkspaceConfigurationCommandOutput,
|
|
25
|
-
SupportAppClientResolvedConfig,
|
|
26
|
-
ServiceInputTypes,
|
|
27
|
-
ServiceOutputTypes
|
|
18
|
+
import("..").SupportAppClientResolvedConfig,
|
|
19
|
+
import("..").ServiceInputTypes,
|
|
20
|
+
import("..").ServiceOutputTypes
|
|
28
21
|
>;
|
|
29
22
|
new (
|
|
30
23
|
input: DeleteSlackWorkspaceConfigurationCommandInput
|
|
31
24
|
): import("@smithy/core/client").CommandImpl<
|
|
32
25
|
DeleteSlackWorkspaceConfigurationCommandInput,
|
|
33
26
|
DeleteSlackWorkspaceConfigurationCommandOutput,
|
|
34
|
-
SupportAppClientResolvedConfig,
|
|
35
|
-
ServiceInputTypes,
|
|
36
|
-
ServiceOutputTypes
|
|
27
|
+
import("..").SupportAppClientResolvedConfig,
|
|
28
|
+
import("..").ServiceInputTypes,
|
|
29
|
+
import("..").ServiceOutputTypes
|
|
37
30
|
>;
|
|
38
|
-
getEndpointParameterInstructions():
|
|
39
|
-
[x: string]: unknown;
|
|
40
|
-
};
|
|
31
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
41
32
|
};
|
|
42
33
|
export declare class DeleteSlackWorkspaceConfigurationCommand extends DeleteSlackWorkspaceConfigurationCommand_base {
|
|
43
34
|
protected static __types: {
|
|
@@ -1,16 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import {
|
|
4
3
|
GetAccountAliasRequest,
|
|
5
4
|
GetAccountAliasResult,
|
|
6
5
|
} from "../models/models_0";
|
|
7
|
-
import {
|
|
8
|
-
ServiceInputTypes,
|
|
9
|
-
ServiceOutputTypes,
|
|
10
|
-
SupportAppClientResolvedConfig,
|
|
11
|
-
} from "../SupportAppClient";
|
|
12
6
|
export { __MetadataBearer };
|
|
13
|
-
export { $Command };
|
|
14
7
|
export interface GetAccountAliasCommandInput extends GetAccountAliasRequest {}
|
|
15
8
|
export interface GetAccountAliasCommandOutput
|
|
16
9
|
extends GetAccountAliasResult,
|
|
@@ -21,22 +14,20 @@ declare const GetAccountAliasCommand_base: {
|
|
|
21
14
|
): import("@smithy/core/client").CommandImpl<
|
|
22
15
|
GetAccountAliasCommandInput,
|
|
23
16
|
GetAccountAliasCommandOutput,
|
|
24
|
-
SupportAppClientResolvedConfig,
|
|
25
|
-
ServiceInputTypes,
|
|
26
|
-
ServiceOutputTypes
|
|
17
|
+
import("..").SupportAppClientResolvedConfig,
|
|
18
|
+
import("..").ServiceInputTypes,
|
|
19
|
+
import("..").ServiceOutputTypes
|
|
27
20
|
>;
|
|
28
21
|
new (
|
|
29
22
|
...[input]: [] | [GetAccountAliasCommandInput]
|
|
30
23
|
): import("@smithy/core/client").CommandImpl<
|
|
31
24
|
GetAccountAliasCommandInput,
|
|
32
25
|
GetAccountAliasCommandOutput,
|
|
33
|
-
SupportAppClientResolvedConfig,
|
|
34
|
-
ServiceInputTypes,
|
|
35
|
-
ServiceOutputTypes
|
|
26
|
+
import("..").SupportAppClientResolvedConfig,
|
|
27
|
+
import("..").ServiceInputTypes,
|
|
28
|
+
import("..").ServiceOutputTypes
|
|
36
29
|
>;
|
|
37
|
-
getEndpointParameterInstructions():
|
|
38
|
-
[x: string]: unknown;
|
|
39
|
-
};
|
|
30
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
40
31
|
};
|
|
41
32
|
export declare class GetAccountAliasCommand extends GetAccountAliasCommand_base {
|
|
42
33
|
protected static __types: {
|
|
@@ -1,16 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import {
|
|
4
3
|
ListSlackChannelConfigurationsRequest,
|
|
5
4
|
ListSlackChannelConfigurationsResult,
|
|
6
5
|
} from "../models/models_0";
|
|
7
|
-
import {
|
|
8
|
-
ServiceInputTypes,
|
|
9
|
-
ServiceOutputTypes,
|
|
10
|
-
SupportAppClientResolvedConfig,
|
|
11
|
-
} from "../SupportAppClient";
|
|
12
6
|
export { __MetadataBearer };
|
|
13
|
-
export { $Command };
|
|
14
7
|
export interface ListSlackChannelConfigurationsCommandInput
|
|
15
8
|
extends ListSlackChannelConfigurationsRequest {}
|
|
16
9
|
export interface ListSlackChannelConfigurationsCommandOutput
|
|
@@ -22,22 +15,20 @@ declare const ListSlackChannelConfigurationsCommand_base: {
|
|
|
22
15
|
): import("@smithy/core/client").CommandImpl<
|
|
23
16
|
ListSlackChannelConfigurationsCommandInput,
|
|
24
17
|
ListSlackChannelConfigurationsCommandOutput,
|
|
25
|
-
SupportAppClientResolvedConfig,
|
|
26
|
-
ServiceInputTypes,
|
|
27
|
-
ServiceOutputTypes
|
|
18
|
+
import("..").SupportAppClientResolvedConfig,
|
|
19
|
+
import("..").ServiceInputTypes,
|
|
20
|
+
import("..").ServiceOutputTypes
|
|
28
21
|
>;
|
|
29
22
|
new (
|
|
30
23
|
...[input]: [] | [ListSlackChannelConfigurationsCommandInput]
|
|
31
24
|
): import("@smithy/core/client").CommandImpl<
|
|
32
25
|
ListSlackChannelConfigurationsCommandInput,
|
|
33
26
|
ListSlackChannelConfigurationsCommandOutput,
|
|
34
|
-
SupportAppClientResolvedConfig,
|
|
35
|
-
ServiceInputTypes,
|
|
36
|
-
ServiceOutputTypes
|
|
27
|
+
import("..").SupportAppClientResolvedConfig,
|
|
28
|
+
import("..").ServiceInputTypes,
|
|
29
|
+
import("..").ServiceOutputTypes
|
|
37
30
|
>;
|
|
38
|
-
getEndpointParameterInstructions():
|
|
39
|
-
[x: string]: unknown;
|
|
40
|
-
};
|
|
31
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
41
32
|
};
|
|
42
33
|
export declare class ListSlackChannelConfigurationsCommand extends ListSlackChannelConfigurationsCommand_base {
|
|
43
34
|
protected static __types: {
|
|
@@ -1,16 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import {
|
|
4
3
|
ListSlackWorkspaceConfigurationsRequest,
|
|
5
4
|
ListSlackWorkspaceConfigurationsResult,
|
|
6
5
|
} from "../models/models_0";
|
|
7
|
-
import {
|
|
8
|
-
ServiceInputTypes,
|
|
9
|
-
ServiceOutputTypes,
|
|
10
|
-
SupportAppClientResolvedConfig,
|
|
11
|
-
} from "../SupportAppClient";
|
|
12
6
|
export { __MetadataBearer };
|
|
13
|
-
export { $Command };
|
|
14
7
|
export interface ListSlackWorkspaceConfigurationsCommandInput
|
|
15
8
|
extends ListSlackWorkspaceConfigurationsRequest {}
|
|
16
9
|
export interface ListSlackWorkspaceConfigurationsCommandOutput
|
|
@@ -22,22 +15,20 @@ declare const ListSlackWorkspaceConfigurationsCommand_base: {
|
|
|
22
15
|
): import("@smithy/core/client").CommandImpl<
|
|
23
16
|
ListSlackWorkspaceConfigurationsCommandInput,
|
|
24
17
|
ListSlackWorkspaceConfigurationsCommandOutput,
|
|
25
|
-
SupportAppClientResolvedConfig,
|
|
26
|
-
ServiceInputTypes,
|
|
27
|
-
ServiceOutputTypes
|
|
18
|
+
import("..").SupportAppClientResolvedConfig,
|
|
19
|
+
import("..").ServiceInputTypes,
|
|
20
|
+
import("..").ServiceOutputTypes
|
|
28
21
|
>;
|
|
29
22
|
new (
|
|
30
23
|
...[input]: [] | [ListSlackWorkspaceConfigurationsCommandInput]
|
|
31
24
|
): import("@smithy/core/client").CommandImpl<
|
|
32
25
|
ListSlackWorkspaceConfigurationsCommandInput,
|
|
33
26
|
ListSlackWorkspaceConfigurationsCommandOutput,
|
|
34
|
-
SupportAppClientResolvedConfig,
|
|
35
|
-
ServiceInputTypes,
|
|
36
|
-
ServiceOutputTypes
|
|
27
|
+
import("..").SupportAppClientResolvedConfig,
|
|
28
|
+
import("..").ServiceInputTypes,
|
|
29
|
+
import("..").ServiceOutputTypes
|
|
37
30
|
>;
|
|
38
|
-
getEndpointParameterInstructions():
|
|
39
|
-
[x: string]: unknown;
|
|
40
|
-
};
|
|
31
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
41
32
|
};
|
|
42
33
|
export declare class ListSlackWorkspaceConfigurationsCommand extends ListSlackWorkspaceConfigurationsCommand_base {
|
|
43
34
|
protected static __types: {
|
|
@@ -1,16 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import {
|
|
4
3
|
PutAccountAliasRequest,
|
|
5
4
|
PutAccountAliasResult,
|
|
6
5
|
} from "../models/models_0";
|
|
7
|
-
import {
|
|
8
|
-
ServiceInputTypes,
|
|
9
|
-
ServiceOutputTypes,
|
|
10
|
-
SupportAppClientResolvedConfig,
|
|
11
|
-
} from "../SupportAppClient";
|
|
12
6
|
export { __MetadataBearer };
|
|
13
|
-
export { $Command };
|
|
14
7
|
export interface PutAccountAliasCommandInput extends PutAccountAliasRequest {}
|
|
15
8
|
export interface PutAccountAliasCommandOutput
|
|
16
9
|
extends PutAccountAliasResult,
|
|
@@ -21,22 +14,20 @@ declare const PutAccountAliasCommand_base: {
|
|
|
21
14
|
): import("@smithy/core/client").CommandImpl<
|
|
22
15
|
PutAccountAliasCommandInput,
|
|
23
16
|
PutAccountAliasCommandOutput,
|
|
24
|
-
SupportAppClientResolvedConfig,
|
|
25
|
-
ServiceInputTypes,
|
|
26
|
-
ServiceOutputTypes
|
|
17
|
+
import("..").SupportAppClientResolvedConfig,
|
|
18
|
+
import("..").ServiceInputTypes,
|
|
19
|
+
import("..").ServiceOutputTypes
|
|
27
20
|
>;
|
|
28
21
|
new (
|
|
29
22
|
input: PutAccountAliasCommandInput
|
|
30
23
|
): import("@smithy/core/client").CommandImpl<
|
|
31
24
|
PutAccountAliasCommandInput,
|
|
32
25
|
PutAccountAliasCommandOutput,
|
|
33
|
-
SupportAppClientResolvedConfig,
|
|
34
|
-
ServiceInputTypes,
|
|
35
|
-
ServiceOutputTypes
|
|
26
|
+
import("..").SupportAppClientResolvedConfig,
|
|
27
|
+
import("..").ServiceInputTypes,
|
|
28
|
+
import("..").ServiceOutputTypes
|
|
36
29
|
>;
|
|
37
|
-
getEndpointParameterInstructions():
|
|
38
|
-
[x: string]: unknown;
|
|
39
|
-
};
|
|
30
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
40
31
|
};
|
|
41
32
|
export declare class PutAccountAliasCommand extends PutAccountAliasCommand_base {
|
|
42
33
|
protected static __types: {
|
|
@@ -1,16 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import {
|
|
4
3
|
RegisterSlackWorkspaceForOrganizationRequest,
|
|
5
4
|
RegisterSlackWorkspaceForOrganizationResult,
|
|
6
5
|
} from "../models/models_0";
|
|
7
|
-
import {
|
|
8
|
-
ServiceInputTypes,
|
|
9
|
-
ServiceOutputTypes,
|
|
10
|
-
SupportAppClientResolvedConfig,
|
|
11
|
-
} from "../SupportAppClient";
|
|
12
6
|
export { __MetadataBearer };
|
|
13
|
-
export { $Command };
|
|
14
7
|
export interface RegisterSlackWorkspaceForOrganizationCommandInput
|
|
15
8
|
extends RegisterSlackWorkspaceForOrganizationRequest {}
|
|
16
9
|
export interface RegisterSlackWorkspaceForOrganizationCommandOutput
|
|
@@ -22,22 +15,20 @@ declare const RegisterSlackWorkspaceForOrganizationCommand_base: {
|
|
|
22
15
|
): import("@smithy/core/client").CommandImpl<
|
|
23
16
|
RegisterSlackWorkspaceForOrganizationCommandInput,
|
|
24
17
|
RegisterSlackWorkspaceForOrganizationCommandOutput,
|
|
25
|
-
SupportAppClientResolvedConfig,
|
|
26
|
-
ServiceInputTypes,
|
|
27
|
-
ServiceOutputTypes
|
|
18
|
+
import("..").SupportAppClientResolvedConfig,
|
|
19
|
+
import("..").ServiceInputTypes,
|
|
20
|
+
import("..").ServiceOutputTypes
|
|
28
21
|
>;
|
|
29
22
|
new (
|
|
30
23
|
input: RegisterSlackWorkspaceForOrganizationCommandInput
|
|
31
24
|
): import("@smithy/core/client").CommandImpl<
|
|
32
25
|
RegisterSlackWorkspaceForOrganizationCommandInput,
|
|
33
26
|
RegisterSlackWorkspaceForOrganizationCommandOutput,
|
|
34
|
-
SupportAppClientResolvedConfig,
|
|
35
|
-
ServiceInputTypes,
|
|
36
|
-
ServiceOutputTypes
|
|
27
|
+
import("..").SupportAppClientResolvedConfig,
|
|
28
|
+
import("..").ServiceInputTypes,
|
|
29
|
+
import("..").ServiceOutputTypes
|
|
37
30
|
>;
|
|
38
|
-
getEndpointParameterInstructions():
|
|
39
|
-
[x: string]: unknown;
|
|
40
|
-
};
|
|
31
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
41
32
|
};
|
|
42
33
|
export declare class RegisterSlackWorkspaceForOrganizationCommand extends RegisterSlackWorkspaceForOrganizationCommand_base {
|
|
43
34
|
protected static __types: {
|
|
@@ -1,16 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import {
|
|
4
3
|
UpdateSlackChannelConfigurationRequest,
|
|
5
4
|
UpdateSlackChannelConfigurationResult,
|
|
6
5
|
} from "../models/models_0";
|
|
7
|
-
import {
|
|
8
|
-
ServiceInputTypes,
|
|
9
|
-
ServiceOutputTypes,
|
|
10
|
-
SupportAppClientResolvedConfig,
|
|
11
|
-
} from "../SupportAppClient";
|
|
12
6
|
export { __MetadataBearer };
|
|
13
|
-
export { $Command };
|
|
14
7
|
export interface UpdateSlackChannelConfigurationCommandInput
|
|
15
8
|
extends UpdateSlackChannelConfigurationRequest {}
|
|
16
9
|
export interface UpdateSlackChannelConfigurationCommandOutput
|
|
@@ -22,22 +15,20 @@ declare const UpdateSlackChannelConfigurationCommand_base: {
|
|
|
22
15
|
): import("@smithy/core/client").CommandImpl<
|
|
23
16
|
UpdateSlackChannelConfigurationCommandInput,
|
|
24
17
|
UpdateSlackChannelConfigurationCommandOutput,
|
|
25
|
-
SupportAppClientResolvedConfig,
|
|
26
|
-
ServiceInputTypes,
|
|
27
|
-
ServiceOutputTypes
|
|
18
|
+
import("..").SupportAppClientResolvedConfig,
|
|
19
|
+
import("..").ServiceInputTypes,
|
|
20
|
+
import("..").ServiceOutputTypes
|
|
28
21
|
>;
|
|
29
22
|
new (
|
|
30
23
|
input: UpdateSlackChannelConfigurationCommandInput
|
|
31
24
|
): import("@smithy/core/client").CommandImpl<
|
|
32
25
|
UpdateSlackChannelConfigurationCommandInput,
|
|
33
26
|
UpdateSlackChannelConfigurationCommandOutput,
|
|
34
|
-
SupportAppClientResolvedConfig,
|
|
35
|
-
ServiceInputTypes,
|
|
36
|
-
ServiceOutputTypes
|
|
27
|
+
import("..").SupportAppClientResolvedConfig,
|
|
28
|
+
import("..").ServiceInputTypes,
|
|
29
|
+
import("..").ServiceOutputTypes
|
|
37
30
|
>;
|
|
38
|
-
getEndpointParameterInstructions():
|
|
39
|
-
[x: string]: unknown;
|
|
40
|
-
};
|
|
31
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
41
32
|
};
|
|
42
33
|
export declare class UpdateSlackChannelConfigurationCommand extends UpdateSlackChannelConfigurationCommand_base {
|
|
43
34
|
protected static __types: {
|
|
@@ -4,6 +4,7 @@ export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
|
|
|
4
4
|
export { RuntimeExtension } from "./runtimeExtensions";
|
|
5
5
|
export { SupportAppExtensionConfiguration } from "./extensionConfiguration";
|
|
6
6
|
export * from "./commands";
|
|
7
|
+
export { Command as $Command } from "@smithy/core/client";
|
|
7
8
|
export * from "./schemas/schemas_0";
|
|
8
9
|
export * from "./pagination";
|
|
9
10
|
export * from "./models/enums";
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-support-app",
|
|
3
3
|
"description": "AWS SDK for JavaScript Support App Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.1078.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline",
|
|
@@ -19,13 +19,13 @@
|
|
|
19
19
|
"module": "./dist-es/index.js",
|
|
20
20
|
"sideEffects": false,
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"@aws-sdk/core": "^3.974.
|
|
23
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
24
|
-
"@aws-sdk/types": "^3.973.
|
|
25
|
-
"@smithy/core": "^3.
|
|
26
|
-
"@smithy/fetch-http-handler": "^5.6.
|
|
27
|
-
"@smithy/node-http-handler": "^4.9.
|
|
28
|
-
"@smithy/types": "^4.15.
|
|
22
|
+
"@aws-sdk/core": "^3.974.26",
|
|
23
|
+
"@aws-sdk/credential-provider-node": "^3.972.61",
|
|
24
|
+
"@aws-sdk/types": "^3.973.15",
|
|
25
|
+
"@smithy/core": "^3.29.0",
|
|
26
|
+
"@smithy/fetch-http-handler": "^5.6.2",
|
|
27
|
+
"@smithy/node-http-handler": "^4.9.2",
|
|
28
|
+
"@smithy/types": "^4.15.1",
|
|
29
29
|
"tslib": "^2.6.2"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|