@aws-sdk/client-managedblockchain-query 3.928.0 → 3.930.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.
Files changed (30) hide show
  1. package/dist-cjs/index.js +593 -654
  2. package/dist-cjs/runtimeConfig.shared.js +2 -0
  3. package/dist-es/ManagedBlockchainQueryClient.js +2 -0
  4. package/dist-es/commands/BatchGetTokenBalanceCommand.js +3 -9
  5. package/dist-es/commands/GetAssetContractCommand.js +3 -9
  6. package/dist-es/commands/GetTokenBalanceCommand.js +3 -9
  7. package/dist-es/commands/GetTransactionCommand.js +3 -9
  8. package/dist-es/commands/ListAssetContractsCommand.js +3 -9
  9. package/dist-es/commands/ListFilteredTransactionEventsCommand.js +3 -9
  10. package/dist-es/commands/ListTokenBalancesCommand.js +3 -9
  11. package/dist-es/commands/ListTransactionEventsCommand.js +3 -9
  12. package/dist-es/commands/ListTransactionsCommand.js +3 -9
  13. package/dist-es/runtimeConfig.shared.js +2 -0
  14. package/dist-es/schemas/schemas_0.js +558 -0
  15. package/dist-types/ManagedBlockchainQueryClient.d.ts +10 -1
  16. package/dist-types/runtimeConfig.browser.d.ts +1 -0
  17. package/dist-types/runtimeConfig.d.ts +1 -0
  18. package/dist-types/runtimeConfig.native.d.ts +1 -0
  19. package/dist-types/runtimeConfig.shared.d.ts +1 -0
  20. package/dist-types/schemas/schemas_0.d.ts +68 -0
  21. package/dist-types/ts3.4/ManagedBlockchainQueryClient.d.ts +4 -0
  22. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
  23. package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
  24. package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
  25. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
  26. package/dist-types/ts3.4/schemas/schemas_0.d.ts +73 -0
  27. package/package.json +33 -33
  28. package/dist-es/protocols/Aws_restJson1.js +0 -575
  29. package/dist-types/protocols/Aws_restJson1.d.ts +0 -83
  30. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +0 -113
@@ -30,10 +30,13 @@ import {
30
30
  BodyLengthCalculator as __BodyLengthCalculator,
31
31
  CheckOptionalClientConfig as __CheckOptionalClientConfig,
32
32
  ChecksumConstructor as __ChecksumConstructor,
33
+ ClientProtocol,
33
34
  Decoder as __Decoder,
34
35
  Encoder as __Encoder,
35
36
  HashConstructor as __HashConstructor,
36
37
  HttpHandlerOptions as __HttpHandlerOptions,
38
+ HttpRequest,
39
+ HttpResponse,
37
40
  Logger as __Logger,
38
41
  Provider as __Provider,
39
42
  Provider,
@@ -132,6 +135,7 @@ export interface ClientDefaults
132
135
  retryMode?: string | __Provider<string>;
133
136
  logger?: __Logger;
134
137
  extensions?: RuntimeExtension[];
138
+ protocol?: ClientProtocol<HttpRequest, HttpResponse>;
135
139
  defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
136
140
  }
137
141
  export type ManagedBlockchainQueryClientConfigType = Partial<
@@ -40,6 +40,10 @@ export declare const getRuntimeConfig: (
40
40
  profile?: string;
41
41
  logger: import("@smithy/types").Logger;
42
42
  extensions: import("./runtimeExtensions").RuntimeExtension[];
43
+ protocol: import("@smithy/types").ClientProtocol<
44
+ import("@smithy/types").HttpRequest,
45
+ import("@smithy/types").HttpResponse
46
+ >;
43
47
  customUserAgent?: string | import("@smithy/types").UserAgent;
44
48
  userAgentAppId?:
45
49
  | string
@@ -40,6 +40,10 @@ export declare const getRuntimeConfig: (
40
40
  profile?: string;
41
41
  logger: import("@smithy/types").Logger;
42
42
  extensions: import("./runtimeExtensions").RuntimeExtension[];
43
+ protocol: import("@smithy/types").ClientProtocol<
44
+ import("@smithy/types").HttpRequest,
45
+ import("@smithy/types").HttpResponse
46
+ >;
43
47
  customUserAgent?: string | import("@smithy/types").UserAgent;
44
48
  retryStrategy?:
45
49
  | import("@smithy/types").RetryStrategy
@@ -39,6 +39,10 @@ export declare const getRuntimeConfig: (
39
39
  retryMode: string | import("@smithy/types").Provider<string>;
40
40
  logger: import("@smithy/types").Logger;
41
41
  extensions: import("./runtimeExtensions").RuntimeExtension[];
42
+ protocol: import("@smithy/types").ClientProtocol<
43
+ import("@smithy/types").HttpRequest,
44
+ import("@smithy/types").HttpResponse
45
+ >;
42
46
  defaultsMode:
43
47
  | import("@smithy/smithy-client").DefaultsMode
44
48
  | import("@smithy/types").Provider<
@@ -16,6 +16,10 @@ export declare const getRuntimeConfig: (
16
16
  httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").ManagedBlockchainQueryHttpAuthSchemeProvider;
17
17
  httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
18
18
  logger: import("@smithy/types").Logger;
19
+ protocol: import("@smithy/types").ClientProtocol<
20
+ import("@smithy/types").HttpRequest,
21
+ import("@smithy/types").HttpResponse
22
+ >;
19
23
  serviceId: string;
20
24
  urlParser: import("@smithy/types").UrlParser;
21
25
  utf8Decoder: import("@smithy/types").Decoder;
@@ -0,0 +1,73 @@
1
+ import {
2
+ StaticErrorSchema,
3
+ StaticListSchema,
4
+ StaticOperationSchema,
5
+ StaticStructureSchema,
6
+ } from "@smithy/types";
7
+ export declare var AccessDeniedException: StaticErrorSchema;
8
+ export declare var AddressIdentifierFilter: StaticStructureSchema;
9
+ export declare var AssetContract: StaticStructureSchema;
10
+ export declare var BatchGetTokenBalanceErrorItem: StaticStructureSchema;
11
+ export declare var BatchGetTokenBalanceInput: StaticStructureSchema;
12
+ export declare var BatchGetTokenBalanceInputItem: StaticStructureSchema;
13
+ export declare var BatchGetTokenBalanceOutput: StaticStructureSchema;
14
+ export declare var BatchGetTokenBalanceOutputItem: StaticStructureSchema;
15
+ export declare var BlockchainInstant: StaticStructureSchema;
16
+ export declare var ConfirmationStatusFilter: StaticStructureSchema;
17
+ export declare var ContractFilter: StaticStructureSchema;
18
+ export declare var ContractIdentifier: StaticStructureSchema;
19
+ export declare var ContractMetadata: StaticStructureSchema;
20
+ export declare var GetAssetContractInput: StaticStructureSchema;
21
+ export declare var GetAssetContractOutput: StaticStructureSchema;
22
+ export declare var GetTokenBalanceInput: StaticStructureSchema;
23
+ export declare var GetTokenBalanceOutput: StaticStructureSchema;
24
+ export declare var GetTransactionInput: StaticStructureSchema;
25
+ export declare var GetTransactionOutput: StaticStructureSchema;
26
+ export declare var InternalServerException: StaticErrorSchema;
27
+ export declare var ListAssetContractsInput: StaticStructureSchema;
28
+ export declare var ListAssetContractsOutput: StaticStructureSchema;
29
+ export declare var ListFilteredTransactionEventsInput: StaticStructureSchema;
30
+ export declare var ListFilteredTransactionEventsOutput: StaticStructureSchema;
31
+ export declare var ListFilteredTransactionEventsSort: StaticStructureSchema;
32
+ export declare var ListTokenBalancesInput: StaticStructureSchema;
33
+ export declare var ListTokenBalancesOutput: StaticStructureSchema;
34
+ export declare var ListTransactionEventsInput: StaticStructureSchema;
35
+ export declare var ListTransactionEventsOutput: StaticStructureSchema;
36
+ export declare var ListTransactionsInput: StaticStructureSchema;
37
+ export declare var ListTransactionsOutput: StaticStructureSchema;
38
+ export declare var ListTransactionsSort: StaticStructureSchema;
39
+ export declare var OwnerFilter: StaticStructureSchema;
40
+ export declare var OwnerIdentifier: StaticStructureSchema;
41
+ export declare var ResourceNotFoundException: StaticErrorSchema;
42
+ export declare var ServiceQuotaExceededException: StaticErrorSchema;
43
+ export declare var ThrottlingException: StaticErrorSchema;
44
+ export declare var TimeFilter: StaticStructureSchema;
45
+ export declare var TokenBalance: StaticStructureSchema;
46
+ export declare var TokenFilter: StaticStructureSchema;
47
+ export declare var TokenIdentifier: StaticStructureSchema;
48
+ export declare var Transaction: StaticStructureSchema;
49
+ export declare var TransactionEvent: StaticStructureSchema;
50
+ export declare var TransactionOutputItem: StaticStructureSchema;
51
+ export declare var ValidationException: StaticErrorSchema;
52
+ export declare var ValidationExceptionField: StaticStructureSchema;
53
+ export declare var VoutFilter: StaticStructureSchema;
54
+ export declare var ManagedBlockchainQueryServiceException: StaticErrorSchema;
55
+ export declare var AssetContractList: StaticListSchema;
56
+ export declare var BatchGetTokenBalanceErrors: StaticListSchema;
57
+ export declare var BatchGetTokenBalanceOutputList: StaticListSchema;
58
+ export declare var ChainAddresses: number;
59
+ export declare var ConfirmationStatusIncludeList: number;
60
+ export declare var GetTokenBalanceInputList: StaticListSchema;
61
+ export declare var TokenBalanceList: StaticListSchema;
62
+ export declare var TransactionEventList: StaticListSchema;
63
+ export declare var TransactionOutputList: StaticListSchema;
64
+ export declare var ValidationExceptionFieldList: StaticListSchema;
65
+ export declare var BatchGetTokenBalance: StaticOperationSchema;
66
+ export declare var GetAssetContract: StaticOperationSchema;
67
+ export declare var GetTokenBalance: StaticOperationSchema;
68
+ export declare var GetTransaction: StaticOperationSchema;
69
+ export declare var ListAssetContracts: StaticOperationSchema;
70
+ export declare var ListFilteredTransactionEvents: StaticOperationSchema;
71
+ export declare var ListTokenBalances: StaticOperationSchema;
72
+ export declare var ListTransactionEvents: StaticOperationSchema;
73
+ export declare var ListTransactions: StaticOperationSchema;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-managedblockchain-query",
3
3
  "description": "AWS SDK for JavaScript Managedblockchain Query Client for Node.js, Browser and React Native",
4
- "version": "3.928.0",
4
+ "version": "3.930.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-managedblockchain-query",
@@ -20,41 +20,41 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
- "@aws-sdk/core": "3.928.0",
24
- "@aws-sdk/credential-provider-node": "3.928.0",
25
- "@aws-sdk/middleware-host-header": "3.922.0",
26
- "@aws-sdk/middleware-logger": "3.922.0",
27
- "@aws-sdk/middleware-recursion-detection": "3.922.0",
28
- "@aws-sdk/middleware-user-agent": "3.928.0",
29
- "@aws-sdk/region-config-resolver": "3.925.0",
30
- "@aws-sdk/types": "3.922.0",
31
- "@aws-sdk/util-endpoints": "3.922.0",
32
- "@aws-sdk/util-user-agent-browser": "3.922.0",
33
- "@aws-sdk/util-user-agent-node": "3.928.0",
34
- "@smithy/config-resolver": "^4.4.2",
35
- "@smithy/core": "^3.17.2",
36
- "@smithy/fetch-http-handler": "^5.3.5",
37
- "@smithy/hash-node": "^4.2.4",
38
- "@smithy/invalid-dependency": "^4.2.4",
39
- "@smithy/middleware-content-length": "^4.2.4",
40
- "@smithy/middleware-endpoint": "^4.3.6",
41
- "@smithy/middleware-retry": "^4.4.6",
42
- "@smithy/middleware-serde": "^4.2.4",
43
- "@smithy/middleware-stack": "^4.2.4",
44
- "@smithy/node-config-provider": "^4.3.4",
45
- "@smithy/node-http-handler": "^4.4.4",
46
- "@smithy/protocol-http": "^5.3.4",
47
- "@smithy/smithy-client": "^4.9.2",
48
- "@smithy/types": "^4.8.1",
49
- "@smithy/url-parser": "^4.2.4",
23
+ "@aws-sdk/core": "3.930.0",
24
+ "@aws-sdk/credential-provider-node": "3.930.0",
25
+ "@aws-sdk/middleware-host-header": "3.930.0",
26
+ "@aws-sdk/middleware-logger": "3.930.0",
27
+ "@aws-sdk/middleware-recursion-detection": "3.930.0",
28
+ "@aws-sdk/middleware-user-agent": "3.930.0",
29
+ "@aws-sdk/region-config-resolver": "3.930.0",
30
+ "@aws-sdk/types": "3.930.0",
31
+ "@aws-sdk/util-endpoints": "3.930.0",
32
+ "@aws-sdk/util-user-agent-browser": "3.930.0",
33
+ "@aws-sdk/util-user-agent-node": "3.930.0",
34
+ "@smithy/config-resolver": "^4.4.3",
35
+ "@smithy/core": "^3.18.2",
36
+ "@smithy/fetch-http-handler": "^5.3.6",
37
+ "@smithy/hash-node": "^4.2.5",
38
+ "@smithy/invalid-dependency": "^4.2.5",
39
+ "@smithy/middleware-content-length": "^4.2.5",
40
+ "@smithy/middleware-endpoint": "^4.3.9",
41
+ "@smithy/middleware-retry": "^4.4.9",
42
+ "@smithy/middleware-serde": "^4.2.5",
43
+ "@smithy/middleware-stack": "^4.2.5",
44
+ "@smithy/node-config-provider": "^4.3.5",
45
+ "@smithy/node-http-handler": "^4.4.5",
46
+ "@smithy/protocol-http": "^5.3.5",
47
+ "@smithy/smithy-client": "^4.9.5",
48
+ "@smithy/types": "^4.9.0",
49
+ "@smithy/url-parser": "^4.2.5",
50
50
  "@smithy/util-base64": "^4.3.0",
51
51
  "@smithy/util-body-length-browser": "^4.2.0",
52
52
  "@smithy/util-body-length-node": "^4.2.1",
53
- "@smithy/util-defaults-mode-browser": "^4.3.5",
54
- "@smithy/util-defaults-mode-node": "^4.2.8",
55
- "@smithy/util-endpoints": "^3.2.4",
56
- "@smithy/util-middleware": "^4.2.4",
57
- "@smithy/util-retry": "^4.2.4",
53
+ "@smithy/util-defaults-mode-browser": "^4.3.8",
54
+ "@smithy/util-defaults-mode-node": "^4.2.11",
55
+ "@smithy/util-endpoints": "^3.2.5",
56
+ "@smithy/util-middleware": "^4.2.5",
57
+ "@smithy/util-retry": "^4.2.5",
58
58
  "@smithy/util-utf8": "^4.2.0",
59
59
  "tslib": "^2.6.2"
60
60
  },