Version 0.17.37

This commit is contained in:
Mikhail Gladchenko
2023-03-17 08:55:11 +00:00
parent 73ccae6e25
commit 07f947eb35
2 changed files with 1 additions and 3 deletions

View File

@@ -1,6 +1,6 @@
{
"name": "@orionprotocol/sdk",
"version": "0.17.37-rc.2",
"version": "0.17.37",
"description": "Orion Protocol SDK",
"main": "./lib/esm/index.js",
"module": "./lib/esm/index.js",

View File

@@ -4,7 +4,6 @@ import type exchanges from './constants/exchanges';
import type subOrderStatuses from './constants/subOrderStatuses';
import type positionStatuses from './constants/positionStatuses';
import type { knownEnvs } from './config/schemas';
import type executionTypes from './constants/cfdExecutionTypes';
export type DeepPartial<T> = T extends object ? {
[P in keyof T]?: DeepPartial<T[P]>;
@@ -35,7 +34,6 @@ export type Balance = {
}
export type PositionStatus = typeof positionStatuses[number];
export type ExecutionType = typeof executionTypes[number];
export type CFDBalance = {
instrument: string