@xoxno/types 1.0.355 → 1.0.357
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.
|
@@ -14,5 +14,5 @@ var WalletClientType;
|
|
|
14
14
|
WalletClientType["METAMASK"] = "metamask";
|
|
15
15
|
WalletClientType["EVM"] = "evm";
|
|
16
16
|
WalletClientType["SOLANA"] = "solana";
|
|
17
|
-
|
|
17
|
+
WalletClientType["PASSKEY"] = "passkey";
|
|
18
18
|
})(WalletClientType || (exports.WalletClientType = WalletClientType = {}));
|
package/dist/index.d.ts
CHANGED
|
@@ -134,7 +134,6 @@ export * from './entities/notification-data/push-notification.doc';
|
|
|
134
134
|
export * from './entities/notification-data/tag-priority';
|
|
135
135
|
export * from './entities/passkey/passkey';
|
|
136
136
|
export * from './entities/passkey/request';
|
|
137
|
-
export * from './entities/passkey/response';
|
|
138
137
|
export * from './entities/perp/coins';
|
|
139
138
|
export * from './entities/perp/legal-check';
|
|
140
139
|
export * from './entities/perp/margin-table';
|
package/dist/index.js
CHANGED
|
@@ -150,7 +150,6 @@ __exportStar(require("./entities/notification-data/push-notification.doc"), expo
|
|
|
150
150
|
__exportStar(require("./entities/notification-data/tag-priority"), exports);
|
|
151
151
|
__exportStar(require("./entities/passkey/passkey"), exports);
|
|
152
152
|
__exportStar(require("./entities/passkey/request"), exports);
|
|
153
|
-
__exportStar(require("./entities/passkey/response"), exports);
|
|
154
153
|
__exportStar(require("./entities/perp/coins"), exports);
|
|
155
154
|
__exportStar(require("./entities/perp/legal-check"), exports);
|
|
156
155
|
__exportStar(require("./entities/perp/margin-table"), exports);
|
package/package.json
CHANGED
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
export declare class SignMessageFailureDto {
|
|
2
|
-
success: false;
|
|
3
|
-
reason: string;
|
|
4
|
-
}
|
|
5
|
-
export declare class SignMessageSuccessDto {
|
|
6
|
-
success: true;
|
|
7
|
-
authenticatorData: string;
|
|
8
|
-
clientDataJSON: string;
|
|
9
|
-
signature: string;
|
|
10
|
-
}
|
|
11
|
-
export type SignMessageDto = SignMessageSuccessDto | SignMessageFailureDto;
|
|
@@ -1,43 +0,0 @@
|
|
|
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.SignMessageSuccessDto = exports.SignMessageFailureDto = void 0;
|
|
13
|
-
const swagger_1 = require("@nestjs/swagger");
|
|
14
|
-
class SignMessageFailureDto {
|
|
15
|
-
}
|
|
16
|
-
exports.SignMessageFailureDto = SignMessageFailureDto;
|
|
17
|
-
__decorate([
|
|
18
|
-
(0, swagger_1.ApiProperty)({ example: false }),
|
|
19
|
-
__metadata("design:type", Boolean)
|
|
20
|
-
], SignMessageFailureDto.prototype, "success", void 0);
|
|
21
|
-
__decorate([
|
|
22
|
-
(0, swagger_1.ApiProperty)(),
|
|
23
|
-
__metadata("design:type", String)
|
|
24
|
-
], SignMessageFailureDto.prototype, "reason", void 0);
|
|
25
|
-
class SignMessageSuccessDto {
|
|
26
|
-
}
|
|
27
|
-
exports.SignMessageSuccessDto = SignMessageSuccessDto;
|
|
28
|
-
__decorate([
|
|
29
|
-
(0, swagger_1.ApiProperty)({ example: true }),
|
|
30
|
-
__metadata("design:type", Boolean)
|
|
31
|
-
], SignMessageSuccessDto.prototype, "success", void 0);
|
|
32
|
-
__decorate([
|
|
33
|
-
(0, swagger_1.ApiProperty)(),
|
|
34
|
-
__metadata("design:type", String)
|
|
35
|
-
], SignMessageSuccessDto.prototype, "authenticatorData", void 0);
|
|
36
|
-
__decorate([
|
|
37
|
-
(0, swagger_1.ApiProperty)(),
|
|
38
|
-
__metadata("design:type", String)
|
|
39
|
-
], SignMessageSuccessDto.prototype, "clientDataJSON", void 0);
|
|
40
|
-
__decorate([
|
|
41
|
-
(0, swagger_1.ApiProperty)(),
|
|
42
|
-
__metadata("design:type", String)
|
|
43
|
-
], SignMessageSuccessDto.prototype, "signature", void 0);
|