@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 CHANGED
@@ -1 +1 @@
1
- 2.60.0-beta.16
1
+ 2.60.0-beta.17
package/lib/types.d.ts CHANGED
@@ -296,6 +296,9 @@ export declare class DepositExplanation {
296
296
  static readonly BORROW: {
297
297
  borrow: {};
298
298
  };
299
+ static readonly REPAY_BORROW: {
300
+ repayBorrow: {};
301
+ };
299
302
  }
300
303
  export declare class SettlePnlExplanation {
301
304
  static readonly NONE: {
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@drift-labs/sdk",
3
- "version": "2.60.0-beta.16",
3
+ "version": "2.60.0-beta.17",
4
4
  "main": "lib/index.js",
5
5
  "types": "lib/index.d.ts",
6
6
  "author": "crispheaney",
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 {