@xoxno/types 1.0.265 → 1.0.266
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/dist/entities/perp/coins.d.ts +9 -0
- package/dist/entities/perp/coins.js +39 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +1 -0
- package/package.json +1 -1
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
3
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
4
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
5
|
+
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
6
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
7
|
+
};
|
|
8
|
+
var __metadata = (this && this.__metadata) || function (k, v) {
|
|
9
|
+
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
10
|
+
};
|
|
11
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
|
+
exports.PerpCoin = exports.PerpConfig = void 0;
|
|
13
|
+
const swagger_1 = require("@nestjs/swagger");
|
|
14
|
+
class PerpConfig {
|
|
15
|
+
}
|
|
16
|
+
exports.PerpConfig = PerpConfig;
|
|
17
|
+
__decorate([
|
|
18
|
+
(0, swagger_1.ApiProperty)(),
|
|
19
|
+
__metadata("design:type", Number)
|
|
20
|
+
], PerpConfig.prototype, "sigFigs", void 0);
|
|
21
|
+
__decorate([
|
|
22
|
+
(0, swagger_1.ApiProperty)(),
|
|
23
|
+
__metadata("design:type", Number)
|
|
24
|
+
], PerpConfig.prototype, "mantissa", void 0);
|
|
25
|
+
class PerpCoin {
|
|
26
|
+
}
|
|
27
|
+
exports.PerpCoin = PerpCoin;
|
|
28
|
+
__decorate([
|
|
29
|
+
(0, swagger_1.ApiProperty)(),
|
|
30
|
+
__metadata("design:type", String)
|
|
31
|
+
], PerpCoin.prototype, "coin", void 0);
|
|
32
|
+
__decorate([
|
|
33
|
+
(0, swagger_1.ApiProperty)(),
|
|
34
|
+
__metadata("design:type", Number)
|
|
35
|
+
], PerpCoin.prototype, "usdPrice", void 0);
|
|
36
|
+
__decorate([
|
|
37
|
+
(0, swagger_1.ApiProperty)(),
|
|
38
|
+
__metadata("design:type", Array)
|
|
39
|
+
], PerpCoin.prototype, "config", void 0);
|
package/dist/index.d.ts
CHANGED
|
@@ -130,6 +130,7 @@ export * from './entities/notification-data/notification-success-response.dto';
|
|
|
130
130
|
export * from './entities/notification-data/notification-template';
|
|
131
131
|
export * from './entities/notification-data/push-notification.doc';
|
|
132
132
|
export * from './entities/notification-data/tag-priority';
|
|
133
|
+
export * from './entities/perp/coins';
|
|
133
134
|
export * from './entities/perp/websocket';
|
|
134
135
|
export * from './entities/search-data/collection-data-search.type';
|
|
135
136
|
export * from './entities/search-data/event-guest-data-search.type';
|
package/dist/index.js
CHANGED
|
@@ -146,6 +146,7 @@ __exportStar(require("./entities/notification-data/notification-success-response
|
|
|
146
146
|
__exportStar(require("./entities/notification-data/notification-template"), exports);
|
|
147
147
|
__exportStar(require("./entities/notification-data/push-notification.doc"), exports);
|
|
148
148
|
__exportStar(require("./entities/notification-data/tag-priority"), exports);
|
|
149
|
+
__exportStar(require("./entities/perp/coins"), exports);
|
|
149
150
|
__exportStar(require("./entities/perp/websocket"), exports);
|
|
150
151
|
__exportStar(require("./entities/search-data/collection-data-search.type"), exports);
|
|
151
152
|
__exportStar(require("./entities/search-data/event-guest-data-search.type"), exports);
|