Skip to content

Commit

Permalink
update distribution folder
Browse files Browse the repository at this point in the history
  • Loading branch information
KadoBOT committed Jun 9, 2020
1 parent be6fc4d commit e789cfe
Show file tree
Hide file tree
Showing 1,440 changed files with 27,552 additions and 12,153 deletions.
4 changes: 2 additions & 2 deletions dist/es5/main.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dist/es5/vendors~main.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/lib-esm/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@adyen/api-library",
"version": "4.0.2",
"version": "5.0.0",
"description": "The Adyen API Library for NodeJS enables you to work with Adyen APIs.",
"main": "dist/lib/src/index.js",
"types": "dist/lib/src/index.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion dist/lib-esm/src/__mocks__/base.d.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import Client from "../client";
import { TerminalApiRequest, TransactionIdentification } from "../typings/terminal";
import { TerminalApiRequest, TransactionIdentification } from "../typings/terminal/models";
export declare const createClient: (apiKey?: string | undefined) => Client;
export declare const createBasicAuthClient: () => Client;
export declare const createTerminalAPIPaymentRequest: () => TerminalApiRequest;
Expand Down
22 changes: 11 additions & 11 deletions dist/lib-esm/src/__mocks__/base.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/lib-esm/src/__mocks__/base.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

59 changes: 56 additions & 3 deletions dist/lib-esm/src/__mocks__/terminalApi/local.d.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,56 @@
export declare const localSecuredRes: string;
export declare const localEncRes: string;
export declare const wrongEncRes: string;
export declare const localSecuredRes: {
SaleToPOIResponse: {
MessageHeader: {
MessageCategory: string;
MessageClass: string;
MessageType: string;
POIID: string;
ProtocolVersion: string;
SaleID: string;
ServiceID: string;
};
PaymentResponse: {};
};
};
export declare const localEncRes: {
SaleToPOIResponse: {
MessageHeader: {
MessageCategory: string;
MessageClass: string;
MessageType: string;
POIID: string;
ProtocolVersion: string;
SaleID: string;
ServiceID: string;
};
NexoBlob: string;
SecurityTrailer: {
AdyenCryptoVersion: number;
Hmac: string;
KeyIdentifier: string;
KeyVersion: number;
Nonce: string;
};
};
};
export declare const wrongEncRes: {
SaleToPOIResponse: {
MessageHeader: {
MessageCategory: string;
MessageClass: string;
MessageType: string;
POIID: string;
ProtocolVersion: string;
SaleID: string;
ServiceID: string;
};
NexoBlob: string;
SecurityTrailer: {
AdyenCryptoVersion: number;
Hmac: string;
KeyIdentifier: string;
KeyVersion: number;
Nonce: string;
};
};
};
Loading

0 comments on commit e789cfe

Please sign in to comment.