Skip to content

Commit

Permalink
Update api.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
marcosrdz committed Oct 27, 2024
1 parent 9d33b02 commit 126f919
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions src/openapi/api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -357,47 +357,47 @@ export interface components {
type?: 2;
/** @enum {string} */
level?: "transactions";
/**
* @description Only included if type is 2, 3, or 4
* @default TRANSACTION_CATEGORY
*/
category: string;
/** @description amount of satoshis */
sat: number;
/** @description user's onchain address that has incoming transaction */
address: string;
/** @description txid of the transaction where this address is one of the outputs */
txid: string;
/**
* @description Only included if type is 2, 3, or 4
* @default TRANSACTION_CATEGORY
*/
category: string;
};
PushNotificationOnchainAddressGotUnconfirmedTransaction: components["schemas"]["PushNotificationBase"] & {
/** @enum {integer} */
type?: 3;
/** @enum {string} */
level?: "transactions";
/**
* @description Only included if type is 2, 3, or 4
* @default TRANSACTION_CATEGORY
*/
category: string;
/** @description amount of satoshis */
sat: number;
/** @description user's onchain address that has incoming transaction */
address: string;
/** @description txid of the transaction where this address is one of the outputs */
txid: string;
/**
* @description Only included if type is 2, 3, or 4
* @default TRANSACTION_CATEGORY
*/
category: string;
};
PushNotificationTxidGotConfirmed: components["schemas"]["PushNotificationBase"] & {
/** @enum {integer} */
type?: 4;
/** @enum {string} */
level?: "transactions";
/** @description txid of the transaction that got confirmed */
txid: string;
/**
* @description Only included if type is 2, 3, or 4
* @default TRANSACTION_CATEGORY
*/
category: string;
/** @description txid of the transaction that got confirmed */
txid: string;
};
PushNotificationMessage: components["schemas"]["PushNotificationBase"] & {
/** @enum {integer} */
Expand Down

0 comments on commit 126f919

Please sign in to comment.