Regenerate API types with bitcoin_transfer_method field
This commit is contained in:
parent
8936d802a6
commit
cb173a7442
1 changed files with 14 additions and 0 deletions
|
|
@ -592,6 +592,8 @@ export interface components {
|
|||
slot_end: string;
|
||||
/** Direction */
|
||||
direction: string;
|
||||
/** Bitcoin Transfer Method */
|
||||
bitcoin_transfer_method: string;
|
||||
/** Eur Amount */
|
||||
eur_amount: number;
|
||||
/** Sats Amount */
|
||||
|
|
@ -658,6 +660,12 @@ export interface components {
|
|||
/** Slots */
|
||||
slots: components["schemas"]["BookableSlot"][];
|
||||
};
|
||||
/**
|
||||
* BitcoinTransferMethod
|
||||
* @description Bitcoin transfer method for exchange trades.
|
||||
* @enum {string}
|
||||
*/
|
||||
BitcoinTransferMethod: "onchain" | "lightning";
|
||||
/**
|
||||
* BookableSlot
|
||||
* @description A single bookable time slot.
|
||||
|
|
@ -688,6 +696,8 @@ export interface components {
|
|||
roles: string[];
|
||||
/** Invite Statuses */
|
||||
invite_statuses: components["schemas"]["InviteStatus"][];
|
||||
/** Bitcoin Transfer Methods */
|
||||
bitcoin_transfer_methods: components["schemas"]["BitcoinTransferMethod"][];
|
||||
};
|
||||
/**
|
||||
* CopyAvailabilityRequest
|
||||
|
|
@ -738,6 +748,8 @@ export interface components {
|
|||
slot_start: string;
|
||||
/** Direction */
|
||||
direction: string;
|
||||
/** Bitcoin Transfer Method */
|
||||
bitcoin_transfer_method: string;
|
||||
/** Eur Amount */
|
||||
eur_amount: number;
|
||||
};
|
||||
|
|
@ -764,6 +776,8 @@ export interface components {
|
|||
slot_end: string;
|
||||
/** Direction */
|
||||
direction: string;
|
||||
/** Bitcoin Transfer Method */
|
||||
bitcoin_transfer_method: string;
|
||||
/** Eur Amount */
|
||||
eur_amount: number;
|
||||
/** Sats Amount */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue