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;
|
slot_end: string;
|
||||||
/** Direction */
|
/** Direction */
|
||||||
direction: string;
|
direction: string;
|
||||||
|
/** Bitcoin Transfer Method */
|
||||||
|
bitcoin_transfer_method: string;
|
||||||
/** Eur Amount */
|
/** Eur Amount */
|
||||||
eur_amount: number;
|
eur_amount: number;
|
||||||
/** Sats Amount */
|
/** Sats Amount */
|
||||||
|
|
@ -658,6 +660,12 @@ export interface components {
|
||||||
/** Slots */
|
/** Slots */
|
||||||
slots: components["schemas"]["BookableSlot"][];
|
slots: components["schemas"]["BookableSlot"][];
|
||||||
};
|
};
|
||||||
|
/**
|
||||||
|
* BitcoinTransferMethod
|
||||||
|
* @description Bitcoin transfer method for exchange trades.
|
||||||
|
* @enum {string}
|
||||||
|
*/
|
||||||
|
BitcoinTransferMethod: "onchain" | "lightning";
|
||||||
/**
|
/**
|
||||||
* BookableSlot
|
* BookableSlot
|
||||||
* @description A single bookable time slot.
|
* @description A single bookable time slot.
|
||||||
|
|
@ -688,6 +696,8 @@ export interface components {
|
||||||
roles: string[];
|
roles: string[];
|
||||||
/** Invite Statuses */
|
/** Invite Statuses */
|
||||||
invite_statuses: components["schemas"]["InviteStatus"][];
|
invite_statuses: components["schemas"]["InviteStatus"][];
|
||||||
|
/** Bitcoin Transfer Methods */
|
||||||
|
bitcoin_transfer_methods: components["schemas"]["BitcoinTransferMethod"][];
|
||||||
};
|
};
|
||||||
/**
|
/**
|
||||||
* CopyAvailabilityRequest
|
* CopyAvailabilityRequest
|
||||||
|
|
@ -738,6 +748,8 @@ export interface components {
|
||||||
slot_start: string;
|
slot_start: string;
|
||||||
/** Direction */
|
/** Direction */
|
||||||
direction: string;
|
direction: string;
|
||||||
|
/** Bitcoin Transfer Method */
|
||||||
|
bitcoin_transfer_method: string;
|
||||||
/** Eur Amount */
|
/** Eur Amount */
|
||||||
eur_amount: number;
|
eur_amount: number;
|
||||||
};
|
};
|
||||||
|
|
@ -764,6 +776,8 @@ export interface components {
|
||||||
slot_end: string;
|
slot_end: string;
|
||||||
/** Direction */
|
/** Direction */
|
||||||
direction: string;
|
direction: string;
|
||||||
|
/** Bitcoin Transfer Method */
|
||||||
|
bitcoin_transfer_method: string;
|
||||||
/** Eur Amount */
|
/** Eur Amount */
|
||||||
eur_amount: number;
|
eur_amount: number;
|
||||||
/** Sats Amount */
|
/** Sats Amount */
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue