@fiatconnect/fiatconnect-types
Advanced tools
Comparing version 7.0.3 to 7.0.4
@@ -5,2 +5,10 @@ # Changelog | ||
### [7.0.3](https://github.com/fiatconnect/fiatconnect-types/compare/v7.0.2...v7.0.3) (2022-08-30) | ||
### Bug Fixes | ||
* **fees:** updated fee fields' location in quote request/response ([#65](https://github.com/fiatconnect/fiatconnect-types/issues/65)) ([51f5583](https://github.com/fiatconnect/fiatconnect-types/commit/51f55832d1d295f4500fae09e19c834ff7e46024)), closes [fiatconnect/specification#78](https://github.com/fiatconnect/specification/issues/78) | ||
* **lint:** add missing deps for linting ([#66](https://github.com/fiatconnect/fiatconnect-types/issues/66)) ([030f375](https://github.com/fiatconnect/fiatconnect-types/commit/030f37575fabc53196153a650d4f9aa61288d717)) | ||
### [7.0.2](https://github.com/fiatconnect/fiatconnect-types/compare/v7.0.1...v7.0.2) (2022-08-22) | ||
@@ -7,0 +15,0 @@ |
@@ -136,5 +136,5 @@ export declare type ClockResponse = { | ||
export declare enum WebhookEventType { | ||
KycStatusEvent = "KycStatusEvent", | ||
TransferInStatusEvent = "TransferInStatusEvent", | ||
TransferOutStatusEvent = "TransferOutStatusEvent" | ||
KycStatusEvent = "WebhookKycStatusEvent", | ||
TransferInStatusEvent = "WebhookTransferInStatusEvent", | ||
TransferOutStatusEvent = "WebhookTransferOutStatusEvent" | ||
} | ||
@@ -141,0 +141,0 @@ declare type WebhookEventPayload = { |
@@ -53,5 +53,5 @@ "use strict"; | ||
(function (WebhookEventType) { | ||
WebhookEventType["KycStatusEvent"] = "KycStatusEvent"; | ||
WebhookEventType["TransferInStatusEvent"] = "TransferInStatusEvent"; | ||
WebhookEventType["TransferOutStatusEvent"] = "TransferOutStatusEvent"; | ||
WebhookEventType["KycStatusEvent"] = "WebhookKycStatusEvent"; | ||
WebhookEventType["TransferInStatusEvent"] = "WebhookTransferInStatusEvent"; | ||
WebhookEventType["TransferOutStatusEvent"] = "WebhookTransferOutStatusEvent"; | ||
})(WebhookEventType = exports.WebhookEventType || (exports.WebhookEventType = {})); | ||
@@ -58,0 +58,0 @@ // Errors returned by FiatConnect endpoints |
{ | ||
"name": "@fiatconnect/fiatconnect-types", | ||
"version": "7.0.3", | ||
"version": "7.0.4", | ||
"description": "Types used in the FiatConnect specification. Offered as standalone module for payment providers and wallets to both use for FiatConnect APIs and integrations.", | ||
@@ -30,16 +30,16 @@ "scripts": { | ||
"devDependencies": { | ||
"@typescript-eslint/eslint-plugin": "^5.35.1", | ||
"@typescript-eslint/eslint-plugin": "^5.40.0", | ||
"@valora/eslint-config-typescript": "^1.0.1", | ||
"@valora/prettier-config": "^0.0.1", | ||
"conventional-changelog-conventionalcommits": "^5.0.0", | ||
"eslint": "^8.23.0", | ||
"eslint": "^8.25.0", | ||
"eslint-plugin-import": "^2.26.0", | ||
"eslint-plugin-jest": "^27.0.1", | ||
"eslint-plugin-react": "^7.31.1", | ||
"eslint-plugin-jest": "^27.1.1", | ||
"eslint-plugin-react": "^7.31.10", | ||
"eslint-plugin-react-hooks": "^4.6.0", | ||
"eslint-plugin-react-native": "^4.0.0", | ||
"jest": "^29.0.1", | ||
"jest": "^29.1.2", | ||
"prettier": "^2.7.1", | ||
"semantic-release": "^19.0.5", | ||
"typescript": "^4.8.2" | ||
"typescript": "^4.8.4" | ||
}, | ||
@@ -46,0 +46,0 @@ "prettier": "@valora/prettier-config", |
@@ -223,5 +223,5 @@ /* | ||
export enum WebhookEventType { | ||
KycStatusEvent = 'KycStatusEvent', | ||
TransferInStatusEvent = 'TransferInStatusEvent', | ||
TransferOutStatusEvent = 'TransferOutStatusEvent', | ||
KycStatusEvent = 'WebhookKycStatusEvent', | ||
TransferInStatusEvent = 'WebhookTransferInStatusEvent', | ||
TransferOutStatusEvent = 'WebhookTransferOutStatusEvent', | ||
} | ||
@@ -228,0 +228,0 @@ |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
44780