@dcl/playground-assets 7.3.24-6551112177.commit-c541465 → 7.3.24-6551297996.commit-7436455

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>>;
@@ -2106,6 +2119,74 @@ export namespace PBAvatarAttach {
2106
2119
  export function encode(message: PBAvatarAttach, writer?: _m0.Writer): _m0.Writer;
2107
2120
  }
2108
2121
 
2122
+ // @public (undocumented)
2123
+ export interface PBAvatarBase {
2124
+ // (undocumented)
2125
+ bodyShapeUrn: string;
2126
+ // (undocumented)
2127
+ eyesColor: PBColor3 | undefined;
2128
+ // (undocumented)
2129
+ hairColor: PBColor3 | undefined;
2130
+ // (undocumented)
2131
+ name: string;
2132
+ // (undocumented)
2133
+ skinColor: PBColor3 | undefined;
2134
+ }
2135
+
2136
+ // @public (undocumented)
2137
+ export namespace PBAvatarBase {
2138
+ // (undocumented)
2139
+ export function decode(input: _m0.Reader | Uint8Array, length?: number): PBAvatarBase;
2140
+ // (undocumented)
2141
+ export function encode(message: PBAvatarBase, writer?: _m0.Writer): _m0.Writer;
2142
+ }
2143
+
2144
+ // @public (undocumented)
2145
+ export interface PBAvatarEmoteCommand {
2146
+ // (undocumented)
2147
+ emoteCommand: PBAvatarEmoteCommand_EmoteCommand | undefined;
2148
+ }
2149
+
2150
+ // @public (undocumented)
2151
+ export namespace PBAvatarEmoteCommand {
2152
+ // (undocumented)
2153
+ export function decode(input: _m0.Reader | Uint8Array, length?: number): PBAvatarEmoteCommand;
2154
+ // (undocumented)
2155
+ export function encode(message: PBAvatarEmoteCommand, writer?: _m0.Writer): _m0.Writer;
2156
+ }
2157
+
2158
+ // @public (undocumented)
2159
+ export interface PBAvatarEmoteCommand_EmoteCommand {
2160
+ // (undocumented)
2161
+ emoteUrn: string;
2162
+ // (undocumented)
2163
+ loop: boolean;
2164
+ }
2165
+
2166
+ // @public (undocumented)
2167
+ export namespace PBAvatarEmoteCommand_EmoteCommand {
2168
+ // (undocumented)
2169
+ export function decode(input: _m0.Reader | Uint8Array, length?: number): PBAvatarEmoteCommand_EmoteCommand;
2170
+ // (undocumented)
2171
+ export function encode(message: PBAvatarEmoteCommand_EmoteCommand, writer?: _m0.Writer): _m0.Writer;
2172
+ }
2173
+
2174
+ // @public (undocumented)
2175
+ export interface PBAvatarEquippedData {
2176
+ // (undocumented)
2177
+ emotesUrns: string[];
2178
+ // (undocumented)
2179
+ wearableUrns: string[];
2180
+ }
2181
+
2182
+ // @public (undocumented)
2183
+ export namespace PBAvatarEquippedData {
2184
+ // (undocumented)
2185
+ export function decode(input: _m0.Reader | Uint8Array, length?: number): PBAvatarEquippedData;
2186
+ // (undocumented)
2187
+ export function encode(message: PBAvatarEquippedData, writer?: _m0.Writer): _m0.Writer;
2188
+ }
2189
+
2109
2190
  // @public (undocumented)
2110
2191
  export interface PBAvatarModifierArea {
2111
2192
  area: PBVector3 | undefined;
@@ -2499,6 +2580,21 @@ export namespace PBNftShape {
2499
2580
  export function encode(message: PBNftShape, writer?: _m0.Writer): _m0.Writer;
2500
2581
  }
2501
2582
 
2583
+ // @public (undocumented)
2584
+ export interface PBPlayerIdentityData {
2585
+ address: string;
2586
+ // (undocumented)
2587
+ isGuest: boolean;
2588
+ }
2589
+
2590
+ // @public (undocumented)
2591
+ export namespace PBPlayerIdentityData {
2592
+ // (undocumented)
2593
+ export function decode(input: _m0.Reader | Uint8Array, length?: number): PBPlayerIdentityData;
2594
+ // (undocumented)
2595
+ export function encode(message: PBPlayerIdentityData, writer?: _m0.Writer): _m0.Writer;
2596
+ }
2597
+
2502
2598
  // @public (undocumented)
2503
2599
  export interface PBPointerEvents {
2504
2600
  pointerEvents: PBPointerEvents_Entry[];
@@ -3086,6 +3182,9 @@ export namespace Plane {
3086
3182
  export function transform(plane: ReadonlyPlane, transformation: Matrix.ReadonlyMatrix): MutablePlane;
3087
3183
  }
3088
3184
 
3185
+ // @public (undocumented)
3186
+ export const PlayerIdentityData: LastWriteWinElementSetComponentDefinition<PBPlayerIdentityData>;
3187
+
3089
3188
  // @public (undocumented)
3090
3189
  export const PointerEvents: LastWriteWinElementSetComponentDefinition<PBPointerEvents>;
3091
3190
 
package/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "@dcl/playground-assets",
3
3
  "description": "",
4
- "version": "7.3.24-6551112177.commit-c541465",
4
+ "version": "7.3.24-6551297996.commit-7436455",
5
5
  "author": "Decentraland",
6
6
  "dependencies": {
7
- "@dcl/js-runtime": "7.3.24-6551112177.commit-c541465",
8
- "@dcl/sdk": "7.3.24-6551112177.commit-c541465"
7
+ "@dcl/js-runtime": "7.3.24-6551297996.commit-7436455",
8
+ "@dcl/sdk": "7.3.24-6551297996.commit-7436455"
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": "c541465028cb2e20fdc710c3c8d3114dcf8423eb"
35
+ "commit": "74364556d34605cde5caad22d7d5b728c71d3f34"
36
36
  }