@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.
- package/package.json +5 -4
- package/types/tsconfig.ecs7.json +3 -15
- package/types/dcl/decentraland-ecs.api.json +0 -61732
- package/types/dcl/decentraland-ecs.api.md +0 -2717
- package/types/env/index.d.ts +0 -82
- package/types/rpc-modules/CommunicationsController/index.d.ts +0 -14
- package/types/rpc-modules/DevTools/index.d.ts +0 -15
- package/types/rpc-modules/EngineApi/index.d.ts +0 -172
- package/types/rpc-modules/EnvironmentApi/index.d.ts +0 -81
- package/types/rpc-modules/EthereumController/index.d.ts +0 -60
- package/types/rpc-modules/ParcelIdentity/index.d.ts +0 -48
- package/types/rpc-modules/Permissions/index.d.ts +0 -30
- package/types/rpc-modules/Players/index.d.ts +0 -52
- package/types/rpc-modules/PortableExperiences/index.d.ts +0 -38
- package/types/rpc-modules/RestrictedActions/index.d.ts +0 -26
- package/types/rpc-modules/SignedFetch/index.d.ts +0 -37
- package/types/rpc-modules/SocialController/index.d.ts +0 -18
- package/types/rpc-modules/UserActionModule/index.d.ts +0 -14
- package/types/rpc-modules/UserIdentity/index.d.ts +0 -45
@@ -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
|
-
}
|