@aws-sdk/client-account 3.987.0 → 3.989.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 +34 -543
- package/dist-cjs/models/AccountServiceException.js +12 -0
- package/dist-cjs/models/errors.js +115 -0
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-cjs/schemas/schemas_0.js +370 -0
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +52 -46
- package/dist-types/schemas/schemas_0.d.ts +15 -8
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +10 -8
- package/package.json +13 -13
|
@@ -1,9 +1,22 @@
|
|
|
1
|
+
import { TypeRegistry } from "@smithy/core/schema";
|
|
1
2
|
import type { StaticErrorSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types";
|
|
3
|
+
export declare var AccountServiceException$: StaticErrorSchema;
|
|
4
|
+
export declare var AccessDeniedException$: StaticErrorSchema;
|
|
5
|
+
export declare var ConflictException$: StaticErrorSchema;
|
|
6
|
+
export declare var InternalServerException$: StaticErrorSchema;
|
|
7
|
+
export declare var ResourceNotFoundException$: StaticErrorSchema;
|
|
8
|
+
export declare var ResourceUnavailableException$: StaticErrorSchema;
|
|
9
|
+
export declare var TooManyRequestsException$: StaticErrorSchema;
|
|
10
|
+
export declare var ValidationException$: StaticErrorSchema;
|
|
11
|
+
/**
|
|
12
|
+
* TypeRegistry instances containing modeled errors.
|
|
13
|
+
* @internal
|
|
14
|
+
*
|
|
15
|
+
*/
|
|
16
|
+
export declare const errorTypeRegistries: TypeRegistry[];
|
|
2
17
|
export declare var AcceptPrimaryEmailUpdateRequest$: StaticStructureSchema;
|
|
3
18
|
export declare var AcceptPrimaryEmailUpdateResponse$: StaticStructureSchema;
|
|
4
|
-
export declare var AccessDeniedException$: StaticErrorSchema;
|
|
5
19
|
export declare var AlternateContact$: StaticStructureSchema;
|
|
6
|
-
export declare var ConflictException$: StaticErrorSchema;
|
|
7
20
|
export declare var ContactInformation$: StaticStructureSchema;
|
|
8
21
|
export declare var DeleteAlternateContactRequest$: StaticStructureSchema;
|
|
9
22
|
export declare var DisableRegionRequest$: StaticStructureSchema;
|
|
@@ -20,21 +33,15 @@ export declare var GetPrimaryEmailRequest$: StaticStructureSchema;
|
|
|
20
33
|
export declare var GetPrimaryEmailResponse$: StaticStructureSchema;
|
|
21
34
|
export declare var GetRegionOptStatusRequest$: StaticStructureSchema;
|
|
22
35
|
export declare var GetRegionOptStatusResponse$: StaticStructureSchema;
|
|
23
|
-
export declare var InternalServerException$: StaticErrorSchema;
|
|
24
36
|
export declare var ListRegionsRequest$: StaticStructureSchema;
|
|
25
37
|
export declare var ListRegionsResponse$: StaticStructureSchema;
|
|
26
38
|
export declare var PutAccountNameRequest$: StaticStructureSchema;
|
|
27
39
|
export declare var PutAlternateContactRequest$: StaticStructureSchema;
|
|
28
40
|
export declare var PutContactInformationRequest$: StaticStructureSchema;
|
|
29
41
|
export declare var Region$: StaticStructureSchema;
|
|
30
|
-
export declare var ResourceNotFoundException$: StaticErrorSchema;
|
|
31
|
-
export declare var ResourceUnavailableException$: StaticErrorSchema;
|
|
32
42
|
export declare var StartPrimaryEmailUpdateRequest$: StaticStructureSchema;
|
|
33
43
|
export declare var StartPrimaryEmailUpdateResponse$: StaticStructureSchema;
|
|
34
|
-
export declare var TooManyRequestsException$: StaticErrorSchema;
|
|
35
|
-
export declare var ValidationException$: StaticErrorSchema;
|
|
36
44
|
export declare var ValidationExceptionField$: StaticStructureSchema;
|
|
37
|
-
export declare var AccountServiceException$: StaticErrorSchema;
|
|
38
45
|
export declare var AcceptPrimaryEmailUpdate$: StaticOperationSchema;
|
|
39
46
|
export declare var DeleteAlternateContact$: StaticOperationSchema;
|
|
40
47
|
export declare var DisableRegion$: StaticOperationSchema;
|
|
@@ -1,13 +1,21 @@
|
|
|
1
|
+
import { TypeRegistry } from "@smithy/core/schema";
|
|
1
2
|
import {
|
|
2
3
|
StaticErrorSchema,
|
|
3
4
|
StaticOperationSchema,
|
|
4
5
|
StaticStructureSchema,
|
|
5
6
|
} from "@smithy/types";
|
|
7
|
+
export declare var AccountServiceException$: StaticErrorSchema;
|
|
8
|
+
export declare var AccessDeniedException$: StaticErrorSchema;
|
|
9
|
+
export declare var ConflictException$: StaticErrorSchema;
|
|
10
|
+
export declare var InternalServerException$: StaticErrorSchema;
|
|
11
|
+
export declare var ResourceNotFoundException$: StaticErrorSchema;
|
|
12
|
+
export declare var ResourceUnavailableException$: StaticErrorSchema;
|
|
13
|
+
export declare var TooManyRequestsException$: StaticErrorSchema;
|
|
14
|
+
export declare var ValidationException$: StaticErrorSchema;
|
|
15
|
+
export declare const errorTypeRegistries: TypeRegistry[];
|
|
6
16
|
export declare var AcceptPrimaryEmailUpdateRequest$: StaticStructureSchema;
|
|
7
17
|
export declare var AcceptPrimaryEmailUpdateResponse$: StaticStructureSchema;
|
|
8
|
-
export declare var AccessDeniedException$: StaticErrorSchema;
|
|
9
18
|
export declare var AlternateContact$: StaticStructureSchema;
|
|
10
|
-
export declare var ConflictException$: StaticErrorSchema;
|
|
11
19
|
export declare var ContactInformation$: StaticStructureSchema;
|
|
12
20
|
export declare var DeleteAlternateContactRequest$: StaticStructureSchema;
|
|
13
21
|
export declare var DisableRegionRequest$: StaticStructureSchema;
|
|
@@ -24,21 +32,15 @@ export declare var GetPrimaryEmailRequest$: StaticStructureSchema;
|
|
|
24
32
|
export declare var GetPrimaryEmailResponse$: StaticStructureSchema;
|
|
25
33
|
export declare var GetRegionOptStatusRequest$: StaticStructureSchema;
|
|
26
34
|
export declare var GetRegionOptStatusResponse$: StaticStructureSchema;
|
|
27
|
-
export declare var InternalServerException$: StaticErrorSchema;
|
|
28
35
|
export declare var ListRegionsRequest$: StaticStructureSchema;
|
|
29
36
|
export declare var ListRegionsResponse$: StaticStructureSchema;
|
|
30
37
|
export declare var PutAccountNameRequest$: StaticStructureSchema;
|
|
31
38
|
export declare var PutAlternateContactRequest$: StaticStructureSchema;
|
|
32
39
|
export declare var PutContactInformationRequest$: StaticStructureSchema;
|
|
33
40
|
export declare var Region$: StaticStructureSchema;
|
|
34
|
-
export declare var ResourceNotFoundException$: StaticErrorSchema;
|
|
35
|
-
export declare var ResourceUnavailableException$: StaticErrorSchema;
|
|
36
41
|
export declare var StartPrimaryEmailUpdateRequest$: StaticStructureSchema;
|
|
37
42
|
export declare var StartPrimaryEmailUpdateResponse$: StaticStructureSchema;
|
|
38
|
-
export declare var TooManyRequestsException$: StaticErrorSchema;
|
|
39
|
-
export declare var ValidationException$: StaticErrorSchema;
|
|
40
43
|
export declare var ValidationExceptionField$: StaticStructureSchema;
|
|
41
|
-
export declare var AccountServiceException$: StaticErrorSchema;
|
|
42
44
|
export declare var AcceptPrimaryEmailUpdate$: StaticOperationSchema;
|
|
43
45
|
export declare var DeleteAlternateContact$: StaticOperationSchema;
|
|
44
46
|
export declare var DisableRegion$: StaticOperationSchema;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-account",
|
|
3
3
|
"description": "AWS SDK for JavaScript Account Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.989.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 client-account",
|
|
@@ -21,38 +21,38 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
24
|
-
"@aws-sdk/core": "^3.973.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
24
|
+
"@aws-sdk/core": "^3.973.9",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "^3.972.8",
|
|
26
26
|
"@aws-sdk/middleware-host-header": "^3.972.3",
|
|
27
27
|
"@aws-sdk/middleware-logger": "^3.972.3",
|
|
28
28
|
"@aws-sdk/middleware-recursion-detection": "^3.972.3",
|
|
29
|
-
"@aws-sdk/middleware-user-agent": "^3.972.
|
|
29
|
+
"@aws-sdk/middleware-user-agent": "^3.972.9",
|
|
30
30
|
"@aws-sdk/region-config-resolver": "^3.972.3",
|
|
31
31
|
"@aws-sdk/types": "^3.973.1",
|
|
32
|
-
"@aws-sdk/util-endpoints": "3.
|
|
32
|
+
"@aws-sdk/util-endpoints": "3.989.0",
|
|
33
33
|
"@aws-sdk/util-user-agent-browser": "^3.972.3",
|
|
34
|
-
"@aws-sdk/util-user-agent-node": "^3.972.
|
|
34
|
+
"@aws-sdk/util-user-agent-node": "^3.972.7",
|
|
35
35
|
"@smithy/config-resolver": "^4.4.6",
|
|
36
|
-
"@smithy/core": "^3.
|
|
36
|
+
"@smithy/core": "^3.23.0",
|
|
37
37
|
"@smithy/fetch-http-handler": "^5.3.9",
|
|
38
38
|
"@smithy/hash-node": "^4.2.8",
|
|
39
39
|
"@smithy/invalid-dependency": "^4.2.8",
|
|
40
40
|
"@smithy/middleware-content-length": "^4.2.8",
|
|
41
|
-
"@smithy/middleware-endpoint": "^4.4.
|
|
42
|
-
"@smithy/middleware-retry": "^4.4.
|
|
41
|
+
"@smithy/middleware-endpoint": "^4.4.14",
|
|
42
|
+
"@smithy/middleware-retry": "^4.4.31",
|
|
43
43
|
"@smithy/middleware-serde": "^4.2.9",
|
|
44
44
|
"@smithy/middleware-stack": "^4.2.8",
|
|
45
45
|
"@smithy/node-config-provider": "^4.3.8",
|
|
46
|
-
"@smithy/node-http-handler": "^4.4.
|
|
46
|
+
"@smithy/node-http-handler": "^4.4.10",
|
|
47
47
|
"@smithy/protocol-http": "^5.3.8",
|
|
48
|
-
"@smithy/smithy-client": "^4.11.
|
|
48
|
+
"@smithy/smithy-client": "^4.11.3",
|
|
49
49
|
"@smithy/types": "^4.12.0",
|
|
50
50
|
"@smithy/url-parser": "^4.2.8",
|
|
51
51
|
"@smithy/util-base64": "^4.3.0",
|
|
52
52
|
"@smithy/util-body-length-browser": "^4.2.0",
|
|
53
53
|
"@smithy/util-body-length-node": "^4.2.1",
|
|
54
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
55
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
54
|
+
"@smithy/util-defaults-mode-browser": "^4.3.30",
|
|
55
|
+
"@smithy/util-defaults-mode-node": "^4.2.33",
|
|
56
56
|
"@smithy/util-endpoints": "^3.2.8",
|
|
57
57
|
"@smithy/util-middleware": "^4.2.8",
|
|
58
58
|
"@smithy/util-retry": "^4.2.8",
|