@aws-sdk/client-ssm-contacts 3.294.0 → 3.296.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/commands/AcceptPageCommand.js +4 -4
- package/dist-cjs/commands/ActivateContactChannelCommand.js +4 -4
- package/dist-cjs/commands/CreateContactChannelCommand.js +4 -4
- package/dist-cjs/commands/CreateContactCommand.js +4 -4
- package/dist-cjs/commands/DeactivateContactChannelCommand.js +4 -4
- package/dist-cjs/commands/DeleteContactChannelCommand.js +4 -4
- package/dist-cjs/commands/DeleteContactCommand.js +4 -4
- package/dist-cjs/commands/DescribeEngagementCommand.js +4 -4
- package/dist-cjs/commands/DescribePageCommand.js +4 -4
- package/dist-cjs/commands/GetContactChannelCommand.js +4 -4
- package/dist-cjs/commands/GetContactCommand.js +4 -4
- package/dist-cjs/commands/GetContactPolicyCommand.js +4 -4
- package/dist-cjs/commands/ListContactChannelsCommand.js +4 -4
- package/dist-cjs/commands/ListContactsCommand.js +4 -4
- package/dist-cjs/commands/ListEngagementsCommand.js +4 -4
- package/dist-cjs/commands/ListPageReceiptsCommand.js +4 -4
- package/dist-cjs/commands/ListPagesByContactCommand.js +4 -4
- package/dist-cjs/commands/ListPagesByEngagementCommand.js +4 -4
- package/dist-cjs/commands/ListTagsForResourceCommand.js +4 -4
- package/dist-cjs/commands/PutContactPolicyCommand.js +4 -4
- package/dist-cjs/commands/SendActivationCodeCommand.js +4 -4
- package/dist-cjs/commands/StartEngagementCommand.js +4 -4
- package/dist-cjs/commands/StopEngagementCommand.js +4 -4
- package/dist-cjs/commands/TagResourceCommand.js +4 -4
- package/dist-cjs/commands/UntagResourceCommand.js +4 -4
- package/dist-cjs/commands/UpdateContactChannelCommand.js +4 -4
- package/dist-cjs/commands/UpdateContactCommand.js +4 -4
- package/dist-es/commands/AcceptPageCommand.js +4 -4
- package/dist-es/commands/ActivateContactChannelCommand.js +4 -4
- package/dist-es/commands/CreateContactChannelCommand.js +4 -4
- package/dist-es/commands/CreateContactCommand.js +4 -4
- package/dist-es/commands/DeactivateContactChannelCommand.js +4 -4
- package/dist-es/commands/DeleteContactChannelCommand.js +4 -4
- package/dist-es/commands/DeleteContactCommand.js +4 -4
- package/dist-es/commands/DescribeEngagementCommand.js +4 -4
- package/dist-es/commands/DescribePageCommand.js +4 -4
- package/dist-es/commands/GetContactChannelCommand.js +4 -4
- package/dist-es/commands/GetContactCommand.js +4 -4
- package/dist-es/commands/GetContactPolicyCommand.js +4 -4
- package/dist-es/commands/ListContactChannelsCommand.js +4 -4
- package/dist-es/commands/ListContactsCommand.js +4 -4
- package/dist-es/commands/ListEngagementsCommand.js +4 -4
- package/dist-es/commands/ListPageReceiptsCommand.js +4 -4
- package/dist-es/commands/ListPagesByContactCommand.js +4 -4
- package/dist-es/commands/ListPagesByEngagementCommand.js +4 -4
- package/dist-es/commands/ListTagsForResourceCommand.js +4 -4
- package/dist-es/commands/PutContactPolicyCommand.js +4 -4
- package/dist-es/commands/SendActivationCodeCommand.js +4 -4
- package/dist-es/commands/StartEngagementCommand.js +4 -4
- package/dist-es/commands/StopEngagementCommand.js +4 -4
- package/dist-es/commands/TagResourceCommand.js +4 -4
- package/dist-es/commands/UntagResourceCommand.js +4 -4
- package/dist-es/commands/UpdateContactChannelCommand.js +4 -4
- package/dist-es/commands/UpdateContactCommand.js +4 -4
- package/dist-types/SSMContactsClient.d.ts +4 -4
- package/dist-types/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/ts3.4/SSMContactsClient.d.ts +4 -4
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +3 -4
- package/package.json +36 -36
|
@@ -157,7 +157,7 @@ import {
|
|
|
157
157
|
ClientResolvedEndpointParameters,
|
|
158
158
|
EndpointParameters,
|
|
159
159
|
} from "./endpoint/EndpointParameters";
|
|
160
|
-
export
|
|
160
|
+
export type ServiceInputTypes =
|
|
161
161
|
| AcceptPageCommandInput
|
|
162
162
|
| ActivateContactChannelCommandInput
|
|
163
163
|
| CreateContactChannelCommandInput
|
|
@@ -185,7 +185,7 @@ export declare type ServiceInputTypes =
|
|
|
185
185
|
| UntagResourceCommandInput
|
|
186
186
|
| UpdateContactChannelCommandInput
|
|
187
187
|
| UpdateContactCommandInput;
|
|
188
|
-
export
|
|
188
|
+
export type ServiceOutputTypes =
|
|
189
189
|
| AcceptPageCommandOutput
|
|
190
190
|
| ActivateContactChannelCommandOutput
|
|
191
191
|
| CreateContactChannelCommandOutput
|
|
@@ -237,7 +237,7 @@ export interface ClientDefaults
|
|
|
237
237
|
logger?: __Logger;
|
|
238
238
|
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
239
239
|
}
|
|
240
|
-
|
|
240
|
+
type SSMContactsClientConfigType = Partial<
|
|
241
241
|
__SmithyConfiguration<__HttpHandlerOptions>
|
|
242
242
|
> &
|
|
243
243
|
ClientDefaults &
|
|
@@ -249,7 +249,7 @@ declare type SSMContactsClientConfigType = Partial<
|
|
|
249
249
|
UserAgentInputConfig &
|
|
250
250
|
ClientInputEndpointParameters;
|
|
251
251
|
export interface SSMContactsClientConfig extends SSMContactsClientConfigType {}
|
|
252
|
-
|
|
252
|
+
type SSMContactsClientResolvedConfigType =
|
|
253
253
|
__SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
254
254
|
Required<ClientDefaults> &
|
|
255
255
|
RegionResolvedConfig &
|
|
@@ -16,10 +16,9 @@ export interface ClientInputEndpointParameters {
|
|
|
16
16
|
| EndpointV2
|
|
17
17
|
| Provider<EndpointV2>;
|
|
18
18
|
}
|
|
19
|
-
export
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
};
|
|
19
|
+
export type ClientResolvedEndpointParameters = ClientInputEndpointParameters & {
|
|
20
|
+
defaultSigningName: string;
|
|
21
|
+
};
|
|
23
22
|
export declare const resolveClientEndpointParameters: <T>(
|
|
24
23
|
options: T & ClientInputEndpointParameters
|
|
25
24
|
) => T &
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-ssm-contacts",
|
|
3
3
|
"description": "AWS SDK for JavaScript Ssm Contacts Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.296.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,43 +20,43 @@
|
|
|
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.
|
|
24
|
-
"@aws-sdk/config-resolver": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
27
|
-
"@aws-sdk/hash-node": "3.
|
|
28
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
29
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
30
|
-
"@aws-sdk/middleware-endpoint": "3.
|
|
31
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
32
|
-
"@aws-sdk/middleware-logger": "3.
|
|
33
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
34
|
-
"@aws-sdk/middleware-retry": "3.
|
|
35
|
-
"@aws-sdk/middleware-serde": "3.
|
|
36
|
-
"@aws-sdk/middleware-signing": "3.
|
|
37
|
-
"@aws-sdk/middleware-stack": "3.
|
|
38
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
39
|
-
"@aws-sdk/node-config-provider": "3.
|
|
40
|
-
"@aws-sdk/node-http-handler": "3.
|
|
41
|
-
"@aws-sdk/protocol-http": "3.
|
|
42
|
-
"@aws-sdk/smithy-client": "3.
|
|
43
|
-
"@aws-sdk/types": "3.
|
|
44
|
-
"@aws-sdk/url-parser": "3.
|
|
45
|
-
"@aws-sdk/util-base64": "3.
|
|
46
|
-
"@aws-sdk/util-body-length-browser": "3.
|
|
47
|
-
"@aws-sdk/util-body-length-node": "3.
|
|
48
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
49
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
50
|
-
"@aws-sdk/util-endpoints": "3.
|
|
51
|
-
"@aws-sdk/util-retry": "3.
|
|
52
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
53
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
54
|
-
"@aws-sdk/util-utf8": "3.
|
|
55
|
-
"tslib": "^2.
|
|
23
|
+
"@aws-sdk/client-sts": "3.296.0",
|
|
24
|
+
"@aws-sdk/config-resolver": "3.296.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.296.0",
|
|
26
|
+
"@aws-sdk/fetch-http-handler": "3.296.0",
|
|
27
|
+
"@aws-sdk/hash-node": "3.296.0",
|
|
28
|
+
"@aws-sdk/invalid-dependency": "3.296.0",
|
|
29
|
+
"@aws-sdk/middleware-content-length": "3.296.0",
|
|
30
|
+
"@aws-sdk/middleware-endpoint": "3.296.0",
|
|
31
|
+
"@aws-sdk/middleware-host-header": "3.296.0",
|
|
32
|
+
"@aws-sdk/middleware-logger": "3.296.0",
|
|
33
|
+
"@aws-sdk/middleware-recursion-detection": "3.296.0",
|
|
34
|
+
"@aws-sdk/middleware-retry": "3.296.0",
|
|
35
|
+
"@aws-sdk/middleware-serde": "3.296.0",
|
|
36
|
+
"@aws-sdk/middleware-signing": "3.296.0",
|
|
37
|
+
"@aws-sdk/middleware-stack": "3.296.0",
|
|
38
|
+
"@aws-sdk/middleware-user-agent": "3.296.0",
|
|
39
|
+
"@aws-sdk/node-config-provider": "3.296.0",
|
|
40
|
+
"@aws-sdk/node-http-handler": "3.296.0",
|
|
41
|
+
"@aws-sdk/protocol-http": "3.296.0",
|
|
42
|
+
"@aws-sdk/smithy-client": "3.296.0",
|
|
43
|
+
"@aws-sdk/types": "3.296.0",
|
|
44
|
+
"@aws-sdk/url-parser": "3.296.0",
|
|
45
|
+
"@aws-sdk/util-base64": "3.295.0",
|
|
46
|
+
"@aws-sdk/util-body-length-browser": "3.295.0",
|
|
47
|
+
"@aws-sdk/util-body-length-node": "3.295.0",
|
|
48
|
+
"@aws-sdk/util-defaults-mode-browser": "3.296.0",
|
|
49
|
+
"@aws-sdk/util-defaults-mode-node": "3.296.0",
|
|
50
|
+
"@aws-sdk/util-endpoints": "3.296.0",
|
|
51
|
+
"@aws-sdk/util-retry": "3.296.0",
|
|
52
|
+
"@aws-sdk/util-user-agent-browser": "3.296.0",
|
|
53
|
+
"@aws-sdk/util-user-agent-node": "3.296.0",
|
|
54
|
+
"@aws-sdk/util-utf8": "3.295.0",
|
|
55
|
+
"tslib": "^2.5.0",
|
|
56
56
|
"uuid": "^8.3.2"
|
|
57
57
|
},
|
|
58
58
|
"devDependencies": {
|
|
59
|
-
"@aws-sdk/service-client-documentation-generator": "3.
|
|
59
|
+
"@aws-sdk/service-client-documentation-generator": "3.295.0",
|
|
60
60
|
"@tsconfig/node14": "1.0.3",
|
|
61
61
|
"@types/node": "^14.14.31",
|
|
62
62
|
"@types/uuid": "^8.3.0",
|
|
@@ -64,7 +64,7 @@
|
|
|
64
64
|
"downlevel-dts": "0.10.1",
|
|
65
65
|
"rimraf": "3.0.2",
|
|
66
66
|
"typedoc": "0.23.23",
|
|
67
|
-
"typescript": "~4.
|
|
67
|
+
"typescript": "~4.9.5"
|
|
68
68
|
},
|
|
69
69
|
"engines": {
|
|
70
70
|
"node": ">=14.0.0"
|