@aws-sdk/client-payment-cryptography-data 3.952.0 → 3.954.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/README.md +8 -0
- package/dist-cjs/index.js +483 -269
- package/dist-cjs/runtimeConfig.shared.js +6 -1
- package/dist-es/PaymentCryptographyData.js +2 -0
- package/dist-es/commands/DecryptDataCommand.js +2 -2
- package/dist-es/commands/EncryptDataCommand.js +2 -2
- package/dist-es/commands/GenerateAs2805KekValidationCommand.js +16 -0
- package/dist-es/commands/GenerateCardValidationDataCommand.js +2 -2
- package/dist-es/commands/GenerateMacCommand.js +2 -2
- package/dist-es/commands/GenerateMacEmvPinChangeCommand.js +2 -2
- package/dist-es/commands/GeneratePinDataCommand.js +2 -2
- package/dist-es/commands/ReEncryptDataCommand.js +2 -2
- package/dist-es/commands/TranslateKeyMaterialCommand.js +2 -2
- package/dist-es/commands/TranslatePinDataCommand.js +2 -2
- package/dist-es/commands/VerifyAuthRequestCryptogramCommand.js +2 -2
- package/dist-es/commands/VerifyCardValidationDataCommand.js +2 -2
- package/dist-es/commands/VerifyMacCommand.js +2 -2
- package/dist-es/commands/VerifyPinDataCommand.js +2 -2
- package/dist-es/commands/index.js +1 -0
- package/dist-es/index.js +1 -0
- package/dist-es/models/enums.js +16 -11
- package/dist-es/runtimeConfig.shared.js +6 -1
- package/dist-es/schemas/schemas_0.js +332 -255
- package/dist-types/PaymentCryptographyData.d.ts +7 -0
- package/dist-types/PaymentCryptographyDataClient.d.ts +4 -12
- package/dist-types/commands/GenerateAs2805KekValidationCommand.d.ts +101 -0
- package/dist-types/commands/GenerateMacCommand.d.ts +2 -2
- package/dist-types/commands/TranslateKeyMaterialCommand.d.ts +1 -1
- package/dist-types/commands/TranslatePinDataCommand.d.ts +10 -0
- package/dist-types/commands/VerifyMacCommand.d.ts +1 -1
- package/dist-types/commands/index.d.ts +1 -0
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/enums.d.ts +32 -19
- package/dist-types/models/models_0.d.ts +172 -10
- package/dist-types/runtimeConfig.browser.d.ts +6 -2
- package/dist-types/runtimeConfig.d.ts +6 -2
- package/dist-types/runtimeConfig.native.d.ts +6 -2
- package/dist-types/runtimeConfig.shared.d.ts +6 -1
- package/dist-types/schemas/schemas_0.d.ts +118 -140
- package/dist-types/ts3.4/PaymentCryptographyData.d.ts +17 -0
- package/dist-types/ts3.4/PaymentCryptographyDataClient.d.ts +6 -4
- package/dist-types/ts3.4/commands/GenerateAs2805KekValidationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +1 -0
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/enums.d.ts +20 -13
- package/dist-types/ts3.4/models/models_0.d.ts +67 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +117 -141
- package/package.json +34 -34
|
@@ -17,8 +17,13 @@ export declare const getRuntimeConfig: (config: PaymentCryptographyDataClientCon
|
|
|
17
17
|
streamCollector: import("@smithy/types").StreamCollector;
|
|
18
18
|
useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
19
19
|
useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
20
|
-
apiVersion: string;
|
|
21
20
|
cacheMiddleware?: boolean | undefined;
|
|
21
|
+
protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core").AwsRestJsonProtocol;
|
|
22
|
+
protocolSettings: {
|
|
23
|
+
defaultNamespace?: string;
|
|
24
|
+
[setting: string]: unknown;
|
|
25
|
+
};
|
|
26
|
+
apiVersion: string;
|
|
22
27
|
urlParser: import("@smithy/types").UrlParser;
|
|
23
28
|
base64Decoder: import("@smithy/types").Decoder;
|
|
24
29
|
base64Encoder: (_input: Uint8Array | string) => string;
|
|
@@ -29,7 +34,6 @@ export declare const getRuntimeConfig: (config: PaymentCryptographyDataClientCon
|
|
|
29
34
|
profile?: string;
|
|
30
35
|
logger: import("@smithy/types").Logger;
|
|
31
36
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
32
|
-
protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
|
|
33
37
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
34
38
|
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
35
39
|
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
@@ -19,8 +19,13 @@ export declare const getRuntimeConfig: (config: PaymentCryptographyDataClientCon
|
|
|
19
19
|
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
20
20
|
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
21
21
|
userAgentAppId: string | import("@smithy/types").Provider<string | undefined>;
|
|
22
|
-
apiVersion: string;
|
|
23
22
|
cacheMiddleware?: boolean | undefined;
|
|
23
|
+
protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core").AwsRestJsonProtocol;
|
|
24
|
+
protocolSettings: {
|
|
25
|
+
defaultNamespace?: string;
|
|
26
|
+
[setting: string]: unknown;
|
|
27
|
+
};
|
|
28
|
+
apiVersion: string;
|
|
24
29
|
urlParser: import("@smithy/types").UrlParser;
|
|
25
30
|
base64Decoder: import("@smithy/types").Decoder;
|
|
26
31
|
base64Encoder: (_input: Uint8Array | string) => string;
|
|
@@ -31,7 +36,6 @@ export declare const getRuntimeConfig: (config: PaymentCryptographyDataClientCon
|
|
|
31
36
|
profile?: string;
|
|
32
37
|
logger: import("@smithy/types").Logger;
|
|
33
38
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
34
|
-
protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
|
|
35
39
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
36
40
|
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
37
41
|
endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
|
|
@@ -6,8 +6,13 @@ export declare const getRuntimeConfig: (config: PaymentCryptographyDataClientCon
|
|
|
6
6
|
runtime: string;
|
|
7
7
|
sha256: import("@smithy/types").HashConstructor;
|
|
8
8
|
requestHandler: import("@smithy/types").NodeHttpHandlerOptions | import("@smithy/types").FetchHttpHandlerOptions | Record<string, unknown> | import("@smithy/protocol-http").HttpHandler<any> | import("@smithy/fetch-http-handler").FetchHttpHandler;
|
|
9
|
-
apiVersion: string;
|
|
10
9
|
cacheMiddleware?: boolean;
|
|
10
|
+
protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core").AwsRestJsonProtocol;
|
|
11
|
+
protocolSettings: {
|
|
12
|
+
defaultNamespace?: string;
|
|
13
|
+
[setting: string]: unknown;
|
|
14
|
+
};
|
|
15
|
+
apiVersion: string;
|
|
11
16
|
urlParser: import("@smithy/types").UrlParser;
|
|
12
17
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
13
18
|
streamCollector: import("@smithy/types").StreamCollector;
|
|
@@ -27,7 +32,6 @@ export declare const getRuntimeConfig: (config: PaymentCryptographyDataClientCon
|
|
|
27
32
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
28
33
|
logger: import("@smithy/types").Logger;
|
|
29
34
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
30
|
-
protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
|
|
31
35
|
defaultsMode: import("@smithy/smithy-client").DefaultsMode | import("@smithy/types").Provider<import("@smithy/smithy-client").DefaultsMode>;
|
|
32
36
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
33
37
|
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols";
|
|
1
2
|
import type { PaymentCryptographyDataClientConfig } from "./PaymentCryptographyDataClient";
|
|
2
3
|
/**
|
|
3
4
|
* @internal
|
|
@@ -14,7 +15,11 @@ export declare const getRuntimeConfig: (config: PaymentCryptographyDataClientCon
|
|
|
14
15
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").PaymentCryptographyDataHttpAuthSchemeProvider;
|
|
15
16
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
16
17
|
logger: import("@smithy/types").Logger;
|
|
17
|
-
protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").
|
|
18
|
+
protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof AwsRestJsonProtocol;
|
|
19
|
+
protocolSettings: {
|
|
20
|
+
[setting: string]: unknown;
|
|
21
|
+
defaultNamespace?: string;
|
|
22
|
+
};
|
|
18
23
|
serviceId: string;
|
|
19
24
|
urlParser: import("@smithy/types").UrlParser;
|
|
20
25
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
@@ -1,140 +1,118 @@
|
|
|
1
|
-
import type { StaticErrorSchema,
|
|
2
|
-
export declare var
|
|
3
|
-
export declare var
|
|
4
|
-
export declare var
|
|
5
|
-
export declare var
|
|
6
|
-
export declare var
|
|
7
|
-
export declare var
|
|
8
|
-
export declare var
|
|
9
|
-
export declare var
|
|
10
|
-
export declare var
|
|
11
|
-
export declare var
|
|
12
|
-
export declare var
|
|
13
|
-
export declare var
|
|
14
|
-
export declare var
|
|
15
|
-
export declare var
|
|
16
|
-
export declare var
|
|
17
|
-
export declare var
|
|
18
|
-
export declare var
|
|
19
|
-
export declare var
|
|
20
|
-
export declare var
|
|
21
|
-
export declare var
|
|
22
|
-
export declare var
|
|
23
|
-
export declare var
|
|
24
|
-
export declare var
|
|
25
|
-
export declare var
|
|
26
|
-
export declare var
|
|
27
|
-
export declare var
|
|
28
|
-
export declare var
|
|
29
|
-
export declare var
|
|
30
|
-
export declare var
|
|
31
|
-
export declare var
|
|
32
|
-
export declare var
|
|
33
|
-
export declare var
|
|
34
|
-
export declare var
|
|
35
|
-
export declare var
|
|
36
|
-
export declare var
|
|
37
|
-
export declare var
|
|
38
|
-
export declare var
|
|
39
|
-
export declare var
|
|
40
|
-
export declare var
|
|
41
|
-
export declare var
|
|
42
|
-
export declare var
|
|
43
|
-
export declare var
|
|
44
|
-
export declare var
|
|
45
|
-
export declare var
|
|
46
|
-
export declare var
|
|
47
|
-
export declare var
|
|
48
|
-
export declare var
|
|
49
|
-
export declare var
|
|
50
|
-
export declare var
|
|
51
|
-
export declare var
|
|
52
|
-
export declare var
|
|
53
|
-
export declare var
|
|
54
|
-
export declare var
|
|
55
|
-
export declare var
|
|
56
|
-
export declare var
|
|
57
|
-
export declare var
|
|
58
|
-
export declare var
|
|
59
|
-
export declare var
|
|
60
|
-
export declare var
|
|
61
|
-
export declare var
|
|
62
|
-
export declare var
|
|
63
|
-
export declare var
|
|
64
|
-
export declare var
|
|
65
|
-
export declare var
|
|
66
|
-
export declare var
|
|
67
|
-
export declare var
|
|
68
|
-
export declare var
|
|
69
|
-
export declare var
|
|
70
|
-
export declare var
|
|
71
|
-
export declare var
|
|
72
|
-
export declare var
|
|
73
|
-
export declare var
|
|
74
|
-
export declare var
|
|
75
|
-
export declare var
|
|
76
|
-
export declare var
|
|
77
|
-
export declare var
|
|
78
|
-
export declare var
|
|
79
|
-
export declare var
|
|
80
|
-
export declare var
|
|
81
|
-
export declare var
|
|
82
|
-
export declare var
|
|
83
|
-
export declare var
|
|
84
|
-
export declare var
|
|
85
|
-
export declare var
|
|
86
|
-
export declare var
|
|
87
|
-
export declare var
|
|
88
|
-
export declare var
|
|
89
|
-
export declare var
|
|
90
|
-
export declare var
|
|
91
|
-
export declare var
|
|
92
|
-
export declare var
|
|
93
|
-
export declare var
|
|
94
|
-
export declare var
|
|
95
|
-
export declare var
|
|
96
|
-
export declare var
|
|
97
|
-
export declare var
|
|
98
|
-
export declare var
|
|
99
|
-
export declare var
|
|
100
|
-
export declare var
|
|
101
|
-
export declare var
|
|
102
|
-
export declare var
|
|
103
|
-
export declare var
|
|
104
|
-
export declare var
|
|
105
|
-
export declare var
|
|
106
|
-
export declare var
|
|
107
|
-
export declare var
|
|
108
|
-
export declare var
|
|
109
|
-
export declare var
|
|
110
|
-
export declare var
|
|
111
|
-
export declare var
|
|
112
|
-
export declare var
|
|
113
|
-
export declare var
|
|
114
|
-
export declare var
|
|
115
|
-
export declare var
|
|
116
|
-
export declare var
|
|
117
|
-
export declare var
|
|
118
|
-
export declare var
|
|
119
|
-
export declare var OutgoingKeyMaterial: StaticStructureSchema;
|
|
120
|
-
export declare var PinData: StaticStructureSchema;
|
|
121
|
-
export declare var PinGenerationAttributes: StaticStructureSchema;
|
|
122
|
-
export declare var PinVerificationAttributes: StaticStructureSchema;
|
|
123
|
-
export declare var ReEncryptionAttributes: StaticStructureSchema;
|
|
124
|
-
export declare var SessionKeyDerivation: StaticStructureSchema;
|
|
125
|
-
export declare var SessionKeyDerivationValue: StaticStructureSchema;
|
|
126
|
-
export declare var TranslationIsoFormats: StaticStructureSchema;
|
|
127
|
-
export declare var WrappedKeyMaterial: StaticStructureSchema;
|
|
128
|
-
export declare var DecryptData: StaticOperationSchema;
|
|
129
|
-
export declare var EncryptData: StaticOperationSchema;
|
|
130
|
-
export declare var GenerateCardValidationData: StaticOperationSchema;
|
|
131
|
-
export declare var GenerateMac: StaticOperationSchema;
|
|
132
|
-
export declare var GenerateMacEmvPinChange: StaticOperationSchema;
|
|
133
|
-
export declare var GeneratePinData: StaticOperationSchema;
|
|
134
|
-
export declare var ReEncryptData: StaticOperationSchema;
|
|
135
|
-
export declare var TranslateKeyMaterial: StaticOperationSchema;
|
|
136
|
-
export declare var TranslatePinData: StaticOperationSchema;
|
|
137
|
-
export declare var VerifyAuthRequestCryptogram: StaticOperationSchema;
|
|
138
|
-
export declare var VerifyCardValidationData: StaticOperationSchema;
|
|
139
|
-
export declare var VerifyMac: StaticOperationSchema;
|
|
140
|
-
export declare var VerifyPinData: StaticOperationSchema;
|
|
1
|
+
import type { StaticErrorSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types";
|
|
2
|
+
export declare var AccessDeniedException$: StaticErrorSchema;
|
|
3
|
+
export declare var AmexAttributes$: StaticStructureSchema;
|
|
4
|
+
export declare var AmexCardSecurityCodeVersion1$: StaticStructureSchema;
|
|
5
|
+
export declare var AmexCardSecurityCodeVersion2$: StaticStructureSchema;
|
|
6
|
+
export declare var As2805PekDerivationAttributes$: StaticStructureSchema;
|
|
7
|
+
export declare var AsymmetricEncryptionAttributes$: StaticStructureSchema;
|
|
8
|
+
export declare var CardHolderVerificationValue$: StaticStructureSchema;
|
|
9
|
+
export declare var CardVerificationValue1$: StaticStructureSchema;
|
|
10
|
+
export declare var CardVerificationValue2$: StaticStructureSchema;
|
|
11
|
+
export declare var CryptogramVerificationArpcMethod1$: StaticStructureSchema;
|
|
12
|
+
export declare var CryptogramVerificationArpcMethod2$: StaticStructureSchema;
|
|
13
|
+
export declare var CurrentPinAttributes$: StaticStructureSchema;
|
|
14
|
+
export declare var DecryptDataInput$: StaticStructureSchema;
|
|
15
|
+
export declare var DecryptDataOutput$: StaticStructureSchema;
|
|
16
|
+
export declare var DiscoverDynamicCardVerificationCode$: StaticStructureSchema;
|
|
17
|
+
export declare var DukptAttributes$: StaticStructureSchema;
|
|
18
|
+
export declare var DukptDerivationAttributes$: StaticStructureSchema;
|
|
19
|
+
export declare var DukptEncryptionAttributes$: StaticStructureSchema;
|
|
20
|
+
export declare var DynamicCardVerificationCode$: StaticStructureSchema;
|
|
21
|
+
export declare var DynamicCardVerificationValue$: StaticStructureSchema;
|
|
22
|
+
export declare var EcdhDerivationAttributes$: StaticStructureSchema;
|
|
23
|
+
export declare var Emv2000Attributes$: StaticStructureSchema;
|
|
24
|
+
export declare var EmvCommonAttributes$: StaticStructureSchema;
|
|
25
|
+
export declare var EmvEncryptionAttributes$: StaticStructureSchema;
|
|
26
|
+
export declare var EncryptDataInput$: StaticStructureSchema;
|
|
27
|
+
export declare var EncryptDataOutput$: StaticStructureSchema;
|
|
28
|
+
export declare var GenerateAs2805KekValidationInput$: StaticStructureSchema;
|
|
29
|
+
export declare var GenerateAs2805KekValidationOutput$: StaticStructureSchema;
|
|
30
|
+
export declare var GenerateCardValidationDataInput$: StaticStructureSchema;
|
|
31
|
+
export declare var GenerateCardValidationDataOutput$: StaticStructureSchema;
|
|
32
|
+
export declare var GenerateMacEmvPinChangeInput$: StaticStructureSchema;
|
|
33
|
+
export declare var GenerateMacEmvPinChangeOutput$: StaticStructureSchema;
|
|
34
|
+
export declare var GenerateMacInput$: StaticStructureSchema;
|
|
35
|
+
export declare var GenerateMacOutput$: StaticStructureSchema;
|
|
36
|
+
export declare var GeneratePinDataInput$: StaticStructureSchema;
|
|
37
|
+
export declare var GeneratePinDataOutput$: StaticStructureSchema;
|
|
38
|
+
export declare var Ibm3624NaturalPin$: StaticStructureSchema;
|
|
39
|
+
export declare var Ibm3624PinFromOffset$: StaticStructureSchema;
|
|
40
|
+
export declare var Ibm3624PinOffset$: StaticStructureSchema;
|
|
41
|
+
export declare var Ibm3624PinVerification$: StaticStructureSchema;
|
|
42
|
+
export declare var Ibm3624RandomPin$: StaticStructureSchema;
|
|
43
|
+
export declare var IncomingDiffieHellmanTr31KeyBlock$: StaticStructureSchema;
|
|
44
|
+
export declare var InternalServerException$: StaticErrorSchema;
|
|
45
|
+
export declare var KekValidationRequest$: StaticStructureSchema;
|
|
46
|
+
export declare var KekValidationResponse$: StaticStructureSchema;
|
|
47
|
+
export declare var MacAlgorithmDukpt$: StaticStructureSchema;
|
|
48
|
+
export declare var MacAlgorithmEmv$: StaticStructureSchema;
|
|
49
|
+
export declare var MasterCardAttributes$: StaticStructureSchema;
|
|
50
|
+
export declare var OutgoingTr31KeyBlock$: StaticStructureSchema;
|
|
51
|
+
export declare var ReEncryptDataInput$: StaticStructureSchema;
|
|
52
|
+
export declare var ReEncryptDataOutput$: StaticStructureSchema;
|
|
53
|
+
export declare var ResourceNotFoundException$: StaticErrorSchema;
|
|
54
|
+
export declare var SessionKeyAmex$: StaticStructureSchema;
|
|
55
|
+
export declare var SessionKeyEmv2000$: StaticStructureSchema;
|
|
56
|
+
export declare var SessionKeyEmvCommon$: StaticStructureSchema;
|
|
57
|
+
export declare var SessionKeyMastercard$: StaticStructureSchema;
|
|
58
|
+
export declare var SessionKeyVisa$: StaticStructureSchema;
|
|
59
|
+
export declare var SymmetricEncryptionAttributes$: StaticStructureSchema;
|
|
60
|
+
export declare var ThrottlingException$: StaticErrorSchema;
|
|
61
|
+
export declare var TranslateKeyMaterialInput$: StaticStructureSchema;
|
|
62
|
+
export declare var TranslateKeyMaterialOutput$: StaticStructureSchema;
|
|
63
|
+
export declare var TranslatePinDataInput$: StaticStructureSchema;
|
|
64
|
+
export declare var TranslatePinDataOutput$: StaticStructureSchema;
|
|
65
|
+
export declare var TranslationPinDataAs2805Format0$: StaticStructureSchema;
|
|
66
|
+
export declare var TranslationPinDataIsoFormat034$: StaticStructureSchema;
|
|
67
|
+
export declare var TranslationPinDataIsoFormat1$: StaticStructureSchema;
|
|
68
|
+
export declare var ValidationException$: StaticErrorSchema;
|
|
69
|
+
export declare var ValidationExceptionField$: StaticStructureSchema;
|
|
70
|
+
export declare var VerificationFailedException$: StaticErrorSchema;
|
|
71
|
+
export declare var VerifyAuthRequestCryptogramInput$: StaticStructureSchema;
|
|
72
|
+
export declare var VerifyAuthRequestCryptogramOutput$: StaticStructureSchema;
|
|
73
|
+
export declare var VerifyCardValidationDataInput$: StaticStructureSchema;
|
|
74
|
+
export declare var VerifyCardValidationDataOutput$: StaticStructureSchema;
|
|
75
|
+
export declare var VerifyMacInput$: StaticStructureSchema;
|
|
76
|
+
export declare var VerifyMacOutput$: StaticStructureSchema;
|
|
77
|
+
export declare var VerifyPinDataInput$: StaticStructureSchema;
|
|
78
|
+
export declare var VerifyPinDataOutput$: StaticStructureSchema;
|
|
79
|
+
export declare var VisaAmexDerivationOutputs$: StaticStructureSchema;
|
|
80
|
+
export declare var VisaAttributes$: StaticStructureSchema;
|
|
81
|
+
export declare var VisaPin$: StaticStructureSchema;
|
|
82
|
+
export declare var VisaPinVerification$: StaticStructureSchema;
|
|
83
|
+
export declare var VisaPinVerificationValue$: StaticStructureSchema;
|
|
84
|
+
export declare var WrappedKey$: StaticStructureSchema;
|
|
85
|
+
export declare var WrappedWorkingKey$: StaticStructureSchema;
|
|
86
|
+
export declare var PaymentCryptographyDataServiceException$: StaticErrorSchema;
|
|
87
|
+
export declare var As2805KekValidationType$: StaticStructureSchema;
|
|
88
|
+
export declare var CardGenerationAttributes$: StaticStructureSchema;
|
|
89
|
+
export declare var CardVerificationAttributes$: StaticStructureSchema;
|
|
90
|
+
export declare var CryptogramAuthResponse$: StaticStructureSchema;
|
|
91
|
+
export declare var DerivationMethodAttributes$: StaticStructureSchema;
|
|
92
|
+
export declare var DiffieHellmanDerivationData$: StaticStructureSchema;
|
|
93
|
+
export declare var EncryptionDecryptionAttributes$: StaticStructureSchema;
|
|
94
|
+
export declare var IncomingKeyMaterial$: StaticStructureSchema;
|
|
95
|
+
export declare var MacAttributes$: StaticStructureSchema;
|
|
96
|
+
export declare var OutgoingKeyMaterial$: StaticStructureSchema;
|
|
97
|
+
export declare var PinData$: StaticStructureSchema;
|
|
98
|
+
export declare var PinGenerationAttributes$: StaticStructureSchema;
|
|
99
|
+
export declare var PinVerificationAttributes$: StaticStructureSchema;
|
|
100
|
+
export declare var ReEncryptionAttributes$: StaticStructureSchema;
|
|
101
|
+
export declare var SessionKeyDerivation$: StaticStructureSchema;
|
|
102
|
+
export declare var SessionKeyDerivationValue$: StaticStructureSchema;
|
|
103
|
+
export declare var TranslationIsoFormats$: StaticStructureSchema;
|
|
104
|
+
export declare var WrappedKeyMaterial$: StaticStructureSchema;
|
|
105
|
+
export declare var DecryptData$: StaticOperationSchema;
|
|
106
|
+
export declare var EncryptData$: StaticOperationSchema;
|
|
107
|
+
export declare var GenerateAs2805KekValidation$: StaticOperationSchema;
|
|
108
|
+
export declare var GenerateCardValidationData$: StaticOperationSchema;
|
|
109
|
+
export declare var GenerateMac$: StaticOperationSchema;
|
|
110
|
+
export declare var GenerateMacEmvPinChange$: StaticOperationSchema;
|
|
111
|
+
export declare var GeneratePinData$: StaticOperationSchema;
|
|
112
|
+
export declare var ReEncryptData$: StaticOperationSchema;
|
|
113
|
+
export declare var TranslateKeyMaterial$: StaticOperationSchema;
|
|
114
|
+
export declare var TranslatePinData$: StaticOperationSchema;
|
|
115
|
+
export declare var VerifyAuthRequestCryptogram$: StaticOperationSchema;
|
|
116
|
+
export declare var VerifyCardValidationData$: StaticOperationSchema;
|
|
117
|
+
export declare var VerifyMac$: StaticOperationSchema;
|
|
118
|
+
export declare var VerifyPinData$: StaticOperationSchema;
|
|
@@ -7,6 +7,10 @@ import {
|
|
|
7
7
|
EncryptDataCommandInput,
|
|
8
8
|
EncryptDataCommandOutput,
|
|
9
9
|
} from "./commands/EncryptDataCommand";
|
|
10
|
+
import {
|
|
11
|
+
GenerateAs2805KekValidationCommandInput,
|
|
12
|
+
GenerateAs2805KekValidationCommandOutput,
|
|
13
|
+
} from "./commands/GenerateAs2805KekValidationCommand";
|
|
10
14
|
import {
|
|
11
15
|
GenerateCardValidationDataCommandInput,
|
|
12
16
|
GenerateCardValidationDataCommandOutput,
|
|
@@ -79,6 +83,19 @@ export interface PaymentCryptographyData {
|
|
|
79
83
|
options: __HttpHandlerOptions,
|
|
80
84
|
cb: (err: any, data?: EncryptDataCommandOutput) => void
|
|
81
85
|
): void;
|
|
86
|
+
generateAs2805KekValidation(
|
|
87
|
+
args: GenerateAs2805KekValidationCommandInput,
|
|
88
|
+
options?: __HttpHandlerOptions
|
|
89
|
+
): Promise<GenerateAs2805KekValidationCommandOutput>;
|
|
90
|
+
generateAs2805KekValidation(
|
|
91
|
+
args: GenerateAs2805KekValidationCommandInput,
|
|
92
|
+
cb: (err: any, data?: GenerateAs2805KekValidationCommandOutput) => void
|
|
93
|
+
): void;
|
|
94
|
+
generateAs2805KekValidation(
|
|
95
|
+
args: GenerateAs2805KekValidationCommandInput,
|
|
96
|
+
options: __HttpHandlerOptions,
|
|
97
|
+
cb: (err: any, data?: GenerateAs2805KekValidationCommandOutput) => void
|
|
98
|
+
): void;
|
|
82
99
|
generateCardValidationData(
|
|
83
100
|
args: GenerateCardValidationDataCommandInput,
|
|
84
101
|
options?: __HttpHandlerOptions
|
|
@@ -29,13 +29,10 @@ import {
|
|
|
29
29
|
BodyLengthCalculator as __BodyLengthCalculator,
|
|
30
30
|
CheckOptionalClientConfig as __CheckOptionalClientConfig,
|
|
31
31
|
ChecksumConstructor as __ChecksumConstructor,
|
|
32
|
-
ClientProtocol,
|
|
33
32
|
Decoder as __Decoder,
|
|
34
33
|
Encoder as __Encoder,
|
|
35
34
|
HashConstructor as __HashConstructor,
|
|
36
35
|
HttpHandlerOptions as __HttpHandlerOptions,
|
|
37
|
-
HttpRequest,
|
|
38
|
-
HttpResponse,
|
|
39
36
|
Logger as __Logger,
|
|
40
37
|
Provider as __Provider,
|
|
41
38
|
StreamCollector as __StreamCollector,
|
|
@@ -56,6 +53,10 @@ import {
|
|
|
56
53
|
EncryptDataCommandInput,
|
|
57
54
|
EncryptDataCommandOutput,
|
|
58
55
|
} from "./commands/EncryptDataCommand";
|
|
56
|
+
import {
|
|
57
|
+
GenerateAs2805KekValidationCommandInput,
|
|
58
|
+
GenerateAs2805KekValidationCommandOutput,
|
|
59
|
+
} from "./commands/GenerateAs2805KekValidationCommand";
|
|
59
60
|
import {
|
|
60
61
|
GenerateCardValidationDataCommandInput,
|
|
61
62
|
GenerateCardValidationDataCommandOutput,
|
|
@@ -110,6 +111,7 @@ export { __Client };
|
|
|
110
111
|
export type ServiceInputTypes =
|
|
111
112
|
| DecryptDataCommandInput
|
|
112
113
|
| EncryptDataCommandInput
|
|
114
|
+
| GenerateAs2805KekValidationCommandInput
|
|
113
115
|
| GenerateCardValidationDataCommandInput
|
|
114
116
|
| GenerateMacCommandInput
|
|
115
117
|
| GenerateMacEmvPinChangeCommandInput
|
|
@@ -124,6 +126,7 @@ export type ServiceInputTypes =
|
|
|
124
126
|
export type ServiceOutputTypes =
|
|
125
127
|
| DecryptDataCommandOutput
|
|
126
128
|
| EncryptDataCommandOutput
|
|
129
|
+
| GenerateAs2805KekValidationCommandOutput
|
|
127
130
|
| GenerateCardValidationDataCommandOutput
|
|
128
131
|
| GenerateMacCommandOutput
|
|
129
132
|
| GenerateMacEmvPinChangeCommandOutput
|
|
@@ -159,7 +162,6 @@ export interface ClientDefaults
|
|
|
159
162
|
retryMode?: string | __Provider<string>;
|
|
160
163
|
logger?: __Logger;
|
|
161
164
|
extensions?: RuntimeExtension[];
|
|
162
|
-
protocol?: ClientProtocol<HttpRequest, HttpResponse>;
|
|
163
165
|
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
164
166
|
}
|
|
165
167
|
export type PaymentCryptographyDataClientConfigType = Partial<
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
GenerateAs2805KekValidationInput,
|
|
5
|
+
GenerateAs2805KekValidationOutput,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
PaymentCryptographyDataClientResolvedConfig,
|
|
9
|
+
ServiceInputTypes,
|
|
10
|
+
ServiceOutputTypes,
|
|
11
|
+
} from "../PaymentCryptographyDataClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface GenerateAs2805KekValidationCommandInput
|
|
15
|
+
extends GenerateAs2805KekValidationInput {}
|
|
16
|
+
export interface GenerateAs2805KekValidationCommandOutput
|
|
17
|
+
extends GenerateAs2805KekValidationOutput,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const GenerateAs2805KekValidationCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: GenerateAs2805KekValidationCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
GenerateAs2805KekValidationCommandInput,
|
|
24
|
+
GenerateAs2805KekValidationCommandOutput,
|
|
25
|
+
PaymentCryptographyDataClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: GenerateAs2805KekValidationCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
GenerateAs2805KekValidationCommandInput,
|
|
33
|
+
GenerateAs2805KekValidationCommandOutput,
|
|
34
|
+
PaymentCryptographyDataClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class GenerateAs2805KekValidationCommand extends GenerateAs2805KekValidationCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: GenerateAs2805KekValidationInput;
|
|
44
|
+
output: GenerateAs2805KekValidationOutput;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: GenerateAs2805KekValidationCommandInput;
|
|
48
|
+
output: GenerateAs2805KekValidationCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
export * from "./DecryptDataCommand";
|
|
2
2
|
export * from "./EncryptDataCommand";
|
|
3
|
+
export * from "./GenerateAs2805KekValidationCommand";
|
|
3
4
|
export * from "./GenerateCardValidationDataCommand";
|
|
4
5
|
export * from "./GenerateMacCommand";
|
|
5
6
|
export * from "./GenerateMacEmvPinChangeCommand";
|
|
@@ -4,6 +4,7 @@ export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
|
|
|
4
4
|
export { RuntimeExtension } from "./runtimeExtensions";
|
|
5
5
|
export { PaymentCryptographyDataExtensionConfiguration } from "./extensionConfiguration";
|
|
6
6
|
export * from "./commands";
|
|
7
|
+
export * from "./schemas/schemas_0";
|
|
7
8
|
export * from "./models/enums";
|
|
8
9
|
export * from "./models/errors";
|
|
9
10
|
export * from "./models/models_0";
|
|
@@ -4,6 +4,19 @@ export declare const MajorKeyDerivationMode: {
|
|
|
4
4
|
};
|
|
5
5
|
export type MajorKeyDerivationMode =
|
|
6
6
|
(typeof MajorKeyDerivationMode)[keyof typeof MajorKeyDerivationMode];
|
|
7
|
+
export declare const SymmetricKeyAlgorithm: {
|
|
8
|
+
readonly AES_128: "AES_128";
|
|
9
|
+
readonly AES_192: "AES_192";
|
|
10
|
+
readonly AES_256: "AES_256";
|
|
11
|
+
readonly HMAC_SHA224: "HMAC_SHA224";
|
|
12
|
+
readonly HMAC_SHA256: "HMAC_SHA256";
|
|
13
|
+
readonly HMAC_SHA384: "HMAC_SHA384";
|
|
14
|
+
readonly HMAC_SHA512: "HMAC_SHA512";
|
|
15
|
+
readonly TDES_2KEY: "TDES_2KEY";
|
|
16
|
+
readonly TDES_3KEY: "TDES_3KEY";
|
|
17
|
+
};
|
|
18
|
+
export type SymmetricKeyAlgorithm =
|
|
19
|
+
(typeof SymmetricKeyAlgorithm)[keyof typeof SymmetricKeyAlgorithm];
|
|
7
20
|
export declare const PaddingType: {
|
|
8
21
|
readonly OAEP_SHA1: "OAEP_SHA1";
|
|
9
22
|
readonly OAEP_SHA256: "OAEP_SHA256";
|
|
@@ -65,19 +78,6 @@ export declare const KeyCheckValueAlgorithm: {
|
|
|
65
78
|
};
|
|
66
79
|
export type KeyCheckValueAlgorithm =
|
|
67
80
|
(typeof KeyCheckValueAlgorithm)[keyof typeof KeyCheckValueAlgorithm];
|
|
68
|
-
export declare const SymmetricKeyAlgorithm: {
|
|
69
|
-
readonly AES_128: "AES_128";
|
|
70
|
-
readonly AES_192: "AES_192";
|
|
71
|
-
readonly AES_256: "AES_256";
|
|
72
|
-
readonly HMAC_SHA224: "HMAC_SHA224";
|
|
73
|
-
readonly HMAC_SHA256: "HMAC_SHA256";
|
|
74
|
-
readonly HMAC_SHA384: "HMAC_SHA384";
|
|
75
|
-
readonly HMAC_SHA512: "HMAC_SHA512";
|
|
76
|
-
readonly TDES_2KEY: "TDES_2KEY";
|
|
77
|
-
readonly TDES_3KEY: "TDES_3KEY";
|
|
78
|
-
};
|
|
79
|
-
export type SymmetricKeyAlgorithm =
|
|
80
|
-
(typeof SymmetricKeyAlgorithm)[keyof typeof SymmetricKeyAlgorithm];
|
|
81
81
|
export declare const KeyDerivationFunction: {
|
|
82
82
|
readonly ANSI_X963: "ANSI_X963";
|
|
83
83
|
readonly NIST_SP800: "NIST_SP800";
|
|
@@ -103,7 +103,14 @@ export declare const PinBlockPaddingType: {
|
|
|
103
103
|
};
|
|
104
104
|
export type PinBlockPaddingType =
|
|
105
105
|
(typeof PinBlockPaddingType)[keyof typeof PinBlockPaddingType];
|
|
106
|
+
export declare const RandomKeySendVariantMask: {
|
|
107
|
+
readonly VARIANT_MASK_82: "VARIANT_MASK_82";
|
|
108
|
+
readonly VARIANT_MASK_82C0: "VARIANT_MASK_82C0";
|
|
109
|
+
};
|
|
110
|
+
export type RandomKeySendVariantMask =
|
|
111
|
+
(typeof RandomKeySendVariantMask)[keyof typeof RandomKeySendVariantMask];
|
|
106
112
|
export declare const MacAlgorithm: {
|
|
113
|
+
readonly AS2805_4_1: "AS2805_4_1";
|
|
107
114
|
readonly CMAC: "CMAC";
|
|
108
115
|
readonly HMAC: "HMAC";
|
|
109
116
|
readonly HMAC_SHA224: "HMAC_SHA224";
|