@aws-sdk/client-payment-cryptography-data 3.478.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 +9 -9
|
@@ -5,48 +5,25 @@ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
|
5
5
|
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
6
|
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
7
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const
|
|
8
|
+
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
9
|
const models_0_1 = require("../models/models_0");
|
|
10
10
|
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
11
|
-
class DecryptDataCommand extends smithy_client_1.Command
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
const { logger } = configuration;
|
|
29
|
-
const clientName = "PaymentCryptographyDataClient";
|
|
30
|
-
const commandName = "DecryptDataCommand";
|
|
31
|
-
const handlerExecutionContext = {
|
|
32
|
-
logger,
|
|
33
|
-
clientName,
|
|
34
|
-
commandName,
|
|
35
|
-
inputFilterSensitiveLog: models_0_1.DecryptDataInputFilterSensitiveLog,
|
|
36
|
-
outputFilterSensitiveLog: models_0_1.DecryptDataOutputFilterSensitiveLog,
|
|
37
|
-
[types_1.SMITHY_CONTEXT_KEY]: {
|
|
38
|
-
service: "PaymentCryptographyDataPlane",
|
|
39
|
-
operation: "DecryptData",
|
|
40
|
-
},
|
|
41
|
-
};
|
|
42
|
-
const { requestHandler } = configuration;
|
|
43
|
-
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
44
|
-
}
|
|
45
|
-
serialize(input, context) {
|
|
46
|
-
return (0, Aws_restJson1_1.se_DecryptDataCommand)(input, context);
|
|
47
|
-
}
|
|
48
|
-
deserialize(output, context) {
|
|
49
|
-
return (0, Aws_restJson1_1.de_DecryptDataCommand)(output, context);
|
|
50
|
-
}
|
|
11
|
+
class DecryptDataCommand extends smithy_client_1.Command
|
|
12
|
+
.classBuilder()
|
|
13
|
+
.ep({
|
|
14
|
+
...EndpointParameters_1.commonParams,
|
|
15
|
+
})
|
|
16
|
+
.m(function (Command, cs, config, o) {
|
|
17
|
+
return [
|
|
18
|
+
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
19
|
+
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
20
|
+
];
|
|
21
|
+
})
|
|
22
|
+
.s("PaymentCryptographyDataPlane", "DecryptData", {})
|
|
23
|
+
.n("PaymentCryptographyDataClient", "DecryptDataCommand")
|
|
24
|
+
.f(models_0_1.DecryptDataInputFilterSensitiveLog, models_0_1.DecryptDataOutputFilterSensitiveLog)
|
|
25
|
+
.ser(Aws_restJson1_1.se_DecryptDataCommand)
|
|
26
|
+
.de(Aws_restJson1_1.de_DecryptDataCommand)
|
|
27
|
+
.build() {
|
|
51
28
|
}
|
|
52
29
|
exports.DecryptDataCommand = DecryptDataCommand;
|
|
@@ -5,48 +5,25 @@ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
|
5
5
|
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
6
|
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
7
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const
|
|
8
|
+
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
9
|
const models_0_1 = require("../models/models_0");
|
|
10
10
|
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
11
|
-
class EncryptDataCommand extends smithy_client_1.Command
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
const { logger } = configuration;
|
|
29
|
-
const clientName = "PaymentCryptographyDataClient";
|
|
30
|
-
const commandName = "EncryptDataCommand";
|
|
31
|
-
const handlerExecutionContext = {
|
|
32
|
-
logger,
|
|
33
|
-
clientName,
|
|
34
|
-
commandName,
|
|
35
|
-
inputFilterSensitiveLog: models_0_1.EncryptDataInputFilterSensitiveLog,
|
|
36
|
-
outputFilterSensitiveLog: models_0_1.EncryptDataOutputFilterSensitiveLog,
|
|
37
|
-
[types_1.SMITHY_CONTEXT_KEY]: {
|
|
38
|
-
service: "PaymentCryptographyDataPlane",
|
|
39
|
-
operation: "EncryptData",
|
|
40
|
-
},
|
|
41
|
-
};
|
|
42
|
-
const { requestHandler } = configuration;
|
|
43
|
-
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
44
|
-
}
|
|
45
|
-
serialize(input, context) {
|
|
46
|
-
return (0, Aws_restJson1_1.se_EncryptDataCommand)(input, context);
|
|
47
|
-
}
|
|
48
|
-
deserialize(output, context) {
|
|
49
|
-
return (0, Aws_restJson1_1.de_EncryptDataCommand)(output, context);
|
|
50
|
-
}
|
|
11
|
+
class EncryptDataCommand extends smithy_client_1.Command
|
|
12
|
+
.classBuilder()
|
|
13
|
+
.ep({
|
|
14
|
+
...EndpointParameters_1.commonParams,
|
|
15
|
+
})
|
|
16
|
+
.m(function (Command, cs, config, o) {
|
|
17
|
+
return [
|
|
18
|
+
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
19
|
+
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
20
|
+
];
|
|
21
|
+
})
|
|
22
|
+
.s("PaymentCryptographyDataPlane", "EncryptData", {})
|
|
23
|
+
.n("PaymentCryptographyDataClient", "EncryptDataCommand")
|
|
24
|
+
.f(models_0_1.EncryptDataInputFilterSensitiveLog, models_0_1.EncryptDataOutputFilterSensitiveLog)
|
|
25
|
+
.ser(Aws_restJson1_1.se_EncryptDataCommand)
|
|
26
|
+
.de(Aws_restJson1_1.de_EncryptDataCommand)
|
|
27
|
+
.build() {
|
|
51
28
|
}
|
|
52
29
|
exports.EncryptDataCommand = EncryptDataCommand;
|
|
@@ -5,48 +5,25 @@ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
|
5
5
|
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
6
|
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
7
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const
|
|
8
|
+
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
9
|
const models_0_1 = require("../models/models_0");
|
|
10
10
|
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
11
|
-
class GenerateCardValidationDataCommand extends smithy_client_1.Command
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
const { logger } = configuration;
|
|
29
|
-
const clientName = "PaymentCryptographyDataClient";
|
|
30
|
-
const commandName = "GenerateCardValidationDataCommand";
|
|
31
|
-
const handlerExecutionContext = {
|
|
32
|
-
logger,
|
|
33
|
-
clientName,
|
|
34
|
-
commandName,
|
|
35
|
-
inputFilterSensitiveLog: models_0_1.GenerateCardValidationDataInputFilterSensitiveLog,
|
|
36
|
-
outputFilterSensitiveLog: (_) => _,
|
|
37
|
-
[types_1.SMITHY_CONTEXT_KEY]: {
|
|
38
|
-
service: "PaymentCryptographyDataPlane",
|
|
39
|
-
operation: "GenerateCardValidationData",
|
|
40
|
-
},
|
|
41
|
-
};
|
|
42
|
-
const { requestHandler } = configuration;
|
|
43
|
-
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
44
|
-
}
|
|
45
|
-
serialize(input, context) {
|
|
46
|
-
return (0, Aws_restJson1_1.se_GenerateCardValidationDataCommand)(input, context);
|
|
47
|
-
}
|
|
48
|
-
deserialize(output, context) {
|
|
49
|
-
return (0, Aws_restJson1_1.de_GenerateCardValidationDataCommand)(output, context);
|
|
50
|
-
}
|
|
11
|
+
class GenerateCardValidationDataCommand extends smithy_client_1.Command
|
|
12
|
+
.classBuilder()
|
|
13
|
+
.ep({
|
|
14
|
+
...EndpointParameters_1.commonParams,
|
|
15
|
+
})
|
|
16
|
+
.m(function (Command, cs, config, o) {
|
|
17
|
+
return [
|
|
18
|
+
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
19
|
+
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
20
|
+
];
|
|
21
|
+
})
|
|
22
|
+
.s("PaymentCryptographyDataPlane", "GenerateCardValidationData", {})
|
|
23
|
+
.n("PaymentCryptographyDataClient", "GenerateCardValidationDataCommand")
|
|
24
|
+
.f(models_0_1.GenerateCardValidationDataInputFilterSensitiveLog, void 0)
|
|
25
|
+
.ser(Aws_restJson1_1.se_GenerateCardValidationDataCommand)
|
|
26
|
+
.de(Aws_restJson1_1.de_GenerateCardValidationDataCommand)
|
|
27
|
+
.build() {
|
|
51
28
|
}
|
|
52
29
|
exports.GenerateCardValidationDataCommand = GenerateCardValidationDataCommand;
|
|
@@ -5,48 +5,25 @@ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
|
5
5
|
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
6
|
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
7
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const
|
|
8
|
+
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
9
|
const models_0_1 = require("../models/models_0");
|
|
10
10
|
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
11
|
-
class GenerateMacCommand extends smithy_client_1.Command
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
const { logger } = configuration;
|
|
29
|
-
const clientName = "PaymentCryptographyDataClient";
|
|
30
|
-
const commandName = "GenerateMacCommand";
|
|
31
|
-
const handlerExecutionContext = {
|
|
32
|
-
logger,
|
|
33
|
-
clientName,
|
|
34
|
-
commandName,
|
|
35
|
-
inputFilterSensitiveLog: models_0_1.GenerateMacInputFilterSensitiveLog,
|
|
36
|
-
outputFilterSensitiveLog: (_) => _,
|
|
37
|
-
[types_1.SMITHY_CONTEXT_KEY]: {
|
|
38
|
-
service: "PaymentCryptographyDataPlane",
|
|
39
|
-
operation: "GenerateMac",
|
|
40
|
-
},
|
|
41
|
-
};
|
|
42
|
-
const { requestHandler } = configuration;
|
|
43
|
-
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
44
|
-
}
|
|
45
|
-
serialize(input, context) {
|
|
46
|
-
return (0, Aws_restJson1_1.se_GenerateMacCommand)(input, context);
|
|
47
|
-
}
|
|
48
|
-
deserialize(output, context) {
|
|
49
|
-
return (0, Aws_restJson1_1.de_GenerateMacCommand)(output, context);
|
|
50
|
-
}
|
|
11
|
+
class GenerateMacCommand extends smithy_client_1.Command
|
|
12
|
+
.classBuilder()
|
|
13
|
+
.ep({
|
|
14
|
+
...EndpointParameters_1.commonParams,
|
|
15
|
+
})
|
|
16
|
+
.m(function (Command, cs, config, o) {
|
|
17
|
+
return [
|
|
18
|
+
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
19
|
+
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
20
|
+
];
|
|
21
|
+
})
|
|
22
|
+
.s("PaymentCryptographyDataPlane", "GenerateMac", {})
|
|
23
|
+
.n("PaymentCryptographyDataClient", "GenerateMacCommand")
|
|
24
|
+
.f(models_0_1.GenerateMacInputFilterSensitiveLog, void 0)
|
|
25
|
+
.ser(Aws_restJson1_1.se_GenerateMacCommand)
|
|
26
|
+
.de(Aws_restJson1_1.de_GenerateMacCommand)
|
|
27
|
+
.build() {
|
|
51
28
|
}
|
|
52
29
|
exports.GenerateMacCommand = GenerateMacCommand;
|
|
@@ -5,48 +5,25 @@ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
|
5
5
|
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
6
|
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
7
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const
|
|
8
|
+
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
9
|
const models_0_1 = require("../models/models_0");
|
|
10
10
|
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
11
|
-
class GeneratePinDataCommand extends smithy_client_1.Command
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
const { logger } = configuration;
|
|
29
|
-
const clientName = "PaymentCryptographyDataClient";
|
|
30
|
-
const commandName = "GeneratePinDataCommand";
|
|
31
|
-
const handlerExecutionContext = {
|
|
32
|
-
logger,
|
|
33
|
-
clientName,
|
|
34
|
-
commandName,
|
|
35
|
-
inputFilterSensitiveLog: models_0_1.GeneratePinDataInputFilterSensitiveLog,
|
|
36
|
-
outputFilterSensitiveLog: (_) => _,
|
|
37
|
-
[types_1.SMITHY_CONTEXT_KEY]: {
|
|
38
|
-
service: "PaymentCryptographyDataPlane",
|
|
39
|
-
operation: "GeneratePinData",
|
|
40
|
-
},
|
|
41
|
-
};
|
|
42
|
-
const { requestHandler } = configuration;
|
|
43
|
-
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
44
|
-
}
|
|
45
|
-
serialize(input, context) {
|
|
46
|
-
return (0, Aws_restJson1_1.se_GeneratePinDataCommand)(input, context);
|
|
47
|
-
}
|
|
48
|
-
deserialize(output, context) {
|
|
49
|
-
return (0, Aws_restJson1_1.de_GeneratePinDataCommand)(output, context);
|
|
50
|
-
}
|
|
11
|
+
class GeneratePinDataCommand extends smithy_client_1.Command
|
|
12
|
+
.classBuilder()
|
|
13
|
+
.ep({
|
|
14
|
+
...EndpointParameters_1.commonParams,
|
|
15
|
+
})
|
|
16
|
+
.m(function (Command, cs, config, o) {
|
|
17
|
+
return [
|
|
18
|
+
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
19
|
+
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
20
|
+
];
|
|
21
|
+
})
|
|
22
|
+
.s("PaymentCryptographyDataPlane", "GeneratePinData", {})
|
|
23
|
+
.n("PaymentCryptographyDataClient", "GeneratePinDataCommand")
|
|
24
|
+
.f(models_0_1.GeneratePinDataInputFilterSensitiveLog, void 0)
|
|
25
|
+
.ser(Aws_restJson1_1.se_GeneratePinDataCommand)
|
|
26
|
+
.de(Aws_restJson1_1.de_GeneratePinDataCommand)
|
|
27
|
+
.build() {
|
|
51
28
|
}
|
|
52
29
|
exports.GeneratePinDataCommand = GeneratePinDataCommand;
|
|
@@ -5,48 +5,25 @@ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
|
5
5
|
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
6
|
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
7
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const
|
|
8
|
+
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
9
|
const models_0_1 = require("../models/models_0");
|
|
10
10
|
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
11
|
-
class ReEncryptDataCommand extends smithy_client_1.Command
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
const { logger } = configuration;
|
|
29
|
-
const clientName = "PaymentCryptographyDataClient";
|
|
30
|
-
const commandName = "ReEncryptDataCommand";
|
|
31
|
-
const handlerExecutionContext = {
|
|
32
|
-
logger,
|
|
33
|
-
clientName,
|
|
34
|
-
commandName,
|
|
35
|
-
inputFilterSensitiveLog: models_0_1.ReEncryptDataInputFilterSensitiveLog,
|
|
36
|
-
outputFilterSensitiveLog: models_0_1.ReEncryptDataOutputFilterSensitiveLog,
|
|
37
|
-
[types_1.SMITHY_CONTEXT_KEY]: {
|
|
38
|
-
service: "PaymentCryptographyDataPlane",
|
|
39
|
-
operation: "ReEncryptData",
|
|
40
|
-
},
|
|
41
|
-
};
|
|
42
|
-
const { requestHandler } = configuration;
|
|
43
|
-
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
44
|
-
}
|
|
45
|
-
serialize(input, context) {
|
|
46
|
-
return (0, Aws_restJson1_1.se_ReEncryptDataCommand)(input, context);
|
|
47
|
-
}
|
|
48
|
-
deserialize(output, context) {
|
|
49
|
-
return (0, Aws_restJson1_1.de_ReEncryptDataCommand)(output, context);
|
|
50
|
-
}
|
|
11
|
+
class ReEncryptDataCommand extends smithy_client_1.Command
|
|
12
|
+
.classBuilder()
|
|
13
|
+
.ep({
|
|
14
|
+
...EndpointParameters_1.commonParams,
|
|
15
|
+
})
|
|
16
|
+
.m(function (Command, cs, config, o) {
|
|
17
|
+
return [
|
|
18
|
+
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
19
|
+
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
20
|
+
];
|
|
21
|
+
})
|
|
22
|
+
.s("PaymentCryptographyDataPlane", "ReEncryptData", {})
|
|
23
|
+
.n("PaymentCryptographyDataClient", "ReEncryptDataCommand")
|
|
24
|
+
.f(models_0_1.ReEncryptDataInputFilterSensitiveLog, models_0_1.ReEncryptDataOutputFilterSensitiveLog)
|
|
25
|
+
.ser(Aws_restJson1_1.se_ReEncryptDataCommand)
|
|
26
|
+
.de(Aws_restJson1_1.de_ReEncryptDataCommand)
|
|
27
|
+
.build() {
|
|
51
28
|
}
|
|
52
29
|
exports.ReEncryptDataCommand = ReEncryptDataCommand;
|
|
@@ -5,48 +5,25 @@ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
|
5
5
|
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
6
|
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
7
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const
|
|
8
|
+
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
9
|
const models_0_1 = require("../models/models_0");
|
|
10
10
|
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
11
|
-
class TranslatePinDataCommand extends smithy_client_1.Command
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
const { logger } = configuration;
|
|
29
|
-
const clientName = "PaymentCryptographyDataClient";
|
|
30
|
-
const commandName = "TranslatePinDataCommand";
|
|
31
|
-
const handlerExecutionContext = {
|
|
32
|
-
logger,
|
|
33
|
-
clientName,
|
|
34
|
-
commandName,
|
|
35
|
-
inputFilterSensitiveLog: models_0_1.TranslatePinDataInputFilterSensitiveLog,
|
|
36
|
-
outputFilterSensitiveLog: (_) => _,
|
|
37
|
-
[types_1.SMITHY_CONTEXT_KEY]: {
|
|
38
|
-
service: "PaymentCryptographyDataPlane",
|
|
39
|
-
operation: "TranslatePinData",
|
|
40
|
-
},
|
|
41
|
-
};
|
|
42
|
-
const { requestHandler } = configuration;
|
|
43
|
-
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
44
|
-
}
|
|
45
|
-
serialize(input, context) {
|
|
46
|
-
return (0, Aws_restJson1_1.se_TranslatePinDataCommand)(input, context);
|
|
47
|
-
}
|
|
48
|
-
deserialize(output, context) {
|
|
49
|
-
return (0, Aws_restJson1_1.de_TranslatePinDataCommand)(output, context);
|
|
50
|
-
}
|
|
11
|
+
class TranslatePinDataCommand extends smithy_client_1.Command
|
|
12
|
+
.classBuilder()
|
|
13
|
+
.ep({
|
|
14
|
+
...EndpointParameters_1.commonParams,
|
|
15
|
+
})
|
|
16
|
+
.m(function (Command, cs, config, o) {
|
|
17
|
+
return [
|
|
18
|
+
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
19
|
+
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
20
|
+
];
|
|
21
|
+
})
|
|
22
|
+
.s("PaymentCryptographyDataPlane", "TranslatePinData", {})
|
|
23
|
+
.n("PaymentCryptographyDataClient", "TranslatePinDataCommand")
|
|
24
|
+
.f(models_0_1.TranslatePinDataInputFilterSensitiveLog, void 0)
|
|
25
|
+
.ser(Aws_restJson1_1.se_TranslatePinDataCommand)
|
|
26
|
+
.de(Aws_restJson1_1.de_TranslatePinDataCommand)
|
|
27
|
+
.build() {
|
|
51
28
|
}
|
|
52
29
|
exports.TranslatePinDataCommand = TranslatePinDataCommand;
|
|
@@ -5,48 +5,25 @@ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
|
5
5
|
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
6
|
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
7
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const
|
|
8
|
+
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
9
|
const models_0_1 = require("../models/models_0");
|
|
10
10
|
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
11
|
-
class VerifyAuthRequestCryptogramCommand extends smithy_client_1.Command
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
const { logger } = configuration;
|
|
29
|
-
const clientName = "PaymentCryptographyDataClient";
|
|
30
|
-
const commandName = "VerifyAuthRequestCryptogramCommand";
|
|
31
|
-
const handlerExecutionContext = {
|
|
32
|
-
logger,
|
|
33
|
-
clientName,
|
|
34
|
-
commandName,
|
|
35
|
-
inputFilterSensitiveLog: models_0_1.VerifyAuthRequestCryptogramInputFilterSensitiveLog,
|
|
36
|
-
outputFilterSensitiveLog: (_) => _,
|
|
37
|
-
[types_1.SMITHY_CONTEXT_KEY]: {
|
|
38
|
-
service: "PaymentCryptographyDataPlane",
|
|
39
|
-
operation: "VerifyAuthRequestCryptogram",
|
|
40
|
-
},
|
|
41
|
-
};
|
|
42
|
-
const { requestHandler } = configuration;
|
|
43
|
-
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
44
|
-
}
|
|
45
|
-
serialize(input, context) {
|
|
46
|
-
return (0, Aws_restJson1_1.se_VerifyAuthRequestCryptogramCommand)(input, context);
|
|
47
|
-
}
|
|
48
|
-
deserialize(output, context) {
|
|
49
|
-
return (0, Aws_restJson1_1.de_VerifyAuthRequestCryptogramCommand)(output, context);
|
|
50
|
-
}
|
|
11
|
+
class VerifyAuthRequestCryptogramCommand extends smithy_client_1.Command
|
|
12
|
+
.classBuilder()
|
|
13
|
+
.ep({
|
|
14
|
+
...EndpointParameters_1.commonParams,
|
|
15
|
+
})
|
|
16
|
+
.m(function (Command, cs, config, o) {
|
|
17
|
+
return [
|
|
18
|
+
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
19
|
+
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
20
|
+
];
|
|
21
|
+
})
|
|
22
|
+
.s("PaymentCryptographyDataPlane", "VerifyAuthRequestCryptogram", {})
|
|
23
|
+
.n("PaymentCryptographyDataClient", "VerifyAuthRequestCryptogramCommand")
|
|
24
|
+
.f(models_0_1.VerifyAuthRequestCryptogramInputFilterSensitiveLog, void 0)
|
|
25
|
+
.ser(Aws_restJson1_1.se_VerifyAuthRequestCryptogramCommand)
|
|
26
|
+
.de(Aws_restJson1_1.de_VerifyAuthRequestCryptogramCommand)
|
|
27
|
+
.build() {
|
|
51
28
|
}
|
|
52
29
|
exports.VerifyAuthRequestCryptogramCommand = VerifyAuthRequestCryptogramCommand;
|
|
@@ -5,48 +5,25 @@ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
|
5
5
|
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
6
|
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
7
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const
|
|
8
|
+
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
9
|
const models_0_1 = require("../models/models_0");
|
|
10
10
|
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
11
|
-
class VerifyCardValidationDataCommand extends smithy_client_1.Command
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
const { logger } = configuration;
|
|
29
|
-
const clientName = "PaymentCryptographyDataClient";
|
|
30
|
-
const commandName = "VerifyCardValidationDataCommand";
|
|
31
|
-
const handlerExecutionContext = {
|
|
32
|
-
logger,
|
|
33
|
-
clientName,
|
|
34
|
-
commandName,
|
|
35
|
-
inputFilterSensitiveLog: models_0_1.VerifyCardValidationDataInputFilterSensitiveLog,
|
|
36
|
-
outputFilterSensitiveLog: (_) => _,
|
|
37
|
-
[types_1.SMITHY_CONTEXT_KEY]: {
|
|
38
|
-
service: "PaymentCryptographyDataPlane",
|
|
39
|
-
operation: "VerifyCardValidationData",
|
|
40
|
-
},
|
|
41
|
-
};
|
|
42
|
-
const { requestHandler } = configuration;
|
|
43
|
-
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
44
|
-
}
|
|
45
|
-
serialize(input, context) {
|
|
46
|
-
return (0, Aws_restJson1_1.se_VerifyCardValidationDataCommand)(input, context);
|
|
47
|
-
}
|
|
48
|
-
deserialize(output, context) {
|
|
49
|
-
return (0, Aws_restJson1_1.de_VerifyCardValidationDataCommand)(output, context);
|
|
50
|
-
}
|
|
11
|
+
class VerifyCardValidationDataCommand extends smithy_client_1.Command
|
|
12
|
+
.classBuilder()
|
|
13
|
+
.ep({
|
|
14
|
+
...EndpointParameters_1.commonParams,
|
|
15
|
+
})
|
|
16
|
+
.m(function (Command, cs, config, o) {
|
|
17
|
+
return [
|
|
18
|
+
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
19
|
+
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
20
|
+
];
|
|
21
|
+
})
|
|
22
|
+
.s("PaymentCryptographyDataPlane", "VerifyCardValidationData", {})
|
|
23
|
+
.n("PaymentCryptographyDataClient", "VerifyCardValidationDataCommand")
|
|
24
|
+
.f(models_0_1.VerifyCardValidationDataInputFilterSensitiveLog, void 0)
|
|
25
|
+
.ser(Aws_restJson1_1.se_VerifyCardValidationDataCommand)
|
|
26
|
+
.de(Aws_restJson1_1.de_VerifyCardValidationDataCommand)
|
|
27
|
+
.build() {
|
|
51
28
|
}
|
|
52
29
|
exports.VerifyCardValidationDataCommand = VerifyCardValidationDataCommand;
|