@dcl/playground-assets 7.3.36-7289902551.commit-52edf18 → 7.3.36-7289906681.commit-55d5f98

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.
@@ -71,6 +71,15 @@ export const enum AvatarAnchorPointType {
71
71
  // @public (undocumented)
72
72
  export const AvatarAttach: LastWriteWinElementSetComponentDefinition<PBAvatarAttach>;
73
73
 
74
+ // @public (undocumented)
75
+ export const AvatarBase: LastWriteWinElementSetComponentDefinition<PBAvatarBase>;
76
+
77
+ // @public (undocumented)
78
+ export const AvatarEmoteCommand: LastWriteWinElementSetComponentDefinition<PBAvatarEmoteCommand>;
79
+
80
+ // @public (undocumented)
81
+ export const AvatarEquippedData: LastWriteWinElementSetComponentDefinition<PBAvatarEquippedData>;
82
+
74
83
  // @public (undocumented)
75
84
  export const AvatarModifierArea: LastWriteWinElementSetComponentDefinition<PBAvatarModifierArea>;
76
85
 
@@ -514,6 +523,9 @@ export const componentDefinitionByName: {
514
523
  "core::AudioSource": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBAudioSource>>;
515
524
  "core::AudioStream": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBAudioStream>>;
516
525
  "core::AvatarAttach": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBAvatarAttach>>;
526
+ "core::AvatarBase": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBAvatarBase>>;
527
+ "core::AvatarEmoteCommand": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBAvatarEmoteCommand>>;
528
+ "core::AvatarEquippedData": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBAvatarEquippedData>>;
517
529
  "core::AvatarModifierArea": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBAvatarModifierArea>>;
518
530
  "core::AvatarShape": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBAvatarShape>>;
519
531
  "core::Billboard": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBBillboard>>;
@@ -526,6 +538,7 @@ export const componentDefinitionByName: {
526
538
  "core::MeshCollider": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBMeshCollider>>;
527
539
  "core::MeshRenderer": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBMeshRenderer>>;
528
540
  "core::NftShape": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBNftShape>>;
541
+ "core::PlayerIdentityData": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBPlayerIdentityData>>;
529
542
  "core::PointerEvents": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBPointerEvents>>;
530
543
  "core::PointerEventsResult": GSetComponentGetter<GrowOnlyValueSetComponentDefinition<PBPointerEventsResult>>;
531
544
  "core::PointerLock": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBPointerLock>>;
@@ -2191,6 +2204,74 @@ export namespace PBAvatarAttach {
2191
2204
  export function encode(message: PBAvatarAttach, writer?: _m0.Writer): _m0.Writer;
2192
2205
  }
2193
2206
 
2207
+ // @public (undocumented)
2208
+ export interface PBAvatarBase {
2209
+ // (undocumented)
2210
+ bodyShapeUrn: string;
2211
+ // (undocumented)
2212
+ eyesColor: PBColor3 | undefined;
2213
+ // (undocumented)
2214
+ hairColor: PBColor3 | undefined;
2215
+ // (undocumented)
2216
+ name: string;
2217
+ // (undocumented)
2218
+ skinColor: PBColor3 | undefined;
2219
+ }
2220
+
2221
+ // @public (undocumented)
2222
+ export namespace PBAvatarBase {
2223
+ // (undocumented)
2224
+ export function decode(input: _m0.Reader | Uint8Array, length?: number): PBAvatarBase;
2225
+ // (undocumented)
2226
+ export function encode(message: PBAvatarBase, writer?: _m0.Writer): _m0.Writer;
2227
+ }
2228
+
2229
+ // @public (undocumented)
2230
+ export interface PBAvatarEmoteCommand {
2231
+ // (undocumented)
2232
+ emoteCommand: PBAvatarEmoteCommand_EmoteCommand | undefined;
2233
+ }
2234
+
2235
+ // @public (undocumented)
2236
+ export namespace PBAvatarEmoteCommand {
2237
+ // (undocumented)
2238
+ export function decode(input: _m0.Reader | Uint8Array, length?: number): PBAvatarEmoteCommand;
2239
+ // (undocumented)
2240
+ export function encode(message: PBAvatarEmoteCommand, writer?: _m0.Writer): _m0.Writer;
2241
+ }
2242
+
2243
+ // @public (undocumented)
2244
+ export interface PBAvatarEmoteCommand_EmoteCommand {
2245
+ // (undocumented)
2246
+ emoteUrn: string;
2247
+ // (undocumented)
2248
+ loop: boolean;
2249
+ }
2250
+
2251
+ // @public (undocumented)
2252
+ export namespace PBAvatarEmoteCommand_EmoteCommand {
2253
+ // (undocumented)
2254
+ export function decode(input: _m0.Reader | Uint8Array, length?: number): PBAvatarEmoteCommand_EmoteCommand;
2255
+ // (undocumented)
2256
+ export function encode(message: PBAvatarEmoteCommand_EmoteCommand, writer?: _m0.Writer): _m0.Writer;
2257
+ }
2258
+
2259
+ // @public (undocumented)
2260
+ export interface PBAvatarEquippedData {
2261
+ // (undocumented)
2262
+ emotesUrns: string[];
2263
+ // (undocumented)
2264
+ wearableUrns: string[];
2265
+ }
2266
+
2267
+ // @public (undocumented)
2268
+ export namespace PBAvatarEquippedData {
2269
+ // (undocumented)
2270
+ export function decode(input: _m0.Reader | Uint8Array, length?: number): PBAvatarEquippedData;
2271
+ // (undocumented)
2272
+ export function encode(message: PBAvatarEquippedData, writer?: _m0.Writer): _m0.Writer;
2273
+ }
2274
+
2194
2275
  // @public (undocumented)
2195
2276
  export interface PBAvatarModifierArea {
2196
2277
  area: PBVector3 | undefined;
@@ -2584,6 +2665,21 @@ export namespace PBNftShape {
2584
2665
  export function encode(message: PBNftShape, writer?: _m0.Writer): _m0.Writer;
2585
2666
  }
2586
2667
 
2668
+ // @public (undocumented)
2669
+ export interface PBPlayerIdentityData {
2670
+ address: string;
2671
+ // (undocumented)
2672
+ isGuest: boolean;
2673
+ }
2674
+
2675
+ // @public (undocumented)
2676
+ export namespace PBPlayerIdentityData {
2677
+ // (undocumented)
2678
+ export function decode(input: _m0.Reader | Uint8Array, length?: number): PBPlayerIdentityData;
2679
+ // (undocumented)
2680
+ export function encode(message: PBPlayerIdentityData, writer?: _m0.Writer): _m0.Writer;
2681
+ }
2682
+
2587
2683
  // @public (undocumented)
2588
2684
  export interface PBPointerEvents {
2589
2685
  pointerEvents: PBPointerEvents_Entry[];
@@ -3173,6 +3269,9 @@ export namespace Plane {
3173
3269
  export function transform(plane: ReadonlyPlane, transformation: Matrix.ReadonlyMatrix): MutablePlane;
3174
3270
  }
3175
3271
 
3272
+ // @public (undocumented)
3273
+ export const PlayerIdentityData: LastWriteWinElementSetComponentDefinition<PBPlayerIdentityData>;
3274
+
3176
3275
  // @public (undocumented)
3177
3276
  export const PointerEvents: LastWriteWinElementSetComponentDefinition<PBPointerEvents>;
3178
3277
 
package/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "@dcl/playground-assets",
3
3
  "description": "",
4
- "version": "7.3.36-7289902551.commit-52edf18",
4
+ "version": "7.3.36-7289906681.commit-55d5f98",
5
5
  "author": "Decentraland",
6
6
  "dependencies": {
7
- "@dcl/js-runtime": "7.3.36-7289902551.commit-52edf18",
8
- "@dcl/sdk": "7.3.36-7289902551.commit-52edf18"
7
+ "@dcl/js-runtime": "7.3.36-7289906681.commit-55d5f98",
8
+ "@dcl/sdk": "7.3.36-7289906681.commit-55d5f98"
9
9
  },
10
10
  "devDependencies": {
11
11
  "@microsoft/api-extractor": "^7.33.8"
@@ -32,5 +32,5 @@
32
32
  },
33
33
  "types": "./dist/index.d.ts",
34
34
  "typings": "./dist/index.d.ts",
35
- "commit": "52edf1833e263e55739c75131111549de37ed6b4"
35
+ "commit": "55d5f98da8c3e7ff5e6441da427b571c270304f0"
36
36
  }