@aws-sdk/client-payment-cryptography-data 3.477.0 → 3.481.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/commands/DecryptDataCommand.js +18 -41
- package/dist-cjs/commands/EncryptDataCommand.js +18 -41
- package/dist-cjs/commands/GenerateCardValidationDataCommand.js +18 -41
- package/dist-cjs/commands/GenerateMacCommand.js +18 -41
- package/dist-cjs/commands/GeneratePinDataCommand.js +18 -41
- package/dist-cjs/commands/ReEncryptDataCommand.js +18 -41
- package/dist-cjs/commands/TranslatePinDataCommand.js +18 -41
- package/dist-cjs/commands/VerifyAuthRequestCryptogramCommand.js +18 -41
- package/dist-cjs/commands/VerifyCardValidationDataCommand.js +18 -41
- package/dist-cjs/commands/VerifyMacCommand.js +18 -41
- package/dist-cjs/commands/VerifyPinDataCommand.js +18 -41
- package/dist-cjs/endpoint/EndpointParameters.js +7 -1
- package/dist-es/commands/DecryptDataCommand.js +18 -41
- package/dist-es/commands/EncryptDataCommand.js +18 -41
- package/dist-es/commands/GenerateCardValidationDataCommand.js +18 -41
- package/dist-es/commands/GenerateMacCommand.js +18 -41
- package/dist-es/commands/GeneratePinDataCommand.js +18 -41
- package/dist-es/commands/ReEncryptDataCommand.js +18 -41
- package/dist-es/commands/TranslatePinDataCommand.js +18 -41
- package/dist-es/commands/VerifyAuthRequestCryptogramCommand.js +18 -41
- package/dist-es/commands/VerifyCardValidationDataCommand.js +18 -41
- package/dist-es/commands/VerifyMacCommand.js +18 -41
- package/dist-es/commands/VerifyPinDataCommand.js +18 -41
- package/dist-es/endpoint/EndpointParameters.js +6 -0
- package/dist-types/commands/DecryptDataCommand.d.ts +6 -21
- package/dist-types/commands/EncryptDataCommand.d.ts +6 -21
- package/dist-types/commands/GenerateCardValidationDataCommand.d.ts +6 -21
- package/dist-types/commands/GenerateMacCommand.d.ts +6 -21
- package/dist-types/commands/GeneratePinDataCommand.d.ts +6 -21
- package/dist-types/commands/ReEncryptDataCommand.d.ts +6 -21
- package/dist-types/commands/TranslatePinDataCommand.d.ts +6 -21
- package/dist-types/commands/VerifyAuthRequestCryptogramCommand.d.ts +6 -21
- package/dist-types/commands/VerifyCardValidationDataCommand.d.ts +6 -21
- package/dist-types/commands/VerifyMacCommand.d.ts +6 -21
- package/dist-types/commands/VerifyPinDataCommand.d.ts +6 -21
- package/dist-types/endpoint/EndpointParameters.d.ts +18 -0
- package/dist-types/ts3.4/commands/DecryptDataCommand.d.ts +14 -23
- package/dist-types/ts3.4/commands/EncryptDataCommand.d.ts +14 -23
- package/dist-types/ts3.4/commands/GenerateCardValidationDataCommand.d.ts +12 -24
- package/dist-types/ts3.4/commands/GenerateMacCommand.d.ts +14 -23
- package/dist-types/ts3.4/commands/GeneratePinDataCommand.d.ts +14 -23
- package/dist-types/ts3.4/commands/ReEncryptDataCommand.d.ts +14 -23
- package/dist-types/ts3.4/commands/TranslatePinDataCommand.d.ts +14 -23
- package/dist-types/ts3.4/commands/VerifyAuthRequestCryptogramCommand.d.ts +12 -24
- package/dist-types/ts3.4/commands/VerifyCardValidationDataCommand.d.ts +12 -24
- package/dist-types/ts3.4/commands/VerifyMacCommand.d.ts +14 -23
- package/dist-types/ts3.4/commands/VerifyPinDataCommand.d.ts +14 -23
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +18 -0
- package/package.json +11 -11
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
4
3
|
import { VerifyCardValidationDataInput, VerifyCardValidationDataOutput } from "../models/models_0";
|
|
5
4
|
import { PaymentCryptographyDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PaymentCryptographyDataClient";
|
|
6
5
|
/**
|
|
@@ -21,6 +20,10 @@ export interface VerifyCardValidationDataCommandInput extends VerifyCardValidati
|
|
|
21
20
|
*/
|
|
22
21
|
export interface VerifyCardValidationDataCommandOutput extends VerifyCardValidationDataOutput, __MetadataBearer {
|
|
23
22
|
}
|
|
23
|
+
declare const VerifyCardValidationDataCommand_base: {
|
|
24
|
+
new (input: VerifyCardValidationDataCommandInput): import("@smithy/smithy-client").CommandImpl<VerifyCardValidationDataCommandInput, VerifyCardValidationDataCommandOutput, PaymentCryptographyDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
24
27
|
/**
|
|
25
28
|
* @public
|
|
26
29
|
* <p>Verifies card-related validation data using algorithms such as Card Verification Values (CVV/CVV2), Dynamic Card Verification Values (dCVV/dCVV2) and Card Security Codes (CSC). For more information, see <a href="https://docs.aws.amazon.com/payment-cryptography/latest/userguide/verify-card-data.html">Verify card data</a> in the <i>Amazon Web Services Payment Cryptography User Guide</i>.</p>
|
|
@@ -134,23 +137,5 @@ export interface VerifyCardValidationDataCommandOutput extends VerifyCardValidat
|
|
|
134
137
|
* <p>Base exception class for all service exceptions from PaymentCryptographyData service.</p>
|
|
135
138
|
*
|
|
136
139
|
*/
|
|
137
|
-
export declare class VerifyCardValidationDataCommand extends
|
|
138
|
-
readonly input: VerifyCardValidationDataCommandInput;
|
|
139
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
140
|
-
/**
|
|
141
|
-
* @public
|
|
142
|
-
*/
|
|
143
|
-
constructor(input: VerifyCardValidationDataCommandInput);
|
|
144
|
-
/**
|
|
145
|
-
* @internal
|
|
146
|
-
*/
|
|
147
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: PaymentCryptographyDataClientResolvedConfig, options?: __HttpHandlerOptions): Handler<VerifyCardValidationDataCommandInput, VerifyCardValidationDataCommandOutput>;
|
|
148
|
-
/**
|
|
149
|
-
* @internal
|
|
150
|
-
*/
|
|
151
|
-
private serialize;
|
|
152
|
-
/**
|
|
153
|
-
* @internal
|
|
154
|
-
*/
|
|
155
|
-
private deserialize;
|
|
140
|
+
export declare class VerifyCardValidationDataCommand extends VerifyCardValidationDataCommand_base {
|
|
156
141
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
4
3
|
import { VerifyMacInput, VerifyMacOutput } from "../models/models_0";
|
|
5
4
|
import { PaymentCryptographyDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PaymentCryptographyDataClient";
|
|
6
5
|
/**
|
|
@@ -21,6 +20,10 @@ export interface VerifyMacCommandInput extends VerifyMacInput {
|
|
|
21
20
|
*/
|
|
22
21
|
export interface VerifyMacCommandOutput extends VerifyMacOutput, __MetadataBearer {
|
|
23
22
|
}
|
|
23
|
+
declare const VerifyMacCommand_base: {
|
|
24
|
+
new (input: VerifyMacCommandInput): import("@smithy/smithy-client").CommandImpl<VerifyMacCommandInput, VerifyMacCommandOutput, PaymentCryptographyDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
24
27
|
/**
|
|
25
28
|
* @public
|
|
26
29
|
* <p>Verifies a Message Authentication Code (MAC). </p>
|
|
@@ -115,23 +118,5 @@ export interface VerifyMacCommandOutput extends VerifyMacOutput, __MetadataBeare
|
|
|
115
118
|
* <p>Base exception class for all service exceptions from PaymentCryptographyData service.</p>
|
|
116
119
|
*
|
|
117
120
|
*/
|
|
118
|
-
export declare class VerifyMacCommand extends
|
|
119
|
-
readonly input: VerifyMacCommandInput;
|
|
120
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
121
|
-
/**
|
|
122
|
-
* @public
|
|
123
|
-
*/
|
|
124
|
-
constructor(input: VerifyMacCommandInput);
|
|
125
|
-
/**
|
|
126
|
-
* @internal
|
|
127
|
-
*/
|
|
128
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: PaymentCryptographyDataClientResolvedConfig, options?: __HttpHandlerOptions): Handler<VerifyMacCommandInput, VerifyMacCommandOutput>;
|
|
129
|
-
/**
|
|
130
|
-
* @internal
|
|
131
|
-
*/
|
|
132
|
-
private serialize;
|
|
133
|
-
/**
|
|
134
|
-
* @internal
|
|
135
|
-
*/
|
|
136
|
-
private deserialize;
|
|
121
|
+
export declare class VerifyMacCommand extends VerifyMacCommand_base {
|
|
137
122
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
4
3
|
import { VerifyPinDataInput, VerifyPinDataOutput } from "../models/models_0";
|
|
5
4
|
import { PaymentCryptographyDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PaymentCryptographyDataClient";
|
|
6
5
|
/**
|
|
@@ -21,6 +20,10 @@ export interface VerifyPinDataCommandInput extends VerifyPinDataInput {
|
|
|
21
20
|
*/
|
|
22
21
|
export interface VerifyPinDataCommandOutput extends VerifyPinDataOutput, __MetadataBearer {
|
|
23
22
|
}
|
|
23
|
+
declare const VerifyPinDataCommand_base: {
|
|
24
|
+
new (input: VerifyPinDataCommandInput): import("@smithy/smithy-client").CommandImpl<VerifyPinDataCommandInput, VerifyPinDataCommandOutput, PaymentCryptographyDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
24
27
|
/**
|
|
25
28
|
* @public
|
|
26
29
|
* <p>Verifies pin-related data such as PIN and PIN Offset using algorithms including VISA PVV and IBM3624. For more information, see <a href="https://docs.aws.amazon.com/payment-cryptography/latest/userguide/verify-pin-data.html">Verify PIN data</a> in the <i>Amazon Web Services Payment Cryptography User Guide</i>.</p>
|
|
@@ -112,23 +115,5 @@ export interface VerifyPinDataCommandOutput extends VerifyPinDataOutput, __Metad
|
|
|
112
115
|
* <p>Base exception class for all service exceptions from PaymentCryptographyData service.</p>
|
|
113
116
|
*
|
|
114
117
|
*/
|
|
115
|
-
export declare class VerifyPinDataCommand extends
|
|
116
|
-
readonly input: VerifyPinDataCommandInput;
|
|
117
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
118
|
-
/**
|
|
119
|
-
* @public
|
|
120
|
-
*/
|
|
121
|
-
constructor(input: VerifyPinDataCommandInput);
|
|
122
|
-
/**
|
|
123
|
-
* @internal
|
|
124
|
-
*/
|
|
125
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: PaymentCryptographyDataClientResolvedConfig, options?: __HttpHandlerOptions): Handler<VerifyPinDataCommandInput, VerifyPinDataCommandOutput>;
|
|
126
|
-
/**
|
|
127
|
-
* @internal
|
|
128
|
-
*/
|
|
129
|
-
private serialize;
|
|
130
|
-
/**
|
|
131
|
-
* @internal
|
|
132
|
-
*/
|
|
133
|
-
private deserialize;
|
|
118
|
+
export declare class VerifyPinDataCommand extends VerifyPinDataCommand_base {
|
|
134
119
|
}
|
|
@@ -14,6 +14,24 @@ export type ClientResolvedEndpointParameters = ClientInputEndpointParameters & {
|
|
|
14
14
|
export declare const resolveClientEndpointParameters: <T>(options: T & ClientInputEndpointParameters) => T & ClientInputEndpointParameters & {
|
|
15
15
|
defaultSigningName: string;
|
|
16
16
|
};
|
|
17
|
+
export declare const commonParams: {
|
|
18
|
+
readonly UseFIPS: {
|
|
19
|
+
readonly type: "builtInParams";
|
|
20
|
+
readonly name: "useFipsEndpoint";
|
|
21
|
+
};
|
|
22
|
+
readonly Endpoint: {
|
|
23
|
+
readonly type: "builtInParams";
|
|
24
|
+
readonly name: "endpoint";
|
|
25
|
+
};
|
|
26
|
+
readonly Region: {
|
|
27
|
+
readonly type: "builtInParams";
|
|
28
|
+
readonly name: "region";
|
|
29
|
+
};
|
|
30
|
+
readonly UseDualStack: {
|
|
31
|
+
readonly type: "builtInParams";
|
|
32
|
+
readonly name: "useDualstackEndpoint";
|
|
33
|
+
};
|
|
34
|
+
};
|
|
17
35
|
export interface EndpointParameters extends __EndpointParameters {
|
|
18
36
|
Region?: string;
|
|
19
37
|
UseDualStack?: boolean;
|
|
@@ -1,11 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
4
|
-
Handler,
|
|
5
|
-
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
-
MetadataBearer as __MetadataBearer,
|
|
7
|
-
MiddlewareStack,
|
|
8
|
-
} from "@smithy/types";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
9
3
|
import { DecryptDataInput, DecryptDataOutput } from "../models/models_0";
|
|
10
4
|
import {
|
|
11
5
|
PaymentCryptographyDataClientResolvedConfig,
|
|
@@ -17,19 +11,16 @@ export interface DecryptDataCommandInput extends DecryptDataInput {}
|
|
|
17
11
|
export interface DecryptDataCommandOutput
|
|
18
12
|
extends DecryptDataOutput,
|
|
19
13
|
__MetadataBearer {}
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
private serialize;
|
|
34
|
-
private deserialize;
|
|
35
|
-
}
|
|
14
|
+
declare const DecryptDataCommand_base: {
|
|
15
|
+
new (
|
|
16
|
+
input: DecryptDataCommandInput
|
|
17
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
18
|
+
DecryptDataCommandInput,
|
|
19
|
+
DecryptDataCommandOutput,
|
|
20
|
+
PaymentCryptographyDataClientResolvedConfig,
|
|
21
|
+
ServiceInputTypes,
|
|
22
|
+
ServiceOutputTypes
|
|
23
|
+
>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
25
|
+
};
|
|
26
|
+
export declare class DecryptDataCommand extends DecryptDataCommand_base {}
|
|
@@ -1,11 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
4
|
-
Handler,
|
|
5
|
-
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
-
MetadataBearer as __MetadataBearer,
|
|
7
|
-
MiddlewareStack,
|
|
8
|
-
} from "@smithy/types";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
9
3
|
import { EncryptDataInput, EncryptDataOutput } from "../models/models_0";
|
|
10
4
|
import {
|
|
11
5
|
PaymentCryptographyDataClientResolvedConfig,
|
|
@@ -17,19 +11,16 @@ export interface EncryptDataCommandInput extends EncryptDataInput {}
|
|
|
17
11
|
export interface EncryptDataCommandOutput
|
|
18
12
|
extends EncryptDataOutput,
|
|
19
13
|
__MetadataBearer {}
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
private serialize;
|
|
34
|
-
private deserialize;
|
|
35
|
-
}
|
|
14
|
+
declare const EncryptDataCommand_base: {
|
|
15
|
+
new (
|
|
16
|
+
input: EncryptDataCommandInput
|
|
17
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
18
|
+
EncryptDataCommandInput,
|
|
19
|
+
EncryptDataCommandOutput,
|
|
20
|
+
PaymentCryptographyDataClientResolvedConfig,
|
|
21
|
+
ServiceInputTypes,
|
|
22
|
+
ServiceOutputTypes
|
|
23
|
+
>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
25
|
+
};
|
|
26
|
+
export declare class EncryptDataCommand extends EncryptDataCommand_base {}
|
|
@@ -1,11 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
4
|
-
Handler,
|
|
5
|
-
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
-
MetadataBearer as __MetadataBearer,
|
|
7
|
-
MiddlewareStack,
|
|
8
|
-
} from "@smithy/types";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
9
3
|
import {
|
|
10
4
|
GenerateCardValidationDataInput,
|
|
11
5
|
GenerateCardValidationDataOutput,
|
|
@@ -21,22 +15,16 @@ export interface GenerateCardValidationDataCommandInput
|
|
|
21
15
|
export interface GenerateCardValidationDataCommandOutput
|
|
22
16
|
extends GenerateCardValidationDataOutput,
|
|
23
17
|
__MetadataBearer {}
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
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<
|
|
18
|
+
declare const GenerateCardValidationDataCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: GenerateCardValidationDataCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
37
22
|
GenerateCardValidationDataCommandInput,
|
|
38
|
-
GenerateCardValidationDataCommandOutput
|
|
23
|
+
GenerateCardValidationDataCommandOutput,
|
|
24
|
+
PaymentCryptographyDataClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
39
27
|
>;
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
}
|
|
28
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
|
+
};
|
|
30
|
+
export declare class GenerateCardValidationDataCommand extends GenerateCardValidationDataCommand_base {}
|
|
@@ -1,11 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
4
|
-
Handler,
|
|
5
|
-
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
-
MetadataBearer as __MetadataBearer,
|
|
7
|
-
MiddlewareStack,
|
|
8
|
-
} from "@smithy/types";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
9
3
|
import { GenerateMacInput, GenerateMacOutput } from "../models/models_0";
|
|
10
4
|
import {
|
|
11
5
|
PaymentCryptographyDataClientResolvedConfig,
|
|
@@ -17,19 +11,16 @@ export interface GenerateMacCommandInput extends GenerateMacInput {}
|
|
|
17
11
|
export interface GenerateMacCommandOutput
|
|
18
12
|
extends GenerateMacOutput,
|
|
19
13
|
__MetadataBearer {}
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
private serialize;
|
|
34
|
-
private deserialize;
|
|
35
|
-
}
|
|
14
|
+
declare const GenerateMacCommand_base: {
|
|
15
|
+
new (
|
|
16
|
+
input: GenerateMacCommandInput
|
|
17
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
18
|
+
GenerateMacCommandInput,
|
|
19
|
+
GenerateMacCommandOutput,
|
|
20
|
+
PaymentCryptographyDataClientResolvedConfig,
|
|
21
|
+
ServiceInputTypes,
|
|
22
|
+
ServiceOutputTypes
|
|
23
|
+
>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
25
|
+
};
|
|
26
|
+
export declare class GenerateMacCommand extends GenerateMacCommand_base {}
|
|
@@ -1,11 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
4
|
-
Handler,
|
|
5
|
-
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
-
MetadataBearer as __MetadataBearer,
|
|
7
|
-
MiddlewareStack,
|
|
8
|
-
} from "@smithy/types";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
9
3
|
import {
|
|
10
4
|
GeneratePinDataInput,
|
|
11
5
|
GeneratePinDataOutput,
|
|
@@ -20,19 +14,16 @@ export interface GeneratePinDataCommandInput extends GeneratePinDataInput {}
|
|
|
20
14
|
export interface GeneratePinDataCommandOutput
|
|
21
15
|
extends GeneratePinDataOutput,
|
|
22
16
|
__MetadataBearer {}
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
private serialize;
|
|
37
|
-
private deserialize;
|
|
38
|
-
}
|
|
17
|
+
declare const GeneratePinDataCommand_base: {
|
|
18
|
+
new (
|
|
19
|
+
input: GeneratePinDataCommandInput
|
|
20
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
21
|
+
GeneratePinDataCommandInput,
|
|
22
|
+
GeneratePinDataCommandOutput,
|
|
23
|
+
PaymentCryptographyDataClientResolvedConfig,
|
|
24
|
+
ServiceInputTypes,
|
|
25
|
+
ServiceOutputTypes
|
|
26
|
+
>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
export declare class GeneratePinDataCommand extends GeneratePinDataCommand_base {}
|
|
@@ -1,11 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
4
|
-
Handler,
|
|
5
|
-
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
-
MetadataBearer as __MetadataBearer,
|
|
7
|
-
MiddlewareStack,
|
|
8
|
-
} from "@smithy/types";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
9
3
|
import { ReEncryptDataInput, ReEncryptDataOutput } from "../models/models_0";
|
|
10
4
|
import {
|
|
11
5
|
PaymentCryptographyDataClientResolvedConfig,
|
|
@@ -17,19 +11,16 @@ export interface ReEncryptDataCommandInput extends ReEncryptDataInput {}
|
|
|
17
11
|
export interface ReEncryptDataCommandOutput
|
|
18
12
|
extends ReEncryptDataOutput,
|
|
19
13
|
__MetadataBearer {}
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
private serialize;
|
|
34
|
-
private deserialize;
|
|
35
|
-
}
|
|
14
|
+
declare const ReEncryptDataCommand_base: {
|
|
15
|
+
new (
|
|
16
|
+
input: ReEncryptDataCommandInput
|
|
17
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
18
|
+
ReEncryptDataCommandInput,
|
|
19
|
+
ReEncryptDataCommandOutput,
|
|
20
|
+
PaymentCryptographyDataClientResolvedConfig,
|
|
21
|
+
ServiceInputTypes,
|
|
22
|
+
ServiceOutputTypes
|
|
23
|
+
>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
25
|
+
};
|
|
26
|
+
export declare class ReEncryptDataCommand extends ReEncryptDataCommand_base {}
|
|
@@ -1,11 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
4
|
-
Handler,
|
|
5
|
-
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
-
MetadataBearer as __MetadataBearer,
|
|
7
|
-
MiddlewareStack,
|
|
8
|
-
} from "@smithy/types";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
9
3
|
import {
|
|
10
4
|
TranslatePinDataInput,
|
|
11
5
|
TranslatePinDataOutput,
|
|
@@ -20,19 +14,16 @@ export interface TranslatePinDataCommandInput extends TranslatePinDataInput {}
|
|
|
20
14
|
export interface TranslatePinDataCommandOutput
|
|
21
15
|
extends TranslatePinDataOutput,
|
|
22
16
|
__MetadataBearer {}
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
private serialize;
|
|
37
|
-
private deserialize;
|
|
38
|
-
}
|
|
17
|
+
declare const TranslatePinDataCommand_base: {
|
|
18
|
+
new (
|
|
19
|
+
input: TranslatePinDataCommandInput
|
|
20
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
21
|
+
TranslatePinDataCommandInput,
|
|
22
|
+
TranslatePinDataCommandOutput,
|
|
23
|
+
PaymentCryptographyDataClientResolvedConfig,
|
|
24
|
+
ServiceInputTypes,
|
|
25
|
+
ServiceOutputTypes
|
|
26
|
+
>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
export declare class TranslatePinDataCommand extends TranslatePinDataCommand_base {}
|
|
@@ -1,11 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
4
|
-
Handler,
|
|
5
|
-
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
-
MetadataBearer as __MetadataBearer,
|
|
7
|
-
MiddlewareStack,
|
|
8
|
-
} from "@smithy/types";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
9
3
|
import {
|
|
10
4
|
VerifyAuthRequestCryptogramInput,
|
|
11
5
|
VerifyAuthRequestCryptogramOutput,
|
|
@@ -21,22 +15,16 @@ export interface VerifyAuthRequestCryptogramCommandInput
|
|
|
21
15
|
export interface VerifyAuthRequestCryptogramCommandOutput
|
|
22
16
|
extends VerifyAuthRequestCryptogramOutput,
|
|
23
17
|
__MetadataBearer {}
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
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<
|
|
18
|
+
declare const VerifyAuthRequestCryptogramCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: VerifyAuthRequestCryptogramCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
37
22
|
VerifyAuthRequestCryptogramCommandInput,
|
|
38
|
-
VerifyAuthRequestCryptogramCommandOutput
|
|
23
|
+
VerifyAuthRequestCryptogramCommandOutput,
|
|
24
|
+
PaymentCryptographyDataClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
39
27
|
>;
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
}
|
|
28
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
|
+
};
|
|
30
|
+
export declare class VerifyAuthRequestCryptogramCommand extends VerifyAuthRequestCryptogramCommand_base {}
|
|
@@ -1,11 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
4
|
-
Handler,
|
|
5
|
-
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
-
MetadataBearer as __MetadataBearer,
|
|
7
|
-
MiddlewareStack,
|
|
8
|
-
} from "@smithy/types";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
9
3
|
import {
|
|
10
4
|
VerifyCardValidationDataInput,
|
|
11
5
|
VerifyCardValidationDataOutput,
|
|
@@ -21,22 +15,16 @@ export interface VerifyCardValidationDataCommandInput
|
|
|
21
15
|
export interface VerifyCardValidationDataCommandOutput
|
|
22
16
|
extends VerifyCardValidationDataOutput,
|
|
23
17
|
__MetadataBearer {}
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
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<
|
|
18
|
+
declare const VerifyCardValidationDataCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: VerifyCardValidationDataCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
37
22
|
VerifyCardValidationDataCommandInput,
|
|
38
|
-
VerifyCardValidationDataCommandOutput
|
|
23
|
+
VerifyCardValidationDataCommandOutput,
|
|
24
|
+
PaymentCryptographyDataClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
39
27
|
>;
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
}
|
|
28
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
|
+
};
|
|
30
|
+
export declare class VerifyCardValidationDataCommand extends VerifyCardValidationDataCommand_base {}
|
|
@@ -1,11 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
4
|
-
Handler,
|
|
5
|
-
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
-
MetadataBearer as __MetadataBearer,
|
|
7
|
-
MiddlewareStack,
|
|
8
|
-
} from "@smithy/types";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
9
3
|
import { VerifyMacInput, VerifyMacOutput } from "../models/models_0";
|
|
10
4
|
import {
|
|
11
5
|
PaymentCryptographyDataClientResolvedConfig,
|
|
@@ -17,19 +11,16 @@ export interface VerifyMacCommandInput extends VerifyMacInput {}
|
|
|
17
11
|
export interface VerifyMacCommandOutput
|
|
18
12
|
extends VerifyMacOutput,
|
|
19
13
|
__MetadataBearer {}
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
private serialize;
|
|
34
|
-
private deserialize;
|
|
35
|
-
}
|
|
14
|
+
declare const VerifyMacCommand_base: {
|
|
15
|
+
new (
|
|
16
|
+
input: VerifyMacCommandInput
|
|
17
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
18
|
+
VerifyMacCommandInput,
|
|
19
|
+
VerifyMacCommandOutput,
|
|
20
|
+
PaymentCryptographyDataClientResolvedConfig,
|
|
21
|
+
ServiceInputTypes,
|
|
22
|
+
ServiceOutputTypes
|
|
23
|
+
>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
25
|
+
};
|
|
26
|
+
export declare class VerifyMacCommand extends VerifyMacCommand_base {}
|