@xoxno/types 1.0.344 → 1.0.345

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.
@@ -3,13 +3,11 @@ import { PerpWithdrawWithdraw } from './withdraw';
3
3
  declare type PerpTransferTransfer_base = Omit<PerpWithdrawWithdraw, "type">;
4
4
  export declare type PerpTransferTransfer = PerpTransferTransfer_base & {
5
5
  type: PerpOrderType.SEND_ASSET;
6
- sourceDex: PerpTransferType;
7
6
  destinationDex: PerpTransferType;
8
7
  };
9
8
  declare const PerpTransferTransferNest_base: import("@nestjs/common").Type<Omit<PerpWithdrawWithdraw, "type">>;
10
9
  export declare class PerpTransferTransferNest extends PerpTransferTransferNest_base {
11
10
  type: PerpOrderType.SEND_ASSET;
12
- sourceDex: PerpTransferType;
13
11
  destinationDex: PerpTransferType;
14
12
  }
15
13
  export declare class PerpTransfer {
@@ -22,10 +22,6 @@ __decorate([
22
22
  (0, swagger_1.ApiProperty)(),
23
23
  __metadata("design:type", String)
24
24
  ], PerpTransferTransfer.prototype, "type", void 0);
25
- __decorate([
26
- (0, swagger_1.ApiProperty)(),
27
- __metadata("design:type", String)
28
- ], PerpTransferTransfer.prototype, "sourceDex", void 0);
29
25
  __decorate([
30
26
  (0, swagger_1.ApiProperty)(),
31
27
  __metadata("design:type", String)
@@ -1,9 +1,10 @@
1
- import { PerpOrderType } from '../../enums';
1
+ import { PerpOrderType, PerpTransferType } from '../../enums';
2
2
  export declare class PerpWithdrawWithdraw {
3
3
  type: PerpOrderType.WITHDRAW_ASSET;
4
4
  destination: string;
5
5
  symbol: string;
6
6
  amount: string;
7
+ sourceDex: PerpTransferType;
7
8
  }
8
9
  export declare class PerpWithdraw {
9
10
  action: PerpWithdrawWithdraw;
@@ -31,6 +31,10 @@ __decorate([
31
31
  (0, swagger_1.ApiProperty)(),
32
32
  __metadata("design:type", String)
33
33
  ], PerpWithdrawWithdraw.prototype, "amount", void 0);
34
+ __decorate([
35
+ (0, swagger_1.ApiProperty)(),
36
+ __metadata("design:type", String)
37
+ ], PerpWithdrawWithdraw.prototype, "sourceDex", void 0);
34
38
  class PerpWithdraw {
35
39
  }
36
40
  exports.PerpWithdraw = PerpWithdraw;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xoxno/types",
3
- "version": "1.0.344",
3
+ "version": "1.0.345",
4
4
  "description": "Shared types and utilities for XOXNO API.",
5
5
  "exports": {
6
6
  ".": {