Skip to content

Commit

Permalink
add KMS_COMPLETED_TX subscription type (tatumio#155)
Browse files Browse the repository at this point in the history
  • Loading branch information
jirijanecek777 committed Sep 18, 2021
1 parent 5f8180e commit ea1aecb
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "@tatumio/tatum",
"version": "1.25.8",
"version": "1.25.9",
"description": "Tatum API client allows browsers and Node.js clients to interact with Tatum API.",
"main": "dist/src/index.js",
"repository": "https://github.com/tatumio/tatum-js",
Expand Down
1 change: 1 addition & 0 deletions src/model/request/CreateSubscription.ts
Expand Up @@ -75,6 +75,7 @@ export class CreateSubscription {
property: '__type',
subTypes: [
{value: SubscriptionAttrAccountBalanceLimit, name: 'ACCOUNT_BALANCE_LIMIT'},
{value: SubscriptionAttrUrl, name: 'KMS_COMPLETED_TX'},
{value: SubscriptionAttrUrl, name: 'KMS_FAILED_TX'},
{value: SubscriptionAttrUrl, name: 'CUSTOMER_TRADE_MATCH'},
{value: SubscriptionAttrUrl, name: 'TRANSACTION_IN_THE_BLOCK'},
Expand Down
1 change: 1 addition & 0 deletions src/model/response/ledger/SubscriptionType.ts
Expand Up @@ -4,6 +4,7 @@
export enum SubscriptionType {
ACCOUNT_BALANCE_LIMIT = 'ACCOUNT_BALANCE_LIMIT',
CUSTOMER_TRADE_MATCH = 'CUSTOMER_TRADE_MATCH',
KMS_COMPLETED_TX = 'KMS_COMPLETED_TX',
KMS_FAILED_TX = 'KMS_FAILED_TX',
OFFCHAIN_WITHDRAWAL = 'OFFCHAIN_WITHDRAWAL',
ACCOUNT_PENDING_BLOCKCHAIN_TRANSACTION = 'ACCOUNT_PENDING_BLOCKCHAIN_TRANSACTION',
Expand Down

0 comments on commit ea1aecb

Please sign in to comment.