@aws-sdk/client-payment-cryptography-data 3.349.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/LICENSE +201 -0
- package/README.md +294 -0
- package/dist-cjs/PaymentCryptographyData.js +33 -0
- package/dist-cjs/PaymentCryptographyDataClient.js +41 -0
- package/dist-cjs/commands/DecryptDataCommand.js +47 -0
- package/dist-cjs/commands/EncryptDataCommand.js +47 -0
- package/dist-cjs/commands/GenerateCardValidationDataCommand.js +47 -0
- package/dist-cjs/commands/GenerateMacCommand.js +47 -0
- package/dist-cjs/commands/GeneratePinDataCommand.js +47 -0
- package/dist-cjs/commands/ReEncryptDataCommand.js +47 -0
- package/dist-cjs/commands/TranslatePinDataCommand.js +47 -0
- package/dist-cjs/commands/VerifyAuthRequestCryptogramCommand.js +47 -0
- package/dist-cjs/commands/VerifyCardValidationDataCommand.js +47 -0
- package/dist-cjs/commands/VerifyMacCommand.js +47 -0
- package/dist-cjs/commands/VerifyPinDataCommand.js +47 -0
- package/dist-cjs/commands/index.js +14 -0
- package/dist-cjs/endpoint/EndpointParameters.js +12 -0
- package/dist-cjs/endpoint/endpointResolver.js +12 -0
- package/dist-cjs/endpoint/ruleset.js +7 -0
- package/dist-cjs/index.js +10 -0
- package/dist-cjs/models/PaymentCryptographyDataServiceException.js +12 -0
- package/dist-cjs/models/index.js +4 -0
- package/dist-cjs/models/models_0.js +526 -0
- package/dist-cjs/protocols/Aws_restJson1.js +963 -0
- package/dist-cjs/runtimeConfig.browser.js +39 -0
- package/dist-cjs/runtimeConfig.js +48 -0
- package/dist-cjs/runtimeConfig.native.js +15 -0
- package/dist-cjs/runtimeConfig.shared.js +21 -0
- package/dist-es/PaymentCryptographyData.js +29 -0
- package/dist-es/PaymentCryptographyDataClient.js +37 -0
- package/dist-es/commands/DecryptDataCommand.js +43 -0
- package/dist-es/commands/EncryptDataCommand.js +43 -0
- package/dist-es/commands/GenerateCardValidationDataCommand.js +43 -0
- package/dist-es/commands/GenerateMacCommand.js +43 -0
- package/dist-es/commands/GeneratePinDataCommand.js +43 -0
- package/dist-es/commands/ReEncryptDataCommand.js +43 -0
- package/dist-es/commands/TranslatePinDataCommand.js +43 -0
- package/dist-es/commands/VerifyAuthRequestCryptogramCommand.js +43 -0
- package/dist-es/commands/VerifyCardValidationDataCommand.js +43 -0
- package/dist-es/commands/VerifyMacCommand.js +43 -0
- package/dist-es/commands/VerifyPinDataCommand.js +43 -0
- package/dist-es/commands/index.js +11 -0
- package/dist-es/endpoint/EndpointParameters.js +8 -0
- package/dist-es/endpoint/endpointResolver.js +8 -0
- package/dist-es/endpoint/ruleset.js +4 -0
- package/dist-es/index.js +5 -0
- package/dist-es/models/PaymentCryptographyDataServiceException.js +8 -0
- package/dist-es/models/index.js +1 -0
- package/dist-es/models/models_0.js +488 -0
- package/dist-es/protocols/Aws_restJson1.js +938 -0
- package/dist-es/runtimeConfig.browser.js +34 -0
- package/dist-es/runtimeConfig.js +43 -0
- package/dist-es/runtimeConfig.native.js +11 -0
- package/dist-es/runtimeConfig.shared.js +17 -0
- package/dist-types/PaymentCryptographyData.d.ts +88 -0
- package/dist-types/PaymentCryptographyDataClient.d.ts +174 -0
- package/dist-types/commands/DecryptDataCommand.d.ts +133 -0
- package/dist-types/commands/EncryptDataCommand.d.ts +138 -0
- package/dist-types/commands/GenerateCardValidationDataCommand.d.ts +144 -0
- package/dist-types/commands/GenerateMacCommand.d.ts +134 -0
- package/dist-types/commands/GeneratePinDataCommand.d.ts +155 -0
- package/dist-types/commands/ReEncryptDataCommand.d.ts +150 -0
- package/dist-types/commands/TranslatePinDataCommand.d.ts +147 -0
- package/dist-types/commands/VerifyAuthRequestCryptogramCommand.d.ts +150 -0
- package/dist-types/commands/VerifyCardValidationDataCommand.d.ts +156 -0
- package/dist-types/commands/VerifyMacCommand.d.ts +137 -0
- package/dist-types/commands/VerifyPinDataCommand.d.ts +134 -0
- package/dist-types/commands/index.d.ts +11 -0
- package/dist-types/endpoint/EndpointParameters.d.ts +20 -0
- package/dist-types/endpoint/endpointResolver.d.ts +5 -0
- package/dist-types/endpoint/ruleset.d.ts +2 -0
- package/dist-types/index.d.ts +11 -0
- package/dist-types/models/PaymentCryptographyDataServiceException.d.ts +13 -0
- package/dist-types/models/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +2191 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +101 -0
- package/dist-types/runtimeConfig.browser.d.ts +42 -0
- package/dist-types/runtimeConfig.d.ts +42 -0
- package/dist-types/runtimeConfig.native.d.ts +41 -0
- package/dist-types/runtimeConfig.shared.d.ts +18 -0
- package/dist-types/ts3.4/PaymentCryptographyData.d.ts +194 -0
- package/dist-types/ts3.4/PaymentCryptographyDataClient.d.ts +181 -0
- package/dist-types/ts3.4/commands/DecryptDataCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/EncryptDataCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/GenerateCardValidationDataCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/GenerateMacCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/GeneratePinDataCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/ReEncryptDataCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/TranslatePinDataCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/VerifyAuthRequestCryptogramCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/VerifyCardValidationDataCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/VerifyMacCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/VerifyPinDataCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/index.d.ts +11 -0
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +32 -0
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
- package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
- package/dist-types/ts3.4/index.d.ts +5 -0
- package/dist-types/ts3.4/models/PaymentCryptographyDataServiceException.d.ts +8 -0
- package/dist-types/ts3.4/models/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +1168 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +137 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +96 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +93 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +87 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +20 -0
- package/package.json +99 -0
|
@@ -0,0 +1,101 @@
|
|
|
1
|
+
import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@smithy/protocol-http";
|
|
2
|
+
import { SerdeContext as __SerdeContext } from "@smithy/types";
|
|
3
|
+
import { DecryptDataCommandInput, DecryptDataCommandOutput } from "../commands/DecryptDataCommand";
|
|
4
|
+
import { EncryptDataCommandInput, EncryptDataCommandOutput } from "../commands/EncryptDataCommand";
|
|
5
|
+
import { GenerateCardValidationDataCommandInput, GenerateCardValidationDataCommandOutput } from "../commands/GenerateCardValidationDataCommand";
|
|
6
|
+
import { GenerateMacCommandInput, GenerateMacCommandOutput } from "../commands/GenerateMacCommand";
|
|
7
|
+
import { GeneratePinDataCommandInput, GeneratePinDataCommandOutput } from "../commands/GeneratePinDataCommand";
|
|
8
|
+
import { ReEncryptDataCommandInput, ReEncryptDataCommandOutput } from "../commands/ReEncryptDataCommand";
|
|
9
|
+
import { TranslatePinDataCommandInput, TranslatePinDataCommandOutput } from "../commands/TranslatePinDataCommand";
|
|
10
|
+
import { VerifyAuthRequestCryptogramCommandInput, VerifyAuthRequestCryptogramCommandOutput } from "../commands/VerifyAuthRequestCryptogramCommand";
|
|
11
|
+
import { VerifyCardValidationDataCommandInput, VerifyCardValidationDataCommandOutput } from "../commands/VerifyCardValidationDataCommand";
|
|
12
|
+
import { VerifyMacCommandInput, VerifyMacCommandOutput } from "../commands/VerifyMacCommand";
|
|
13
|
+
import { VerifyPinDataCommandInput, VerifyPinDataCommandOutput } from "../commands/VerifyPinDataCommand";
|
|
14
|
+
/**
|
|
15
|
+
* serializeAws_restJson1DecryptDataCommand
|
|
16
|
+
*/
|
|
17
|
+
export declare const se_DecryptDataCommand: (input: DecryptDataCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
18
|
+
/**
|
|
19
|
+
* serializeAws_restJson1EncryptDataCommand
|
|
20
|
+
*/
|
|
21
|
+
export declare const se_EncryptDataCommand: (input: EncryptDataCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
22
|
+
/**
|
|
23
|
+
* serializeAws_restJson1GenerateCardValidationDataCommand
|
|
24
|
+
*/
|
|
25
|
+
export declare const se_GenerateCardValidationDataCommand: (input: GenerateCardValidationDataCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
26
|
+
/**
|
|
27
|
+
* serializeAws_restJson1GenerateMacCommand
|
|
28
|
+
*/
|
|
29
|
+
export declare const se_GenerateMacCommand: (input: GenerateMacCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
30
|
+
/**
|
|
31
|
+
* serializeAws_restJson1GeneratePinDataCommand
|
|
32
|
+
*/
|
|
33
|
+
export declare const se_GeneratePinDataCommand: (input: GeneratePinDataCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
34
|
+
/**
|
|
35
|
+
* serializeAws_restJson1ReEncryptDataCommand
|
|
36
|
+
*/
|
|
37
|
+
export declare const se_ReEncryptDataCommand: (input: ReEncryptDataCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
38
|
+
/**
|
|
39
|
+
* serializeAws_restJson1TranslatePinDataCommand
|
|
40
|
+
*/
|
|
41
|
+
export declare const se_TranslatePinDataCommand: (input: TranslatePinDataCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
42
|
+
/**
|
|
43
|
+
* serializeAws_restJson1VerifyAuthRequestCryptogramCommand
|
|
44
|
+
*/
|
|
45
|
+
export declare const se_VerifyAuthRequestCryptogramCommand: (input: VerifyAuthRequestCryptogramCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
46
|
+
/**
|
|
47
|
+
* serializeAws_restJson1VerifyCardValidationDataCommand
|
|
48
|
+
*/
|
|
49
|
+
export declare const se_VerifyCardValidationDataCommand: (input: VerifyCardValidationDataCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
50
|
+
/**
|
|
51
|
+
* serializeAws_restJson1VerifyMacCommand
|
|
52
|
+
*/
|
|
53
|
+
export declare const se_VerifyMacCommand: (input: VerifyMacCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
54
|
+
/**
|
|
55
|
+
* serializeAws_restJson1VerifyPinDataCommand
|
|
56
|
+
*/
|
|
57
|
+
export declare const se_VerifyPinDataCommand: (input: VerifyPinDataCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
58
|
+
/**
|
|
59
|
+
* deserializeAws_restJson1DecryptDataCommand
|
|
60
|
+
*/
|
|
61
|
+
export declare const de_DecryptDataCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DecryptDataCommandOutput>;
|
|
62
|
+
/**
|
|
63
|
+
* deserializeAws_restJson1EncryptDataCommand
|
|
64
|
+
*/
|
|
65
|
+
export declare const de_EncryptDataCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<EncryptDataCommandOutput>;
|
|
66
|
+
/**
|
|
67
|
+
* deserializeAws_restJson1GenerateCardValidationDataCommand
|
|
68
|
+
*/
|
|
69
|
+
export declare const de_GenerateCardValidationDataCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GenerateCardValidationDataCommandOutput>;
|
|
70
|
+
/**
|
|
71
|
+
* deserializeAws_restJson1GenerateMacCommand
|
|
72
|
+
*/
|
|
73
|
+
export declare const de_GenerateMacCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GenerateMacCommandOutput>;
|
|
74
|
+
/**
|
|
75
|
+
* deserializeAws_restJson1GeneratePinDataCommand
|
|
76
|
+
*/
|
|
77
|
+
export declare const de_GeneratePinDataCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GeneratePinDataCommandOutput>;
|
|
78
|
+
/**
|
|
79
|
+
* deserializeAws_restJson1ReEncryptDataCommand
|
|
80
|
+
*/
|
|
81
|
+
export declare const de_ReEncryptDataCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ReEncryptDataCommandOutput>;
|
|
82
|
+
/**
|
|
83
|
+
* deserializeAws_restJson1TranslatePinDataCommand
|
|
84
|
+
*/
|
|
85
|
+
export declare const de_TranslatePinDataCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TranslatePinDataCommandOutput>;
|
|
86
|
+
/**
|
|
87
|
+
* deserializeAws_restJson1VerifyAuthRequestCryptogramCommand
|
|
88
|
+
*/
|
|
89
|
+
export declare const de_VerifyAuthRequestCryptogramCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<VerifyAuthRequestCryptogramCommandOutput>;
|
|
90
|
+
/**
|
|
91
|
+
* deserializeAws_restJson1VerifyCardValidationDataCommand
|
|
92
|
+
*/
|
|
93
|
+
export declare const de_VerifyCardValidationDataCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<VerifyCardValidationDataCommandOutput>;
|
|
94
|
+
/**
|
|
95
|
+
* deserializeAws_restJson1VerifyMacCommand
|
|
96
|
+
*/
|
|
97
|
+
export declare const de_VerifyMacCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<VerifyMacCommandOutput>;
|
|
98
|
+
/**
|
|
99
|
+
* deserializeAws_restJson1VerifyPinDataCommand
|
|
100
|
+
*/
|
|
101
|
+
export declare const de_VerifyPinDataCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<VerifyPinDataCommandOutput>;
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
|
|
2
|
+
import { PaymentCryptographyDataClientConfig } from "./PaymentCryptographyDataClient";
|
|
3
|
+
/**
|
|
4
|
+
* @internal
|
|
5
|
+
*/
|
|
6
|
+
export declare const getRuntimeConfig: (config: PaymentCryptographyDataClientConfig) => {
|
|
7
|
+
runtime: string;
|
|
8
|
+
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
9
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
10
|
+
credentialDefaultProvider: (input: any) => import("@smithy/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
11
|
+
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
12
|
+
maxAttempts: (number | import("@smithy/types").Provider<number>) & (number | import("@aws-sdk/types").Provider<number>);
|
|
13
|
+
region: string | import("@aws-sdk/types").Provider<any>;
|
|
14
|
+
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@smithy/protocol-http").HttpHandler) | RequestHandler;
|
|
15
|
+
retryMode: string | import("@smithy/types").Provider<string>;
|
|
16
|
+
sha256: import("@aws-sdk/types").HashConstructor;
|
|
17
|
+
streamCollector: import("@smithy/types").StreamCollector;
|
|
18
|
+
useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@aws-sdk/types").Provider<boolean>);
|
|
19
|
+
useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@aws-sdk/types").Provider<boolean>);
|
|
20
|
+
apiVersion: string;
|
|
21
|
+
urlParser: import("@aws-sdk/types").UrlParser;
|
|
22
|
+
base64Decoder: import("@smithy/types").Decoder;
|
|
23
|
+
base64Encoder: import("@smithy/types").Encoder;
|
|
24
|
+
utf8Decoder: import("@smithy/types").Decoder;
|
|
25
|
+
utf8Encoder: import("@smithy/types").Encoder;
|
|
26
|
+
disableHostPrefix: boolean;
|
|
27
|
+
serviceId: string;
|
|
28
|
+
logger: import("@aws-sdk/types").Logger;
|
|
29
|
+
endpoint?: ((string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | import("@aws-sdk/types").EndpointV2 | import("@aws-sdk/types").Provider<import("@aws-sdk/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@aws-sdk/types").EndpointV2 | import("@smithy/types").Provider<import("@aws-sdk/types").EndpointV2>)) | undefined;
|
|
30
|
+
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
31
|
+
logger?: import("@aws-sdk/types").Logger | undefined;
|
|
32
|
+
}) => import("@aws-sdk/types").EndpointV2;
|
|
33
|
+
tls?: boolean | undefined;
|
|
34
|
+
retryStrategy?: import("@aws-sdk/types").RetryStrategy | import("@aws-sdk/types").RetryStrategyV2 | undefined;
|
|
35
|
+
credentials?: import("@aws-sdk/types").AwsCredentialIdentity | import("@aws-sdk/types").Provider<import("@aws-sdk/types").AwsCredentialIdentity> | undefined;
|
|
36
|
+
signer?: import("@aws-sdk/types").RequestSigner | ((authScheme?: import("@aws-sdk/types").AuthScheme | undefined) => Promise<import("@aws-sdk/types").RequestSigner>) | undefined;
|
|
37
|
+
signingEscapePath?: boolean | undefined;
|
|
38
|
+
systemClockOffset?: number | undefined;
|
|
39
|
+
signingRegion?: string | undefined;
|
|
40
|
+
signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
|
|
41
|
+
customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
|
|
42
|
+
};
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { NodeHttpHandler as RequestHandler } from "@aws-sdk/node-http-handler";
|
|
2
|
+
import { PaymentCryptographyDataClientConfig } from "./PaymentCryptographyDataClient";
|
|
3
|
+
/**
|
|
4
|
+
* @internal
|
|
5
|
+
*/
|
|
6
|
+
export declare const getRuntimeConfig: (config: PaymentCryptographyDataClientConfig) => {
|
|
7
|
+
runtime: string;
|
|
8
|
+
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
9
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
10
|
+
credentialDefaultProvider: (input: any) => import("@smithy/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
11
|
+
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
12
|
+
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
13
|
+
region: string | import("@aws-sdk/types").Provider<string>;
|
|
14
|
+
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@smithy/protocol-http").HttpHandler) | RequestHandler;
|
|
15
|
+
retryMode: string | import("@smithy/types").Provider<string>;
|
|
16
|
+
sha256: import("@aws-sdk/types").HashConstructor;
|
|
17
|
+
streamCollector: import("@smithy/types").StreamCollector;
|
|
18
|
+
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
19
|
+
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
20
|
+
apiVersion: string;
|
|
21
|
+
urlParser: import("@aws-sdk/types").UrlParser;
|
|
22
|
+
base64Decoder: import("@smithy/types").Decoder;
|
|
23
|
+
base64Encoder: import("@smithy/types").Encoder;
|
|
24
|
+
utf8Decoder: import("@smithy/types").Decoder;
|
|
25
|
+
utf8Encoder: import("@smithy/types").Encoder;
|
|
26
|
+
disableHostPrefix: boolean;
|
|
27
|
+
serviceId: string;
|
|
28
|
+
logger: import("@aws-sdk/types").Logger;
|
|
29
|
+
endpoint?: ((string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | import("@aws-sdk/types").EndpointV2 | import("@aws-sdk/types").Provider<import("@aws-sdk/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@aws-sdk/types").EndpointV2 | import("@smithy/types").Provider<import("@aws-sdk/types").EndpointV2>)) | undefined;
|
|
30
|
+
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
31
|
+
logger?: import("@aws-sdk/types").Logger | undefined;
|
|
32
|
+
}) => import("@aws-sdk/types").EndpointV2;
|
|
33
|
+
tls?: boolean | undefined;
|
|
34
|
+
retryStrategy?: import("@aws-sdk/types").RetryStrategy | import("@aws-sdk/types").RetryStrategyV2 | undefined;
|
|
35
|
+
credentials?: import("@aws-sdk/types").AwsCredentialIdentity | import("@aws-sdk/types").Provider<import("@aws-sdk/types").AwsCredentialIdentity> | undefined;
|
|
36
|
+
signer?: import("@aws-sdk/types").RequestSigner | ((authScheme?: import("@aws-sdk/types").AuthScheme | undefined) => Promise<import("@aws-sdk/types").RequestSigner>) | undefined;
|
|
37
|
+
signingEscapePath?: boolean | undefined;
|
|
38
|
+
systemClockOffset?: number | undefined;
|
|
39
|
+
signingRegion?: string | undefined;
|
|
40
|
+
signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
|
|
41
|
+
customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
|
|
42
|
+
};
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import { PaymentCryptographyDataClientConfig } from "./PaymentCryptographyDataClient";
|
|
2
|
+
/**
|
|
3
|
+
* @internal
|
|
4
|
+
*/
|
|
5
|
+
export declare const getRuntimeConfig: (config: PaymentCryptographyDataClientConfig) => {
|
|
6
|
+
runtime: string;
|
|
7
|
+
sha256: import("@aws-sdk/types").HashConstructor;
|
|
8
|
+
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@smithy/protocol-http").HttpHandler) | import("@aws-sdk/fetch-http-handler").FetchHttpHandler;
|
|
9
|
+
apiVersion: string;
|
|
10
|
+
urlParser: import("@aws-sdk/types").UrlParser;
|
|
11
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
12
|
+
streamCollector: import("@smithy/types").StreamCollector;
|
|
13
|
+
base64Decoder: import("@smithy/types").Decoder;
|
|
14
|
+
base64Encoder: import("@smithy/types").Encoder;
|
|
15
|
+
utf8Decoder: import("@smithy/types").Decoder;
|
|
16
|
+
utf8Encoder: import("@smithy/types").Encoder;
|
|
17
|
+
disableHostPrefix: boolean;
|
|
18
|
+
serviceId: string;
|
|
19
|
+
useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@aws-sdk/types").Provider<boolean>);
|
|
20
|
+
useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@aws-sdk/types").Provider<boolean>);
|
|
21
|
+
region: string | import("@aws-sdk/types").Provider<any>;
|
|
22
|
+
credentialDefaultProvider: (input: any) => import("@smithy/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
23
|
+
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
24
|
+
maxAttempts: (number | import("@smithy/types").Provider<number>) & (number | import("@aws-sdk/types").Provider<number>);
|
|
25
|
+
retryMode: string | import("@smithy/types").Provider<string>;
|
|
26
|
+
logger: import("@aws-sdk/types").Logger;
|
|
27
|
+
defaultsMode: import("@aws-sdk/smithy-client").DefaultsMode | import("@smithy/types").Provider<import("@aws-sdk/smithy-client").DefaultsMode>;
|
|
28
|
+
endpoint?: string | import("@aws-sdk/types").EndpointV2 | (import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> & import("@smithy/types").Provider<import("@smithy/types").Endpoint>) | (import("@aws-sdk/types").Endpoint & import("@smithy/types").Endpoint) | (import("@aws-sdk/types").Provider<import("@aws-sdk/types").EndpointV2> & import("@smithy/types").Provider<import("@aws-sdk/types").EndpointV2>) | undefined;
|
|
29
|
+
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
30
|
+
logger?: import("@aws-sdk/types").Logger | undefined;
|
|
31
|
+
}) => import("@aws-sdk/types").EndpointV2;
|
|
32
|
+
tls?: boolean | undefined;
|
|
33
|
+
retryStrategy?: import("@aws-sdk/types").RetryStrategy | import("@aws-sdk/types").RetryStrategyV2 | undefined;
|
|
34
|
+
credentials?: import("@aws-sdk/types").AwsCredentialIdentity | import("@aws-sdk/types").Provider<import("@aws-sdk/types").AwsCredentialIdentity> | undefined;
|
|
35
|
+
signer?: import("@aws-sdk/types").RequestSigner | ((authScheme?: import("@aws-sdk/types").AuthScheme | undefined) => Promise<import("@aws-sdk/types").RequestSigner>) | undefined;
|
|
36
|
+
signingEscapePath?: boolean | undefined;
|
|
37
|
+
systemClockOffset?: number | undefined;
|
|
38
|
+
signingRegion?: string | undefined;
|
|
39
|
+
signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
|
|
40
|
+
customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
|
|
41
|
+
};
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { PaymentCryptographyDataClientConfig } from "./PaymentCryptographyDataClient";
|
|
2
|
+
/**
|
|
3
|
+
* @internal
|
|
4
|
+
*/
|
|
5
|
+
export declare const getRuntimeConfig: (config: PaymentCryptographyDataClientConfig) => {
|
|
6
|
+
apiVersion: string;
|
|
7
|
+
base64Decoder: import("@smithy/types").Decoder;
|
|
8
|
+
base64Encoder: import("@smithy/types").Encoder;
|
|
9
|
+
disableHostPrefix: boolean;
|
|
10
|
+
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
11
|
+
logger?: import("@aws-sdk/types").Logger | undefined;
|
|
12
|
+
}) => import("@aws-sdk/types").EndpointV2;
|
|
13
|
+
logger: import("@aws-sdk/types").Logger;
|
|
14
|
+
serviceId: string;
|
|
15
|
+
urlParser: import("@aws-sdk/types").UrlParser;
|
|
16
|
+
utf8Decoder: import("@smithy/types").Decoder;
|
|
17
|
+
utf8Encoder: import("@smithy/types").Encoder;
|
|
18
|
+
};
|
|
@@ -0,0 +1,194 @@
|
|
|
1
|
+
import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
DecryptDataCommandInput,
|
|
4
|
+
DecryptDataCommandOutput,
|
|
5
|
+
} from "./commands/DecryptDataCommand";
|
|
6
|
+
import {
|
|
7
|
+
EncryptDataCommandInput,
|
|
8
|
+
EncryptDataCommandOutput,
|
|
9
|
+
} from "./commands/EncryptDataCommand";
|
|
10
|
+
import {
|
|
11
|
+
GenerateCardValidationDataCommandInput,
|
|
12
|
+
GenerateCardValidationDataCommandOutput,
|
|
13
|
+
} from "./commands/GenerateCardValidationDataCommand";
|
|
14
|
+
import {
|
|
15
|
+
GenerateMacCommandInput,
|
|
16
|
+
GenerateMacCommandOutput,
|
|
17
|
+
} from "./commands/GenerateMacCommand";
|
|
18
|
+
import {
|
|
19
|
+
GeneratePinDataCommandInput,
|
|
20
|
+
GeneratePinDataCommandOutput,
|
|
21
|
+
} from "./commands/GeneratePinDataCommand";
|
|
22
|
+
import {
|
|
23
|
+
ReEncryptDataCommandInput,
|
|
24
|
+
ReEncryptDataCommandOutput,
|
|
25
|
+
} from "./commands/ReEncryptDataCommand";
|
|
26
|
+
import {
|
|
27
|
+
TranslatePinDataCommandInput,
|
|
28
|
+
TranslatePinDataCommandOutput,
|
|
29
|
+
} from "./commands/TranslatePinDataCommand";
|
|
30
|
+
import {
|
|
31
|
+
VerifyAuthRequestCryptogramCommandInput,
|
|
32
|
+
VerifyAuthRequestCryptogramCommandOutput,
|
|
33
|
+
} from "./commands/VerifyAuthRequestCryptogramCommand";
|
|
34
|
+
import {
|
|
35
|
+
VerifyCardValidationDataCommandInput,
|
|
36
|
+
VerifyCardValidationDataCommandOutput,
|
|
37
|
+
} from "./commands/VerifyCardValidationDataCommand";
|
|
38
|
+
import {
|
|
39
|
+
VerifyMacCommandInput,
|
|
40
|
+
VerifyMacCommandOutput,
|
|
41
|
+
} from "./commands/VerifyMacCommand";
|
|
42
|
+
import {
|
|
43
|
+
VerifyPinDataCommandInput,
|
|
44
|
+
VerifyPinDataCommandOutput,
|
|
45
|
+
} from "./commands/VerifyPinDataCommand";
|
|
46
|
+
import { PaymentCryptographyDataClient } from "./PaymentCryptographyDataClient";
|
|
47
|
+
export interface PaymentCryptographyData {
|
|
48
|
+
decryptData(
|
|
49
|
+
args: DecryptDataCommandInput,
|
|
50
|
+
options?: __HttpHandlerOptions
|
|
51
|
+
): Promise<DecryptDataCommandOutput>;
|
|
52
|
+
decryptData(
|
|
53
|
+
args: DecryptDataCommandInput,
|
|
54
|
+
cb: (err: any, data?: DecryptDataCommandOutput) => void
|
|
55
|
+
): void;
|
|
56
|
+
decryptData(
|
|
57
|
+
args: DecryptDataCommandInput,
|
|
58
|
+
options: __HttpHandlerOptions,
|
|
59
|
+
cb: (err: any, data?: DecryptDataCommandOutput) => void
|
|
60
|
+
): void;
|
|
61
|
+
encryptData(
|
|
62
|
+
args: EncryptDataCommandInput,
|
|
63
|
+
options?: __HttpHandlerOptions
|
|
64
|
+
): Promise<EncryptDataCommandOutput>;
|
|
65
|
+
encryptData(
|
|
66
|
+
args: EncryptDataCommandInput,
|
|
67
|
+
cb: (err: any, data?: EncryptDataCommandOutput) => void
|
|
68
|
+
): void;
|
|
69
|
+
encryptData(
|
|
70
|
+
args: EncryptDataCommandInput,
|
|
71
|
+
options: __HttpHandlerOptions,
|
|
72
|
+
cb: (err: any, data?: EncryptDataCommandOutput) => void
|
|
73
|
+
): void;
|
|
74
|
+
generateCardValidationData(
|
|
75
|
+
args: GenerateCardValidationDataCommandInput,
|
|
76
|
+
options?: __HttpHandlerOptions
|
|
77
|
+
): Promise<GenerateCardValidationDataCommandOutput>;
|
|
78
|
+
generateCardValidationData(
|
|
79
|
+
args: GenerateCardValidationDataCommandInput,
|
|
80
|
+
cb: (err: any, data?: GenerateCardValidationDataCommandOutput) => void
|
|
81
|
+
): void;
|
|
82
|
+
generateCardValidationData(
|
|
83
|
+
args: GenerateCardValidationDataCommandInput,
|
|
84
|
+
options: __HttpHandlerOptions,
|
|
85
|
+
cb: (err: any, data?: GenerateCardValidationDataCommandOutput) => void
|
|
86
|
+
): void;
|
|
87
|
+
generateMac(
|
|
88
|
+
args: GenerateMacCommandInput,
|
|
89
|
+
options?: __HttpHandlerOptions
|
|
90
|
+
): Promise<GenerateMacCommandOutput>;
|
|
91
|
+
generateMac(
|
|
92
|
+
args: GenerateMacCommandInput,
|
|
93
|
+
cb: (err: any, data?: GenerateMacCommandOutput) => void
|
|
94
|
+
): void;
|
|
95
|
+
generateMac(
|
|
96
|
+
args: GenerateMacCommandInput,
|
|
97
|
+
options: __HttpHandlerOptions,
|
|
98
|
+
cb: (err: any, data?: GenerateMacCommandOutput) => void
|
|
99
|
+
): void;
|
|
100
|
+
generatePinData(
|
|
101
|
+
args: GeneratePinDataCommandInput,
|
|
102
|
+
options?: __HttpHandlerOptions
|
|
103
|
+
): Promise<GeneratePinDataCommandOutput>;
|
|
104
|
+
generatePinData(
|
|
105
|
+
args: GeneratePinDataCommandInput,
|
|
106
|
+
cb: (err: any, data?: GeneratePinDataCommandOutput) => void
|
|
107
|
+
): void;
|
|
108
|
+
generatePinData(
|
|
109
|
+
args: GeneratePinDataCommandInput,
|
|
110
|
+
options: __HttpHandlerOptions,
|
|
111
|
+
cb: (err: any, data?: GeneratePinDataCommandOutput) => void
|
|
112
|
+
): void;
|
|
113
|
+
reEncryptData(
|
|
114
|
+
args: ReEncryptDataCommandInput,
|
|
115
|
+
options?: __HttpHandlerOptions
|
|
116
|
+
): Promise<ReEncryptDataCommandOutput>;
|
|
117
|
+
reEncryptData(
|
|
118
|
+
args: ReEncryptDataCommandInput,
|
|
119
|
+
cb: (err: any, data?: ReEncryptDataCommandOutput) => void
|
|
120
|
+
): void;
|
|
121
|
+
reEncryptData(
|
|
122
|
+
args: ReEncryptDataCommandInput,
|
|
123
|
+
options: __HttpHandlerOptions,
|
|
124
|
+
cb: (err: any, data?: ReEncryptDataCommandOutput) => void
|
|
125
|
+
): void;
|
|
126
|
+
translatePinData(
|
|
127
|
+
args: TranslatePinDataCommandInput,
|
|
128
|
+
options?: __HttpHandlerOptions
|
|
129
|
+
): Promise<TranslatePinDataCommandOutput>;
|
|
130
|
+
translatePinData(
|
|
131
|
+
args: TranslatePinDataCommandInput,
|
|
132
|
+
cb: (err: any, data?: TranslatePinDataCommandOutput) => void
|
|
133
|
+
): void;
|
|
134
|
+
translatePinData(
|
|
135
|
+
args: TranslatePinDataCommandInput,
|
|
136
|
+
options: __HttpHandlerOptions,
|
|
137
|
+
cb: (err: any, data?: TranslatePinDataCommandOutput) => void
|
|
138
|
+
): void;
|
|
139
|
+
verifyAuthRequestCryptogram(
|
|
140
|
+
args: VerifyAuthRequestCryptogramCommandInput,
|
|
141
|
+
options?: __HttpHandlerOptions
|
|
142
|
+
): Promise<VerifyAuthRequestCryptogramCommandOutput>;
|
|
143
|
+
verifyAuthRequestCryptogram(
|
|
144
|
+
args: VerifyAuthRequestCryptogramCommandInput,
|
|
145
|
+
cb: (err: any, data?: VerifyAuthRequestCryptogramCommandOutput) => void
|
|
146
|
+
): void;
|
|
147
|
+
verifyAuthRequestCryptogram(
|
|
148
|
+
args: VerifyAuthRequestCryptogramCommandInput,
|
|
149
|
+
options: __HttpHandlerOptions,
|
|
150
|
+
cb: (err: any, data?: VerifyAuthRequestCryptogramCommandOutput) => void
|
|
151
|
+
): void;
|
|
152
|
+
verifyCardValidationData(
|
|
153
|
+
args: VerifyCardValidationDataCommandInput,
|
|
154
|
+
options?: __HttpHandlerOptions
|
|
155
|
+
): Promise<VerifyCardValidationDataCommandOutput>;
|
|
156
|
+
verifyCardValidationData(
|
|
157
|
+
args: VerifyCardValidationDataCommandInput,
|
|
158
|
+
cb: (err: any, data?: VerifyCardValidationDataCommandOutput) => void
|
|
159
|
+
): void;
|
|
160
|
+
verifyCardValidationData(
|
|
161
|
+
args: VerifyCardValidationDataCommandInput,
|
|
162
|
+
options: __HttpHandlerOptions,
|
|
163
|
+
cb: (err: any, data?: VerifyCardValidationDataCommandOutput) => void
|
|
164
|
+
): void;
|
|
165
|
+
verifyMac(
|
|
166
|
+
args: VerifyMacCommandInput,
|
|
167
|
+
options?: __HttpHandlerOptions
|
|
168
|
+
): Promise<VerifyMacCommandOutput>;
|
|
169
|
+
verifyMac(
|
|
170
|
+
args: VerifyMacCommandInput,
|
|
171
|
+
cb: (err: any, data?: VerifyMacCommandOutput) => void
|
|
172
|
+
): void;
|
|
173
|
+
verifyMac(
|
|
174
|
+
args: VerifyMacCommandInput,
|
|
175
|
+
options: __HttpHandlerOptions,
|
|
176
|
+
cb: (err: any, data?: VerifyMacCommandOutput) => void
|
|
177
|
+
): void;
|
|
178
|
+
verifyPinData(
|
|
179
|
+
args: VerifyPinDataCommandInput,
|
|
180
|
+
options?: __HttpHandlerOptions
|
|
181
|
+
): Promise<VerifyPinDataCommandOutput>;
|
|
182
|
+
verifyPinData(
|
|
183
|
+
args: VerifyPinDataCommandInput,
|
|
184
|
+
cb: (err: any, data?: VerifyPinDataCommandOutput) => void
|
|
185
|
+
): void;
|
|
186
|
+
verifyPinData(
|
|
187
|
+
args: VerifyPinDataCommandInput,
|
|
188
|
+
options: __HttpHandlerOptions,
|
|
189
|
+
cb: (err: any, data?: VerifyPinDataCommandOutput) => void
|
|
190
|
+
): void;
|
|
191
|
+
}
|
|
192
|
+
export declare class PaymentCryptographyData
|
|
193
|
+
extends PaymentCryptographyDataClient
|
|
194
|
+
implements PaymentCryptographyData {}
|
|
@@ -0,0 +1,181 @@
|
|
|
1
|
+
import {
|
|
2
|
+
RegionInputConfig,
|
|
3
|
+
RegionResolvedConfig,
|
|
4
|
+
} from "@aws-sdk/config-resolver";
|
|
5
|
+
import {
|
|
6
|
+
EndpointInputConfig,
|
|
7
|
+
EndpointResolvedConfig,
|
|
8
|
+
} from "@aws-sdk/middleware-endpoint";
|
|
9
|
+
import {
|
|
10
|
+
HostHeaderInputConfig,
|
|
11
|
+
HostHeaderResolvedConfig,
|
|
12
|
+
} from "@aws-sdk/middleware-host-header";
|
|
13
|
+
import {
|
|
14
|
+
RetryInputConfig,
|
|
15
|
+
RetryResolvedConfig,
|
|
16
|
+
} from "@aws-sdk/middleware-retry";
|
|
17
|
+
import {
|
|
18
|
+
AwsAuthInputConfig,
|
|
19
|
+
AwsAuthResolvedConfig,
|
|
20
|
+
} from "@aws-sdk/middleware-signing";
|
|
21
|
+
import {
|
|
22
|
+
UserAgentInputConfig,
|
|
23
|
+
UserAgentResolvedConfig,
|
|
24
|
+
} from "@aws-sdk/middleware-user-agent";
|
|
25
|
+
import {
|
|
26
|
+
Client as __Client,
|
|
27
|
+
DefaultsMode as __DefaultsMode,
|
|
28
|
+
SmithyConfiguration as __SmithyConfiguration,
|
|
29
|
+
SmithyResolvedConfiguration as __SmithyResolvedConfiguration,
|
|
30
|
+
} from "@aws-sdk/smithy-client";
|
|
31
|
+
import {
|
|
32
|
+
BodyLengthCalculator as __BodyLengthCalculator,
|
|
33
|
+
ChecksumConstructor as __ChecksumConstructor,
|
|
34
|
+
Credentials as __Credentials,
|
|
35
|
+
HashConstructor as __HashConstructor,
|
|
36
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
37
|
+
Logger as __Logger,
|
|
38
|
+
Provider,
|
|
39
|
+
UrlParser as __UrlParser,
|
|
40
|
+
UserAgent as __UserAgent,
|
|
41
|
+
} from "@aws-sdk/types";
|
|
42
|
+
import { HttpHandler as __HttpHandler } from "@smithy/protocol-http";
|
|
43
|
+
import {
|
|
44
|
+
Decoder as __Decoder,
|
|
45
|
+
Encoder as __Encoder,
|
|
46
|
+
Provider as __Provider,
|
|
47
|
+
StreamCollector as __StreamCollector,
|
|
48
|
+
} from "@smithy/types";
|
|
49
|
+
import {
|
|
50
|
+
DecryptDataCommandInput,
|
|
51
|
+
DecryptDataCommandOutput,
|
|
52
|
+
} from "./commands/DecryptDataCommand";
|
|
53
|
+
import {
|
|
54
|
+
EncryptDataCommandInput,
|
|
55
|
+
EncryptDataCommandOutput,
|
|
56
|
+
} from "./commands/EncryptDataCommand";
|
|
57
|
+
import {
|
|
58
|
+
GenerateCardValidationDataCommandInput,
|
|
59
|
+
GenerateCardValidationDataCommandOutput,
|
|
60
|
+
} from "./commands/GenerateCardValidationDataCommand";
|
|
61
|
+
import {
|
|
62
|
+
GenerateMacCommandInput,
|
|
63
|
+
GenerateMacCommandOutput,
|
|
64
|
+
} from "./commands/GenerateMacCommand";
|
|
65
|
+
import {
|
|
66
|
+
GeneratePinDataCommandInput,
|
|
67
|
+
GeneratePinDataCommandOutput,
|
|
68
|
+
} from "./commands/GeneratePinDataCommand";
|
|
69
|
+
import {
|
|
70
|
+
ReEncryptDataCommandInput,
|
|
71
|
+
ReEncryptDataCommandOutput,
|
|
72
|
+
} from "./commands/ReEncryptDataCommand";
|
|
73
|
+
import {
|
|
74
|
+
TranslatePinDataCommandInput,
|
|
75
|
+
TranslatePinDataCommandOutput,
|
|
76
|
+
} from "./commands/TranslatePinDataCommand";
|
|
77
|
+
import {
|
|
78
|
+
VerifyAuthRequestCryptogramCommandInput,
|
|
79
|
+
VerifyAuthRequestCryptogramCommandOutput,
|
|
80
|
+
} from "./commands/VerifyAuthRequestCryptogramCommand";
|
|
81
|
+
import {
|
|
82
|
+
VerifyCardValidationDataCommandInput,
|
|
83
|
+
VerifyCardValidationDataCommandOutput,
|
|
84
|
+
} from "./commands/VerifyCardValidationDataCommand";
|
|
85
|
+
import {
|
|
86
|
+
VerifyMacCommandInput,
|
|
87
|
+
VerifyMacCommandOutput,
|
|
88
|
+
} from "./commands/VerifyMacCommand";
|
|
89
|
+
import {
|
|
90
|
+
VerifyPinDataCommandInput,
|
|
91
|
+
VerifyPinDataCommandOutput,
|
|
92
|
+
} from "./commands/VerifyPinDataCommand";
|
|
93
|
+
import {
|
|
94
|
+
ClientInputEndpointParameters,
|
|
95
|
+
ClientResolvedEndpointParameters,
|
|
96
|
+
EndpointParameters,
|
|
97
|
+
} from "./endpoint/EndpointParameters";
|
|
98
|
+
export { __Client };
|
|
99
|
+
export type ServiceInputTypes =
|
|
100
|
+
| DecryptDataCommandInput
|
|
101
|
+
| EncryptDataCommandInput
|
|
102
|
+
| GenerateCardValidationDataCommandInput
|
|
103
|
+
| GenerateMacCommandInput
|
|
104
|
+
| GeneratePinDataCommandInput
|
|
105
|
+
| ReEncryptDataCommandInput
|
|
106
|
+
| TranslatePinDataCommandInput
|
|
107
|
+
| VerifyAuthRequestCryptogramCommandInput
|
|
108
|
+
| VerifyCardValidationDataCommandInput
|
|
109
|
+
| VerifyMacCommandInput
|
|
110
|
+
| VerifyPinDataCommandInput;
|
|
111
|
+
export type ServiceOutputTypes =
|
|
112
|
+
| DecryptDataCommandOutput
|
|
113
|
+
| EncryptDataCommandOutput
|
|
114
|
+
| GenerateCardValidationDataCommandOutput
|
|
115
|
+
| GenerateMacCommandOutput
|
|
116
|
+
| GeneratePinDataCommandOutput
|
|
117
|
+
| ReEncryptDataCommandOutput
|
|
118
|
+
| TranslatePinDataCommandOutput
|
|
119
|
+
| VerifyAuthRequestCryptogramCommandOutput
|
|
120
|
+
| VerifyCardValidationDataCommandOutput
|
|
121
|
+
| VerifyMacCommandOutput
|
|
122
|
+
| VerifyPinDataCommandOutput;
|
|
123
|
+
export interface ClientDefaults
|
|
124
|
+
extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
125
|
+
requestHandler?: __HttpHandler;
|
|
126
|
+
sha256?: __ChecksumConstructor | __HashConstructor;
|
|
127
|
+
urlParser?: __UrlParser;
|
|
128
|
+
bodyLengthChecker?: __BodyLengthCalculator;
|
|
129
|
+
streamCollector?: __StreamCollector;
|
|
130
|
+
base64Decoder?: __Decoder;
|
|
131
|
+
base64Encoder?: __Encoder;
|
|
132
|
+
utf8Decoder?: __Decoder;
|
|
133
|
+
utf8Encoder?: __Encoder;
|
|
134
|
+
runtime?: string;
|
|
135
|
+
disableHostPrefix?: boolean;
|
|
136
|
+
serviceId?: string;
|
|
137
|
+
useDualstackEndpoint?: boolean | __Provider<boolean>;
|
|
138
|
+
useFipsEndpoint?: boolean | __Provider<boolean>;
|
|
139
|
+
region?: string | __Provider<string>;
|
|
140
|
+
credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
|
|
141
|
+
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
142
|
+
maxAttempts?: number | __Provider<number>;
|
|
143
|
+
retryMode?: string | __Provider<string>;
|
|
144
|
+
logger?: __Logger;
|
|
145
|
+
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
146
|
+
}
|
|
147
|
+
export type PaymentCryptographyDataClientConfigType = Partial<
|
|
148
|
+
__SmithyConfiguration<__HttpHandlerOptions>
|
|
149
|
+
> &
|
|
150
|
+
ClientDefaults &
|
|
151
|
+
RegionInputConfig &
|
|
152
|
+
EndpointInputConfig<EndpointParameters> &
|
|
153
|
+
RetryInputConfig &
|
|
154
|
+
HostHeaderInputConfig &
|
|
155
|
+
AwsAuthInputConfig &
|
|
156
|
+
UserAgentInputConfig &
|
|
157
|
+
ClientInputEndpointParameters;
|
|
158
|
+
export interface PaymentCryptographyDataClientConfig
|
|
159
|
+
extends PaymentCryptographyDataClientConfigType {}
|
|
160
|
+
export type PaymentCryptographyDataClientResolvedConfigType =
|
|
161
|
+
__SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
162
|
+
Required<ClientDefaults> &
|
|
163
|
+
RegionResolvedConfig &
|
|
164
|
+
EndpointResolvedConfig<EndpointParameters> &
|
|
165
|
+
RetryResolvedConfig &
|
|
166
|
+
HostHeaderResolvedConfig &
|
|
167
|
+
AwsAuthResolvedConfig &
|
|
168
|
+
UserAgentResolvedConfig &
|
|
169
|
+
ClientResolvedEndpointParameters;
|
|
170
|
+
export interface PaymentCryptographyDataClientResolvedConfig
|
|
171
|
+
extends PaymentCryptographyDataClientResolvedConfigType {}
|
|
172
|
+
export declare class PaymentCryptographyDataClient extends __Client<
|
|
173
|
+
__HttpHandlerOptions,
|
|
174
|
+
ServiceInputTypes,
|
|
175
|
+
ServiceOutputTypes,
|
|
176
|
+
PaymentCryptographyDataClientResolvedConfig
|
|
177
|
+
> {
|
|
178
|
+
readonly config: PaymentCryptographyDataClientResolvedConfig;
|
|
179
|
+
constructor(configuration: PaymentCryptographyDataClientConfig);
|
|
180
|
+
destroy(): void;
|
|
181
|
+
}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import { DecryptDataInput, DecryptDataOutput } from "../models/models_0";
|
|
10
|
+
import {
|
|
11
|
+
PaymentCryptographyDataClientResolvedConfig,
|
|
12
|
+
ServiceInputTypes,
|
|
13
|
+
ServiceOutputTypes,
|
|
14
|
+
} from "../PaymentCryptographyDataClient";
|
|
15
|
+
export { __MetadataBearer, $Command };
|
|
16
|
+
export interface DecryptDataCommandInput extends DecryptDataInput {}
|
|
17
|
+
export interface DecryptDataCommandOutput
|
|
18
|
+
extends DecryptDataOutput,
|
|
19
|
+
__MetadataBearer {}
|
|
20
|
+
export declare class DecryptDataCommand extends $Command<
|
|
21
|
+
DecryptDataCommandInput,
|
|
22
|
+
DecryptDataCommandOutput,
|
|
23
|
+
PaymentCryptographyDataClientResolvedConfig
|
|
24
|
+
> {
|
|
25
|
+
readonly input: DecryptDataCommandInput;
|
|
26
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
27
|
+
constructor(input: DecryptDataCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: PaymentCryptographyDataClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<DecryptDataCommandInput, DecryptDataCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|