@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.
Files changed (107) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +294 -0
  3. package/dist-cjs/PaymentCryptographyData.js +33 -0
  4. package/dist-cjs/PaymentCryptographyDataClient.js +41 -0
  5. package/dist-cjs/commands/DecryptDataCommand.js +47 -0
  6. package/dist-cjs/commands/EncryptDataCommand.js +47 -0
  7. package/dist-cjs/commands/GenerateCardValidationDataCommand.js +47 -0
  8. package/dist-cjs/commands/GenerateMacCommand.js +47 -0
  9. package/dist-cjs/commands/GeneratePinDataCommand.js +47 -0
  10. package/dist-cjs/commands/ReEncryptDataCommand.js +47 -0
  11. package/dist-cjs/commands/TranslatePinDataCommand.js +47 -0
  12. package/dist-cjs/commands/VerifyAuthRequestCryptogramCommand.js +47 -0
  13. package/dist-cjs/commands/VerifyCardValidationDataCommand.js +47 -0
  14. package/dist-cjs/commands/VerifyMacCommand.js +47 -0
  15. package/dist-cjs/commands/VerifyPinDataCommand.js +47 -0
  16. package/dist-cjs/commands/index.js +14 -0
  17. package/dist-cjs/endpoint/EndpointParameters.js +12 -0
  18. package/dist-cjs/endpoint/endpointResolver.js +12 -0
  19. package/dist-cjs/endpoint/ruleset.js +7 -0
  20. package/dist-cjs/index.js +10 -0
  21. package/dist-cjs/models/PaymentCryptographyDataServiceException.js +12 -0
  22. package/dist-cjs/models/index.js +4 -0
  23. package/dist-cjs/models/models_0.js +526 -0
  24. package/dist-cjs/protocols/Aws_restJson1.js +963 -0
  25. package/dist-cjs/runtimeConfig.browser.js +39 -0
  26. package/dist-cjs/runtimeConfig.js +48 -0
  27. package/dist-cjs/runtimeConfig.native.js +15 -0
  28. package/dist-cjs/runtimeConfig.shared.js +21 -0
  29. package/dist-es/PaymentCryptographyData.js +29 -0
  30. package/dist-es/PaymentCryptographyDataClient.js +37 -0
  31. package/dist-es/commands/DecryptDataCommand.js +43 -0
  32. package/dist-es/commands/EncryptDataCommand.js +43 -0
  33. package/dist-es/commands/GenerateCardValidationDataCommand.js +43 -0
  34. package/dist-es/commands/GenerateMacCommand.js +43 -0
  35. package/dist-es/commands/GeneratePinDataCommand.js +43 -0
  36. package/dist-es/commands/ReEncryptDataCommand.js +43 -0
  37. package/dist-es/commands/TranslatePinDataCommand.js +43 -0
  38. package/dist-es/commands/VerifyAuthRequestCryptogramCommand.js +43 -0
  39. package/dist-es/commands/VerifyCardValidationDataCommand.js +43 -0
  40. package/dist-es/commands/VerifyMacCommand.js +43 -0
  41. package/dist-es/commands/VerifyPinDataCommand.js +43 -0
  42. package/dist-es/commands/index.js +11 -0
  43. package/dist-es/endpoint/EndpointParameters.js +8 -0
  44. package/dist-es/endpoint/endpointResolver.js +8 -0
  45. package/dist-es/endpoint/ruleset.js +4 -0
  46. package/dist-es/index.js +5 -0
  47. package/dist-es/models/PaymentCryptographyDataServiceException.js +8 -0
  48. package/dist-es/models/index.js +1 -0
  49. package/dist-es/models/models_0.js +488 -0
  50. package/dist-es/protocols/Aws_restJson1.js +938 -0
  51. package/dist-es/runtimeConfig.browser.js +34 -0
  52. package/dist-es/runtimeConfig.js +43 -0
  53. package/dist-es/runtimeConfig.native.js +11 -0
  54. package/dist-es/runtimeConfig.shared.js +17 -0
  55. package/dist-types/PaymentCryptographyData.d.ts +88 -0
  56. package/dist-types/PaymentCryptographyDataClient.d.ts +174 -0
  57. package/dist-types/commands/DecryptDataCommand.d.ts +133 -0
  58. package/dist-types/commands/EncryptDataCommand.d.ts +138 -0
  59. package/dist-types/commands/GenerateCardValidationDataCommand.d.ts +144 -0
  60. package/dist-types/commands/GenerateMacCommand.d.ts +134 -0
  61. package/dist-types/commands/GeneratePinDataCommand.d.ts +155 -0
  62. package/dist-types/commands/ReEncryptDataCommand.d.ts +150 -0
  63. package/dist-types/commands/TranslatePinDataCommand.d.ts +147 -0
  64. package/dist-types/commands/VerifyAuthRequestCryptogramCommand.d.ts +150 -0
  65. package/dist-types/commands/VerifyCardValidationDataCommand.d.ts +156 -0
  66. package/dist-types/commands/VerifyMacCommand.d.ts +137 -0
  67. package/dist-types/commands/VerifyPinDataCommand.d.ts +134 -0
  68. package/dist-types/commands/index.d.ts +11 -0
  69. package/dist-types/endpoint/EndpointParameters.d.ts +20 -0
  70. package/dist-types/endpoint/endpointResolver.d.ts +5 -0
  71. package/dist-types/endpoint/ruleset.d.ts +2 -0
  72. package/dist-types/index.d.ts +11 -0
  73. package/dist-types/models/PaymentCryptographyDataServiceException.d.ts +13 -0
  74. package/dist-types/models/index.d.ts +1 -0
  75. package/dist-types/models/models_0.d.ts +2191 -0
  76. package/dist-types/protocols/Aws_restJson1.d.ts +101 -0
  77. package/dist-types/runtimeConfig.browser.d.ts +42 -0
  78. package/dist-types/runtimeConfig.d.ts +42 -0
  79. package/dist-types/runtimeConfig.native.d.ts +41 -0
  80. package/dist-types/runtimeConfig.shared.d.ts +18 -0
  81. package/dist-types/ts3.4/PaymentCryptographyData.d.ts +194 -0
  82. package/dist-types/ts3.4/PaymentCryptographyDataClient.d.ts +181 -0
  83. package/dist-types/ts3.4/commands/DecryptDataCommand.d.ts +35 -0
  84. package/dist-types/ts3.4/commands/EncryptDataCommand.d.ts +35 -0
  85. package/dist-types/ts3.4/commands/GenerateCardValidationDataCommand.d.ts +42 -0
  86. package/dist-types/ts3.4/commands/GenerateMacCommand.d.ts +35 -0
  87. package/dist-types/ts3.4/commands/GeneratePinDataCommand.d.ts +38 -0
  88. package/dist-types/ts3.4/commands/ReEncryptDataCommand.d.ts +35 -0
  89. package/dist-types/ts3.4/commands/TranslatePinDataCommand.d.ts +38 -0
  90. package/dist-types/ts3.4/commands/VerifyAuthRequestCryptogramCommand.d.ts +42 -0
  91. package/dist-types/ts3.4/commands/VerifyCardValidationDataCommand.d.ts +42 -0
  92. package/dist-types/ts3.4/commands/VerifyMacCommand.d.ts +35 -0
  93. package/dist-types/ts3.4/commands/VerifyPinDataCommand.d.ts +35 -0
  94. package/dist-types/ts3.4/commands/index.d.ts +11 -0
  95. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +32 -0
  96. package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
  97. package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
  98. package/dist-types/ts3.4/index.d.ts +5 -0
  99. package/dist-types/ts3.4/models/PaymentCryptographyDataServiceException.d.ts +8 -0
  100. package/dist-types/ts3.4/models/index.d.ts +1 -0
  101. package/dist-types/ts3.4/models/models_0.d.ts +1168 -0
  102. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +137 -0
  103. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +96 -0
  104. package/dist-types/ts3.4/runtimeConfig.d.ts +93 -0
  105. package/dist-types/ts3.4/runtimeConfig.native.d.ts +87 -0
  106. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +20 -0
  107. 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 { EndpointV2, Logger } from "@aws-sdk/types";
2
+ import { EndpointParameters } from "./EndpointParameters";
3
+ export declare const defaultEndpointResolver: (
4
+ endpointParams: EndpointParameters,
5
+ context?: {
6
+ logger?: Logger;
7
+ }
8
+ ) => EndpointV2;
@@ -0,0 +1,2 @@
1
+ import { RuleSetObject } from "@aws-sdk/util-endpoints";
2
+ export declare const ruleSet: RuleSetObject;
@@ -0,0 +1,5 @@
1
+ export * from "./PaymentCryptographyDataClient";
2
+ export * from "./PaymentCryptographyData";
3
+ export * from "./commands";
4
+ export * from "./models";
5
+ export { PaymentCryptographyDataServiceException } from "./models/PaymentCryptographyDataServiceException";
@@ -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";