Regenerate API types with bitcoin_transfer_method field

This commit is contained in:
counterweight 2025-12-23 14:49:09 +01:00
parent 8936d802a6
commit cb173a7442
Signed by: counterweight
GPG key ID: 883EDBAA726BD96C

View file

@ -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 */