@drift-labs/sdk 2.60.0-beta.16 → 2.60.0-beta.17
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.
- package/VERSION +1 -1
- package/lib/types.d.ts +3 -0
- package/lib/types.js +1 -0
- package/package.json +1 -1
- package/src/types.ts +1 -0
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
2.60.0-beta.
|
|
1
|
+
2.60.0-beta.17
|
package/lib/types.d.ts
CHANGED
package/lib/types.js
CHANGED
|
@@ -201,6 +201,7 @@ exports.DepositExplanation = DepositExplanation;
|
|
|
201
201
|
DepositExplanation.NONE = { none: {} };
|
|
202
202
|
DepositExplanation.TRANSFER = { transfer: {} };
|
|
203
203
|
DepositExplanation.BORROW = { borrow: {} };
|
|
204
|
+
DepositExplanation.REPAY_BORROW = { repayBorrow: {} };
|
|
204
205
|
class SettlePnlExplanation {
|
|
205
206
|
}
|
|
206
207
|
exports.SettlePnlExplanation = SettlePnlExplanation;
|
package/package.json
CHANGED
package/src/types.ts
CHANGED
|
@@ -200,6 +200,7 @@ export class DepositExplanation {
|
|
|
200
200
|
static readonly NONE = { none: {} };
|
|
201
201
|
static readonly TRANSFER = { transfer: {} };
|
|
202
202
|
static readonly BORROW = { borrow: {} };
|
|
203
|
+
static readonly REPAY_BORROW = { repayBorrow: {} };
|
|
203
204
|
}
|
|
204
205
|
|
|
205
206
|
export class SettlePnlExplanation {
|