@xoxno/types 1.0.359 → 1.0.361
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.
|
@@ -33,6 +33,7 @@ class UserProfileDoc {
|
|
|
33
33
|
this.isCreator = false;
|
|
34
34
|
this.isPoolOwner = false;
|
|
35
35
|
this.shard = 0;
|
|
36
|
+
this.nonce = 0;
|
|
36
37
|
this.userDeposit = [];
|
|
37
38
|
this.chain = common_enum_1.ActivityChain.MVX;
|
|
38
39
|
this._ts = 0;
|
|
@@ -137,6 +138,11 @@ __decorate([
|
|
|
137
138
|
(0, class_validator_1.IsInt)(),
|
|
138
139
|
__metadata("design:type", Number)
|
|
139
140
|
], UserProfileDoc.prototype, "shard", void 0);
|
|
141
|
+
__decorate([
|
|
142
|
+
(0, swagger_1.ApiProperty)({ example: 0, description: 'Perp Nonce' }),
|
|
143
|
+
(0, class_validator_1.IsInt)(),
|
|
144
|
+
__metadata("design:type", Number)
|
|
145
|
+
], UserProfileDoc.prototype, "nonce", void 0);
|
|
140
146
|
__decorate([
|
|
141
147
|
(0, swagger_1.ApiProperty)({
|
|
142
148
|
type: () => [user_deposit_1.UserDeposit],
|
|
@@ -9,21 +9,21 @@ var __metadata = (this && this.__metadata) || function (k, v) {
|
|
|
9
9
|
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
10
10
|
};
|
|
11
11
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
|
-
exports.
|
|
12
|
+
exports.SignatureRequest = void 0;
|
|
13
13
|
const swagger_1 = require("@nestjs/swagger");
|
|
14
14
|
const passkey_enum_1 = require("../../enums/passkey.enum");
|
|
15
|
-
class
|
|
15
|
+
class SignatureRequest {
|
|
16
16
|
}
|
|
17
|
-
exports.
|
|
17
|
+
exports.SignatureRequest = SignatureRequest;
|
|
18
18
|
__decorate([
|
|
19
19
|
(0, swagger_1.ApiProperty)(),
|
|
20
20
|
__metadata("design:type", String)
|
|
21
|
-
],
|
|
21
|
+
], SignatureRequest.prototype, "type", void 0);
|
|
22
22
|
__decorate([
|
|
23
23
|
(0, swagger_1.ApiProperty)(),
|
|
24
24
|
__metadata("design:type", String)
|
|
25
|
-
],
|
|
25
|
+
], SignatureRequest.prototype, "signature", void 0);
|
|
26
26
|
__decorate([
|
|
27
27
|
(0, swagger_1.ApiProperty)(),
|
|
28
28
|
__metadata("design:type", String)
|
|
29
|
-
],
|
|
29
|
+
], SignatureRequest.prototype, "message", void 0);
|