@aws-sdk/client-apigatewaymanagementapi 3.687.0 → 3.691.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.
|
@@ -71,13 +71,13 @@ export interface GetConnectionResponse {
|
|
|
71
71
|
* <p>The time in ISO 8601 format for when the connection was established.</p>
|
|
72
72
|
* @public
|
|
73
73
|
*/
|
|
74
|
-
ConnectedAt?: Date;
|
|
75
|
-
Identity?: Identity;
|
|
74
|
+
ConnectedAt?: Date | undefined;
|
|
75
|
+
Identity?: Identity | undefined;
|
|
76
76
|
/**
|
|
77
77
|
* <p>The time in ISO 8601 format for when the connection was last active.</p>
|
|
78
78
|
* @public
|
|
79
79
|
*/
|
|
80
|
-
LastActiveAt?: Date;
|
|
80
|
+
LastActiveAt?: Date | undefined;
|
|
81
81
|
}
|
|
82
82
|
/**
|
|
83
83
|
* <p>The data has exceeded the maximum size allowed.</p>
|
|
@@ -86,7 +86,7 @@ export interface GetConnectionResponse {
|
|
|
86
86
|
export declare class PayloadTooLargeException extends __BaseException {
|
|
87
87
|
readonly name: "PayloadTooLargeException";
|
|
88
88
|
readonly $fault: "client";
|
|
89
|
-
Message?: string;
|
|
89
|
+
Message?: string | undefined;
|
|
90
90
|
/**
|
|
91
91
|
* @internal
|
|
92
92
|
*/
|
|
@@ -28,14 +28,14 @@ export interface Identity {
|
|
|
28
28
|
UserAgent: string | undefined;
|
|
29
29
|
}
|
|
30
30
|
export interface GetConnectionResponse {
|
|
31
|
-
ConnectedAt?: Date;
|
|
32
|
-
Identity?: Identity;
|
|
33
|
-
LastActiveAt?: Date;
|
|
31
|
+
ConnectedAt?: Date | undefined;
|
|
32
|
+
Identity?: Identity | undefined;
|
|
33
|
+
LastActiveAt?: Date | undefined;
|
|
34
34
|
}
|
|
35
35
|
export declare class PayloadTooLargeException extends __BaseException {
|
|
36
36
|
readonly name: "PayloadTooLargeException";
|
|
37
37
|
readonly $fault: "client";
|
|
38
|
-
Message?: string;
|
|
38
|
+
Message?: string | undefined;
|
|
39
39
|
constructor(
|
|
40
40
|
opts: __ExceptionOptionType<PayloadTooLargeException, __BaseException>
|
|
41
41
|
);
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-apigatewaymanagementapi",
|
|
3
3
|
"description": "AWS SDK for JavaScript Apigatewaymanagementapi Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.691.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-apigatewaymanagementapi",
|
|
@@ -20,19 +20,19 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/client-sso-oidc": "3.
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/core": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.691.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.691.0",
|
|
25
|
+
"@aws-sdk/core": "3.691.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.691.0",
|
|
27
27
|
"@aws-sdk/middleware-host-header": "3.686.0",
|
|
28
28
|
"@aws-sdk/middleware-logger": "3.686.0",
|
|
29
29
|
"@aws-sdk/middleware-recursion-detection": "3.686.0",
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.691.0",
|
|
31
31
|
"@aws-sdk/region-config-resolver": "3.686.0",
|
|
32
32
|
"@aws-sdk/types": "3.686.0",
|
|
33
33
|
"@aws-sdk/util-endpoints": "3.686.0",
|
|
34
34
|
"@aws-sdk/util-user-agent-browser": "3.686.0",
|
|
35
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.691.0",
|
|
36
36
|
"@smithy/config-resolver": "^3.0.10",
|
|
37
37
|
"@smithy/core": "^2.5.1",
|
|
38
38
|
"@smithy/fetch-http-handler": "^4.0.0",
|