bybit-api 4.1.8 → 4.1.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -352,3 +352,10 @@ export interface WSSpreadExecutionV5 {
|
|
|
352
352
|
seq: number;
|
|
353
353
|
}
|
|
354
354
|
export type WSSpreadExecutionEventV5 = WSPrivateTopicEventV5<'spread.execution', WSSpreadExecutionV5[]>;
|
|
355
|
+
export interface WSInsuranceV5 {
|
|
356
|
+
coin: string;
|
|
357
|
+
symbols: string;
|
|
358
|
+
balance: string;
|
|
359
|
+
updateTime: string;
|
|
360
|
+
}
|
|
361
|
+
export type WSInsuranceEventV5 = WSPublicTopicEventV5<'insurance.USDT' | 'insurance.USDC' | 'insurance.inverse', 'snapshot' | 'delta', WSInsuranceV5[]>;
|
package/package.json
CHANGED