@dcl/protocol 1.0.0-22672716807.commit-22c32c9 → 1.0.0-23196288562.commit-d5b739b
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/out-js/decentraland/kernel/comms/rfc4/comms.gen.d.ts +0 -58
- package/out-js/decentraland/kernel/comms/rfc4/comms.gen.js +19 -393
- package/out-js/decentraland/kernel/comms/rfc4/comms.gen.js.map +1 -1
- package/out-js/decentraland/sdk/components/common/input_action.gen.d.ts +0 -10
- package/out-js/decentraland/sdk/components/common/input_action.gen.js +1 -52
- package/out-js/decentraland/sdk/components/common/input_action.gen.js.map +1 -1
- package/out-js/decentraland/sdk/components/pointer_events.gen.d.ts +1 -5
- package/out-js/decentraland/sdk/components/pointer_events.gen.js +3 -31
- package/out-js/decentraland/sdk/components/pointer_events.gen.js.map +1 -1
- package/out-js/decentraland/social_service/v2/social_service_v2.gen.d.ts +9 -0
- package/out-js/decentraland/social_service/v2/social_service_v2.gen.js +76 -7
- package/out-js/decentraland/social_service/v2/social_service_v2.gen.js.map +1 -1
- package/out-ts/decentraland/kernel/comms/rfc4/comms.gen.ts +3 -451
- package/out-ts/decentraland/sdk/components/common/input_action.gen.ts +0 -51
- package/out-ts/decentraland/sdk/components/pointer_events.gen.ts +3 -44
- package/out-ts/decentraland/social_service/v2/social_service_v2.gen.ts +75 -2
- package/package.json +3 -3
- package/proto/decentraland/kernel/comms/rfc4/comms.proto +1 -38
- package/proto/decentraland/sdk/components/common/input_action.proto +0 -8
- package/proto/decentraland/sdk/components/light_source.proto +1 -1
- package/proto/decentraland/sdk/components/pointer_events.proto +0 -2
- package/proto/decentraland/sdk/components/virtual_camera.proto +0 -2
- package/proto/decentraland/social_service/v2/social_service_v2.proto +7 -0
- package/proto/decentraland/sdk/components/audio_analysis.proto +0 -44
- package/proto/decentraland/sdk/components/avatar_locomotion_settings.proto +0 -21
|
@@ -34,9 +34,6 @@ export interface Packet {
|
|
|
34
34
|
} | {
|
|
35
35
|
$case: "movementCompressed";
|
|
36
36
|
movementCompressed: MovementCompressed;
|
|
37
|
-
} | {
|
|
38
|
-
$case: "lookAtPosition";
|
|
39
|
-
lookAtPosition: LookAtPosition;
|
|
40
37
|
} | undefined;
|
|
41
38
|
protocolVersion: number;
|
|
42
39
|
}
|
|
@@ -68,68 +65,26 @@ export interface Movement {
|
|
|
68
65
|
movementBlendValue: number;
|
|
69
66
|
slideBlendValue: number;
|
|
70
67
|
isGrounded: boolean;
|
|
71
|
-
/** deprecated */
|
|
72
68
|
isJumping: boolean;
|
|
73
|
-
jumpCount: number;
|
|
74
69
|
isLongJump: boolean;
|
|
75
70
|
isLongFall: boolean;
|
|
76
71
|
isFalling: boolean;
|
|
77
72
|
isStunned: boolean;
|
|
78
|
-
glideState: Movement_GlideState;
|
|
79
73
|
rotationY: number;
|
|
80
74
|
/** interpolation */
|
|
81
75
|
isInstant: boolean;
|
|
82
76
|
isEmoting: boolean;
|
|
83
|
-
/** head-sync (enabled flags + world-space yaw and pitch angles, in degrees) */
|
|
84
|
-
headIkYawEnabled: boolean;
|
|
85
|
-
headIkPitchEnabled: boolean;
|
|
86
|
-
headYaw: number;
|
|
87
|
-
headPitch: number;
|
|
88
|
-
}
|
|
89
|
-
export declare enum Movement_GlideState {
|
|
90
|
-
PROP_CLOSED = 0,
|
|
91
|
-
OPENING_PROP = 1,
|
|
92
|
-
GLIDING = 2,
|
|
93
|
-
CLOSING_PROP = 3,
|
|
94
|
-
UNRECOGNIZED = -1
|
|
95
77
|
}
|
|
96
|
-
export declare function movement_GlideStateFromJSON(object: any): Movement_GlideState;
|
|
97
|
-
export declare function movement_GlideStateToJSON(object: Movement_GlideState): string;
|
|
98
78
|
export interface MovementCompressed {
|
|
99
79
|
/** bit-compressed: timestamp + animations */
|
|
100
80
|
temporalData: number;
|
|
101
81
|
/** bit-compressed: position + velocity */
|
|
102
82
|
movementData: number;
|
|
103
|
-
/** bit-compressed: enabled flags + yaw + pitch */
|
|
104
|
-
headSyncData: number;
|
|
105
83
|
}
|
|
106
84
|
export interface PlayerEmote {
|
|
107
85
|
incrementalId: number;
|
|
108
86
|
urn: string;
|
|
109
87
|
timestamp: number;
|
|
110
|
-
/** true means the emote has been stopped in the sender's client */
|
|
111
|
-
isStopping?: boolean | undefined;
|
|
112
|
-
/** true when it is not the first time the looping animation plays */
|
|
113
|
-
isRepeating?: boolean | undefined;
|
|
114
|
-
/** identifies an interaction univocaly, established when the start animation is triggered */
|
|
115
|
-
interactionId?: number | undefined;
|
|
116
|
-
/** -1 means it does not use an outcome animation */
|
|
117
|
-
socialEmoteOutcome?: number | undefined;
|
|
118
|
-
/** to a social emote started by other user */
|
|
119
|
-
isReacting?: boolean | undefined;
|
|
120
|
-
/** wallet address of the user that initiated social emote */
|
|
121
|
-
socialEmoteInitiator?: string | undefined;
|
|
122
|
-
/** wallet address of the user whose avatar is the target of a directed emote */
|
|
123
|
-
targetAvatar?: string | undefined;
|
|
124
|
-
}
|
|
125
|
-
/** Message sent to force an avatar to look at a position */
|
|
126
|
-
export interface LookAtPosition {
|
|
127
|
-
timestamp: number;
|
|
128
|
-
/** world position */
|
|
129
|
-
positionX: number;
|
|
130
|
-
positionY: number;
|
|
131
|
-
positionZ: number;
|
|
132
|
-
targetAvatarWalletAddress: string;
|
|
133
88
|
}
|
|
134
89
|
export interface SceneEmote {
|
|
135
90
|
sceneEntityId: string;
|
|
@@ -149,11 +104,6 @@ export interface ProfileResponse {
|
|
|
149
104
|
export interface Chat {
|
|
150
105
|
message: string;
|
|
151
106
|
timestamp: number;
|
|
152
|
-
/**
|
|
153
|
-
* Extension: optional forwarded_from to identify the original sender when
|
|
154
|
-
* messages are forwarded through an SFU
|
|
155
|
-
*/
|
|
156
|
-
forwardedFrom?: string | undefined;
|
|
157
107
|
}
|
|
158
108
|
export interface Scene {
|
|
159
109
|
sceneId: string;
|
|
@@ -210,14 +160,6 @@ export declare namespace PlayerEmote {
|
|
|
210
160
|
function create<I extends Exact<DeepPartial<PlayerEmote>, I>>(base?: I): PlayerEmote;
|
|
211
161
|
function fromPartial<I extends Exact<DeepPartial<PlayerEmote>, I>>(object: I): PlayerEmote;
|
|
212
162
|
}
|
|
213
|
-
export declare namespace LookAtPosition {
|
|
214
|
-
function encode(message: LookAtPosition, writer?: _m0.Writer): _m0.Writer;
|
|
215
|
-
function decode(input: _m0.Reader | Uint8Array, length?: number): LookAtPosition;
|
|
216
|
-
function fromJSON(object: any): LookAtPosition;
|
|
217
|
-
function toJSON(message: LookAtPosition): unknown;
|
|
218
|
-
function create<I extends Exact<DeepPartial<LookAtPosition>, I>>(base?: I): LookAtPosition;
|
|
219
|
-
function fromPartial<I extends Exact<DeepPartial<LookAtPosition>, I>>(object: I): LookAtPosition;
|
|
220
|
-
}
|
|
221
163
|
export declare namespace SceneEmote {
|
|
222
164
|
function encode(message: SceneEmote, writer?: _m0.Writer): _m0.Writer;
|
|
223
165
|
function decode(input: _m0.Reader | Uint8Array, length?: number): SceneEmote;
|