@dcl/sdk 7.0.0-3381668097.commit-01e37d6 → 7.0.0-3388940429.commit-45b2012

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.
@@ -1,14 +0,0 @@
1
- declare module "~system/UserActionModule" {
2
-
3
- export interface RequestTeleportRequest {
4
- destination: string;
5
- }
6
- export interface RequestTeleportResponse {
7
- }
8
-
9
- // ########### BLOCK
10
-
11
- // importtype { RequestTeleportRequest, RequestTeleportResponse } from "proto/decentraland/kernel/apis/user_action_module.gen";
12
- export function requestTeleport(body: RequestTeleportRequest): Promise<RequestTeleportResponse>;
13
-
14
- }
@@ -1,45 +0,0 @@
1
- declare module "~system/UserIdentity" {
2
-
3
- export const protobufPackage = "decentraland.common.sdk";
4
- export interface Snapshots {
5
- face256: string;
6
- body: string;
7
- }
8
- export interface AvatarForUserData {
9
- bodyShape: string;
10
- skinColor: string;
11
- hairColor: string;
12
- eyeColor: string;
13
- wearables: string[];
14
- snapshots: Snapshots | undefined;
15
- }
16
- export interface UserData {
17
- displayName: string;
18
- publicKey?: string | undefined;
19
- hasConnectedWeb3: boolean;
20
- userId: string;
21
- version: number;
22
- avatar: AvatarForUserData | undefined;
23
- }
24
-
25
- // ########### BLOCK
26
-
27
- // importtype { UserData } from "proto/decentraland/common/sdk/user_data.gen";
28
- export interface GetUserDataRequest {
29
- }
30
- export interface GetUserDataResponse {
31
- data?: UserData | undefined;
32
- }
33
- export interface GetUserPublicKeyRequest {
34
- }
35
- export interface GetUserPublicKeyResponse {
36
- address?: string | undefined;
37
- }
38
-
39
- // ########### BLOCK
40
-
41
- // importtype { GetUserPublicKeyRequest, GetUserPublicKeyResponse, GetUserDataRequest, GetUserDataResponse } from "proto/decentraland/kernel/apis/user_identity.gen";
42
- export function getUserPublicKey(body: GetUserPublicKeyRequest): Promise<GetUserPublicKeyResponse>;
43
- export function getUserData(body: GetUserDataRequest): Promise<GetUserDataResponse>;
44
-
45
- }