@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,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 { EncryptDataInput, EncryptDataOutput } from "../models/models_0";
|
|
10
|
+
import {
|
|
11
|
+
PaymentCryptographyDataClientResolvedConfig,
|
|
12
|
+
ServiceInputTypes,
|
|
13
|
+
ServiceOutputTypes,
|
|
14
|
+
} from "../PaymentCryptographyDataClient";
|
|
15
|
+
export { __MetadataBearer, $Command };
|
|
16
|
+
export interface EncryptDataCommandInput extends EncryptDataInput {}
|
|
17
|
+
export interface EncryptDataCommandOutput
|
|
18
|
+
extends EncryptDataOutput,
|
|
19
|
+
__MetadataBearer {}
|
|
20
|
+
export declare class EncryptDataCommand extends $Command<
|
|
21
|
+
EncryptDataCommandInput,
|
|
22
|
+
EncryptDataCommandOutput,
|
|
23
|
+
PaymentCryptographyDataClientResolvedConfig
|
|
24
|
+
> {
|
|
25
|
+
readonly input: EncryptDataCommandInput;
|
|
26
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
27
|
+
constructor(input: EncryptDataCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: PaymentCryptographyDataClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<EncryptDataCommandInput, EncryptDataCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -0,0 +1,42 @@
|
|
|
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 {
|
|
10
|
+
GenerateCardValidationDataInput,
|
|
11
|
+
GenerateCardValidationDataOutput,
|
|
12
|
+
} from "../models/models_0";
|
|
13
|
+
import {
|
|
14
|
+
PaymentCryptographyDataClientResolvedConfig,
|
|
15
|
+
ServiceInputTypes,
|
|
16
|
+
ServiceOutputTypes,
|
|
17
|
+
} from "../PaymentCryptographyDataClient";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface GenerateCardValidationDataCommandInput
|
|
20
|
+
extends GenerateCardValidationDataInput {}
|
|
21
|
+
export interface GenerateCardValidationDataCommandOutput
|
|
22
|
+
extends GenerateCardValidationDataOutput,
|
|
23
|
+
__MetadataBearer {}
|
|
24
|
+
export declare class GenerateCardValidationDataCommand extends $Command<
|
|
25
|
+
GenerateCardValidationDataCommandInput,
|
|
26
|
+
GenerateCardValidationDataCommandOutput,
|
|
27
|
+
PaymentCryptographyDataClientResolvedConfig
|
|
28
|
+
> {
|
|
29
|
+
readonly input: GenerateCardValidationDataCommandInput;
|
|
30
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
31
|
+
constructor(input: GenerateCardValidationDataCommandInput);
|
|
32
|
+
resolveMiddleware(
|
|
33
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
34
|
+
configuration: PaymentCryptographyDataClientResolvedConfig,
|
|
35
|
+
options?: __HttpHandlerOptions
|
|
36
|
+
): Handler<
|
|
37
|
+
GenerateCardValidationDataCommandInput,
|
|
38
|
+
GenerateCardValidationDataCommandOutput
|
|
39
|
+
>;
|
|
40
|
+
private serialize;
|
|
41
|
+
private deserialize;
|
|
42
|
+
}
|
|
@@ -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 { GenerateMacInput, GenerateMacOutput } from "../models/models_0";
|
|
10
|
+
import {
|
|
11
|
+
PaymentCryptographyDataClientResolvedConfig,
|
|
12
|
+
ServiceInputTypes,
|
|
13
|
+
ServiceOutputTypes,
|
|
14
|
+
} from "../PaymentCryptographyDataClient";
|
|
15
|
+
export { __MetadataBearer, $Command };
|
|
16
|
+
export interface GenerateMacCommandInput extends GenerateMacInput {}
|
|
17
|
+
export interface GenerateMacCommandOutput
|
|
18
|
+
extends GenerateMacOutput,
|
|
19
|
+
__MetadataBearer {}
|
|
20
|
+
export declare class GenerateMacCommand extends $Command<
|
|
21
|
+
GenerateMacCommandInput,
|
|
22
|
+
GenerateMacCommandOutput,
|
|
23
|
+
PaymentCryptographyDataClientResolvedConfig
|
|
24
|
+
> {
|
|
25
|
+
readonly input: GenerateMacCommandInput;
|
|
26
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
27
|
+
constructor(input: GenerateMacCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: PaymentCryptographyDataClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<GenerateMacCommandInput, GenerateMacCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
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 {
|
|
10
|
+
GeneratePinDataInput,
|
|
11
|
+
GeneratePinDataOutput,
|
|
12
|
+
} from "../models/models_0";
|
|
13
|
+
import {
|
|
14
|
+
PaymentCryptographyDataClientResolvedConfig,
|
|
15
|
+
ServiceInputTypes,
|
|
16
|
+
ServiceOutputTypes,
|
|
17
|
+
} from "../PaymentCryptographyDataClient";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface GeneratePinDataCommandInput extends GeneratePinDataInput {}
|
|
20
|
+
export interface GeneratePinDataCommandOutput
|
|
21
|
+
extends GeneratePinDataOutput,
|
|
22
|
+
__MetadataBearer {}
|
|
23
|
+
export declare class GeneratePinDataCommand extends $Command<
|
|
24
|
+
GeneratePinDataCommandInput,
|
|
25
|
+
GeneratePinDataCommandOutput,
|
|
26
|
+
PaymentCryptographyDataClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: GeneratePinDataCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: GeneratePinDataCommandInput);
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: PaymentCryptographyDataClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<GeneratePinDataCommandInput, GeneratePinDataCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -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 { ReEncryptDataInput, ReEncryptDataOutput } from "../models/models_0";
|
|
10
|
+
import {
|
|
11
|
+
PaymentCryptographyDataClientResolvedConfig,
|
|
12
|
+
ServiceInputTypes,
|
|
13
|
+
ServiceOutputTypes,
|
|
14
|
+
} from "../PaymentCryptographyDataClient";
|
|
15
|
+
export { __MetadataBearer, $Command };
|
|
16
|
+
export interface ReEncryptDataCommandInput extends ReEncryptDataInput {}
|
|
17
|
+
export interface ReEncryptDataCommandOutput
|
|
18
|
+
extends ReEncryptDataOutput,
|
|
19
|
+
__MetadataBearer {}
|
|
20
|
+
export declare class ReEncryptDataCommand extends $Command<
|
|
21
|
+
ReEncryptDataCommandInput,
|
|
22
|
+
ReEncryptDataCommandOutput,
|
|
23
|
+
PaymentCryptographyDataClientResolvedConfig
|
|
24
|
+
> {
|
|
25
|
+
readonly input: ReEncryptDataCommandInput;
|
|
26
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
27
|
+
constructor(input: ReEncryptDataCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: PaymentCryptographyDataClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<ReEncryptDataCommandInput, ReEncryptDataCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
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 {
|
|
10
|
+
TranslatePinDataInput,
|
|
11
|
+
TranslatePinDataOutput,
|
|
12
|
+
} from "../models/models_0";
|
|
13
|
+
import {
|
|
14
|
+
PaymentCryptographyDataClientResolvedConfig,
|
|
15
|
+
ServiceInputTypes,
|
|
16
|
+
ServiceOutputTypes,
|
|
17
|
+
} from "../PaymentCryptographyDataClient";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface TranslatePinDataCommandInput extends TranslatePinDataInput {}
|
|
20
|
+
export interface TranslatePinDataCommandOutput
|
|
21
|
+
extends TranslatePinDataOutput,
|
|
22
|
+
__MetadataBearer {}
|
|
23
|
+
export declare class TranslatePinDataCommand extends $Command<
|
|
24
|
+
TranslatePinDataCommandInput,
|
|
25
|
+
TranslatePinDataCommandOutput,
|
|
26
|
+
PaymentCryptographyDataClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: TranslatePinDataCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: TranslatePinDataCommandInput);
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: PaymentCryptographyDataClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<TranslatePinDataCommandInput, TranslatePinDataCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -0,0 +1,42 @@
|
|
|
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 {
|
|
10
|
+
VerifyAuthRequestCryptogramInput,
|
|
11
|
+
VerifyAuthRequestCryptogramOutput,
|
|
12
|
+
} from "../models/models_0";
|
|
13
|
+
import {
|
|
14
|
+
PaymentCryptographyDataClientResolvedConfig,
|
|
15
|
+
ServiceInputTypes,
|
|
16
|
+
ServiceOutputTypes,
|
|
17
|
+
} from "../PaymentCryptographyDataClient";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface VerifyAuthRequestCryptogramCommandInput
|
|
20
|
+
extends VerifyAuthRequestCryptogramInput {}
|
|
21
|
+
export interface VerifyAuthRequestCryptogramCommandOutput
|
|
22
|
+
extends VerifyAuthRequestCryptogramOutput,
|
|
23
|
+
__MetadataBearer {}
|
|
24
|
+
export declare class VerifyAuthRequestCryptogramCommand extends $Command<
|
|
25
|
+
VerifyAuthRequestCryptogramCommandInput,
|
|
26
|
+
VerifyAuthRequestCryptogramCommandOutput,
|
|
27
|
+
PaymentCryptographyDataClientResolvedConfig
|
|
28
|
+
> {
|
|
29
|
+
readonly input: VerifyAuthRequestCryptogramCommandInput;
|
|
30
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
31
|
+
constructor(input: VerifyAuthRequestCryptogramCommandInput);
|
|
32
|
+
resolveMiddleware(
|
|
33
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
34
|
+
configuration: PaymentCryptographyDataClientResolvedConfig,
|
|
35
|
+
options?: __HttpHandlerOptions
|
|
36
|
+
): Handler<
|
|
37
|
+
VerifyAuthRequestCryptogramCommandInput,
|
|
38
|
+
VerifyAuthRequestCryptogramCommandOutput
|
|
39
|
+
>;
|
|
40
|
+
private serialize;
|
|
41
|
+
private deserialize;
|
|
42
|
+
}
|
|
@@ -0,0 +1,42 @@
|
|
|
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 {
|
|
10
|
+
VerifyCardValidationDataInput,
|
|
11
|
+
VerifyCardValidationDataOutput,
|
|
12
|
+
} from "../models/models_0";
|
|
13
|
+
import {
|
|
14
|
+
PaymentCryptographyDataClientResolvedConfig,
|
|
15
|
+
ServiceInputTypes,
|
|
16
|
+
ServiceOutputTypes,
|
|
17
|
+
} from "../PaymentCryptographyDataClient";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface VerifyCardValidationDataCommandInput
|
|
20
|
+
extends VerifyCardValidationDataInput {}
|
|
21
|
+
export interface VerifyCardValidationDataCommandOutput
|
|
22
|
+
extends VerifyCardValidationDataOutput,
|
|
23
|
+
__MetadataBearer {}
|
|
24
|
+
export declare class VerifyCardValidationDataCommand extends $Command<
|
|
25
|
+
VerifyCardValidationDataCommandInput,
|
|
26
|
+
VerifyCardValidationDataCommandOutput,
|
|
27
|
+
PaymentCryptographyDataClientResolvedConfig
|
|
28
|
+
> {
|
|
29
|
+
readonly input: VerifyCardValidationDataCommandInput;
|
|
30
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
31
|
+
constructor(input: VerifyCardValidationDataCommandInput);
|
|
32
|
+
resolveMiddleware(
|
|
33
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
34
|
+
configuration: PaymentCryptographyDataClientResolvedConfig,
|
|
35
|
+
options?: __HttpHandlerOptions
|
|
36
|
+
): Handler<
|
|
37
|
+
VerifyCardValidationDataCommandInput,
|
|
38
|
+
VerifyCardValidationDataCommandOutput
|
|
39
|
+
>;
|
|
40
|
+
private serialize;
|
|
41
|
+
private deserialize;
|
|
42
|
+
}
|
|
@@ -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 { VerifyMacInput, VerifyMacOutput } from "../models/models_0";
|
|
10
|
+
import {
|
|
11
|
+
PaymentCryptographyDataClientResolvedConfig,
|
|
12
|
+
ServiceInputTypes,
|
|
13
|
+
ServiceOutputTypes,
|
|
14
|
+
} from "../PaymentCryptographyDataClient";
|
|
15
|
+
export { __MetadataBearer, $Command };
|
|
16
|
+
export interface VerifyMacCommandInput extends VerifyMacInput {}
|
|
17
|
+
export interface VerifyMacCommandOutput
|
|
18
|
+
extends VerifyMacOutput,
|
|
19
|
+
__MetadataBearer {}
|
|
20
|
+
export declare class VerifyMacCommand extends $Command<
|
|
21
|
+
VerifyMacCommandInput,
|
|
22
|
+
VerifyMacCommandOutput,
|
|
23
|
+
PaymentCryptographyDataClientResolvedConfig
|
|
24
|
+
> {
|
|
25
|
+
readonly input: VerifyMacCommandInput;
|
|
26
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
27
|
+
constructor(input: VerifyMacCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: PaymentCryptographyDataClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<VerifyMacCommandInput, VerifyMacCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -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 { VerifyPinDataInput, VerifyPinDataOutput } from "../models/models_0";
|
|
10
|
+
import {
|
|
11
|
+
PaymentCryptographyDataClientResolvedConfig,
|
|
12
|
+
ServiceInputTypes,
|
|
13
|
+
ServiceOutputTypes,
|
|
14
|
+
} from "../PaymentCryptographyDataClient";
|
|
15
|
+
export { __MetadataBearer, $Command };
|
|
16
|
+
export interface VerifyPinDataCommandInput extends VerifyPinDataInput {}
|
|
17
|
+
export interface VerifyPinDataCommandOutput
|
|
18
|
+
extends VerifyPinDataOutput,
|
|
19
|
+
__MetadataBearer {}
|
|
20
|
+
export declare class VerifyPinDataCommand extends $Command<
|
|
21
|
+
VerifyPinDataCommandInput,
|
|
22
|
+
VerifyPinDataCommandOutput,
|
|
23
|
+
PaymentCryptographyDataClientResolvedConfig
|
|
24
|
+
> {
|
|
25
|
+
readonly input: VerifyPinDataCommandInput;
|
|
26
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
27
|
+
constructor(input: VerifyPinDataCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: PaymentCryptographyDataClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<VerifyPinDataCommandInput, VerifyPinDataCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
export * from "./DecryptDataCommand";
|
|
2
|
+
export * from "./EncryptDataCommand";
|
|
3
|
+
export * from "./GenerateCardValidationDataCommand";
|
|
4
|
+
export * from "./GenerateMacCommand";
|
|
5
|
+
export * from "./GeneratePinDataCommand";
|
|
6
|
+
export * from "./ReEncryptDataCommand";
|
|
7
|
+
export * from "./TranslatePinDataCommand";
|
|
8
|
+
export * from "./VerifyAuthRequestCryptogramCommand";
|
|
9
|
+
export * from "./VerifyCardValidationDataCommand";
|
|
10
|
+
export * from "./VerifyMacCommand";
|
|
11
|
+
export * from "./VerifyPinDataCommand";
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import {
|
|
2
|
+
EndpointParameters as __EndpointParameters,
|
|
3
|
+
EndpointV2,
|
|
4
|
+
} from "@aws-sdk/types";
|
|
5
|
+
import { Endpoint, Provider } from "@smithy/types";
|
|
6
|
+
export interface ClientInputEndpointParameters {
|
|
7
|
+
region?: string | Provider<string>;
|
|
8
|
+
useDualstackEndpoint?: boolean | Provider<boolean>;
|
|
9
|
+
useFipsEndpoint?: boolean | Provider<boolean>;
|
|
10
|
+
endpoint?:
|
|
11
|
+
| string
|
|
12
|
+
| Provider<string>
|
|
13
|
+
| Endpoint
|
|
14
|
+
| Provider<Endpoint>
|
|
15
|
+
| EndpointV2
|
|
16
|
+
| Provider<EndpointV2>;
|
|
17
|
+
}
|
|
18
|
+
export type ClientResolvedEndpointParameters = ClientInputEndpointParameters & {
|
|
19
|
+
defaultSigningName: string;
|
|
20
|
+
};
|
|
21
|
+
export declare const resolveClientEndpointParameters: <T>(
|
|
22
|
+
options: T & ClientInputEndpointParameters
|
|
23
|
+
) => T &
|
|
24
|
+
ClientInputEndpointParameters & {
|
|
25
|
+
defaultSigningName: string;
|
|
26
|
+
};
|
|
27
|
+
export interface EndpointParameters extends __EndpointParameters {
|
|
28
|
+
Region?: string;
|
|
29
|
+
UseDualStack?: boolean;
|
|
30
|
+
UseFIPS?: boolean;
|
|
31
|
+
Endpoint?: string;
|
|
32
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import {
|
|
2
|
+
ServiceException as __ServiceException,
|
|
3
|
+
ServiceExceptionOptions as __ServiceExceptionOptions,
|
|
4
|
+
} from "@aws-sdk/smithy-client";
|
|
5
|
+
export { __ServiceException, __ServiceExceptionOptions };
|
|
6
|
+
export declare class PaymentCryptographyDataServiceException extends __ServiceException {
|
|
7
|
+
constructor(options: __ServiceExceptionOptions);
|
|
8
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./models_0";
|