@dcl/playground-assets 7.7.10-13856045106.commit-7f23e37 → 7.7.10-13859848918.commit-407cb6b

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,7 +1,7 @@
1
1
  {
2
2
  "name": "@dcl/sdk",
3
3
  "description": "",
4
- "version": "7.7.10-13856045106.commit-7f23e37",
4
+ "version": "7.7.10-13859848918.commit-407cb6b",
5
5
  "author": "Decentraland",
6
6
  "dependencies": {
7
7
  "@dcl/ecs": "file:../ecs",
@@ -35,5 +35,5 @@
35
35
  },
36
36
  "types": "./index.d.ts",
37
37
  "typings": "./index.d.ts",
38
- "commit": "7f23e37005de61ad5242ff7e3777bbad98d87348"
38
+ "commit": "407cb6b9e6b0e16978d3806623bca41a268a3f1e"
39
39
  }
@@ -193,8 +193,17 @@ export declare const enum AvatarControlType {
193
193
  /** @public */
194
194
  export declare const AvatarEmoteCommand: GrowOnlyValueSetComponentDefinition<PBAvatarEmoteCommand>;
195
195
 
196
- /** @public */
197
- export declare const AvatarEquippedData: LastWriteWinElementSetComponentDefinition<PBAvatarEquippedData>;
196
+ export declare const AvatarEquippedData: AvatarEquippedDataComponentDefinitionExtended;
197
+
198
+ /**
199
+ * @public
200
+ */
201
+ export declare interface AvatarEquippedDataComponentDefinitionExtended extends LastWriteWinElementSetComponentDefinition<AvatarEquippedDataType> {
202
+ }
203
+
204
+ export declare type AvatarEquippedDataType = Omit<PBAvatarEquippedData, 'forceRender'> & {
205
+ forceRender?: string[] | undefined;
206
+ };
198
207
 
199
208
  /** @public */
200
209
  export declare const AvatarModifierArea: LastWriteWinElementSetComponentDefinition<PBAvatarModifierArea>;
@@ -241,8 +250,17 @@ export declare namespace AvatarMovementSettings {
241
250
  export function decode(input: _m0.Reader | Uint8Array, length?: number): AvatarMovementSettings;
242
251
  }
243
252
 
244
- /** @public */
245
- export declare const AvatarShape: LastWriteWinElementSetComponentDefinition<PBAvatarShape>;
253
+ export declare const AvatarShape: AvatarShapeComponentDefinitionExtended;
254
+
255
+ /**
256
+ * @public
257
+ */
258
+ export declare interface AvatarShapeComponentDefinitionExtended extends LastWriteWinElementSetComponentDefinition<AvatarShapeType> {
259
+ }
260
+
261
+ export declare type AvatarShapeType = Omit<PBAvatarShape, 'forceRender'> & {
262
+ forceRender?: string[] | undefined;
263
+ };
246
264
 
247
265
  /**
248
266
  * @public
@@ -2003,12 +2003,36 @@
2003
2003
  {
2004
2004
  "kind": "Variable",
2005
2005
  "canonicalReference": "@dcl/playground-assets!AvatarEquippedData:var",
2006
- "docComment": "/**\n * @public\n */\n",
2006
+ "docComment": "",
2007
2007
  "excerptTokens": [
2008
2008
  {
2009
2009
  "kind": "Content",
2010
2010
  "text": "AvatarEquippedData: "
2011
2011
  },
2012
+ {
2013
+ "kind": "Reference",
2014
+ "text": "AvatarEquippedDataComponentDefinitionExtended",
2015
+ "canonicalReference": "@dcl/playground-assets!AvatarEquippedDataComponentDefinitionExtended:interface"
2016
+ }
2017
+ ],
2018
+ "fileUrlPath": "../ecs/dist/index.d.ts",
2019
+ "isReadonly": true,
2020
+ "releaseTag": "Public",
2021
+ "name": "AvatarEquippedData",
2022
+ "variableTypeTokenRange": {
2023
+ "startIndex": 1,
2024
+ "endIndex": 2
2025
+ }
2026
+ },
2027
+ {
2028
+ "kind": "Interface",
2029
+ "canonicalReference": "@dcl/playground-assets!AvatarEquippedDataComponentDefinitionExtended:interface",
2030
+ "docComment": "/**\n * @public\n */\n",
2031
+ "excerptTokens": [
2032
+ {
2033
+ "kind": "Content",
2034
+ "text": "export interface AvatarEquippedDataComponentDefinitionExtended extends "
2035
+ },
2012
2036
  {
2013
2037
  "kind": "Reference",
2014
2038
  "text": "LastWriteWinElementSetComponentDefinition",
@@ -2018,6 +2042,50 @@
2018
2042
  "kind": "Content",
2019
2043
  "text": "<"
2020
2044
  },
2045
+ {
2046
+ "kind": "Reference",
2047
+ "text": "AvatarEquippedDataType",
2048
+ "canonicalReference": "@dcl/playground-assets!AvatarEquippedDataType:type"
2049
+ },
2050
+ {
2051
+ "kind": "Content",
2052
+ "text": ">"
2053
+ },
2054
+ {
2055
+ "kind": "Content",
2056
+ "text": " "
2057
+ }
2058
+ ],
2059
+ "fileUrlPath": "../ecs/dist/components/extended/AvatarEquippedData.d.ts",
2060
+ "releaseTag": "Public",
2061
+ "name": "AvatarEquippedDataComponentDefinitionExtended",
2062
+ "preserveMemberOrder": false,
2063
+ "members": [],
2064
+ "extendsTokenRanges": [
2065
+ {
2066
+ "startIndex": 1,
2067
+ "endIndex": 5
2068
+ }
2069
+ ]
2070
+ },
2071
+ {
2072
+ "kind": "TypeAlias",
2073
+ "canonicalReference": "@dcl/playground-assets!AvatarEquippedDataType:type",
2074
+ "docComment": "",
2075
+ "excerptTokens": [
2076
+ {
2077
+ "kind": "Content",
2078
+ "text": "export type AvatarEquippedDataType = "
2079
+ },
2080
+ {
2081
+ "kind": "Reference",
2082
+ "text": "Omit",
2083
+ "canonicalReference": "!Omit:type"
2084
+ },
2085
+ {
2086
+ "kind": "Content",
2087
+ "text": "<"
2088
+ },
2021
2089
  {
2022
2090
  "kind": "Reference",
2023
2091
  "text": "PBAvatarEquippedData",
@@ -2025,14 +2093,17 @@
2025
2093
  },
2026
2094
  {
2027
2095
  "kind": "Content",
2028
- "text": ">"
2096
+ "text": ", 'forceRender'> & {\n forceRender?: string[] | undefined;\n}"
2097
+ },
2098
+ {
2099
+ "kind": "Content",
2100
+ "text": ";"
2029
2101
  }
2030
2102
  ],
2031
- "fileUrlPath": "../ecs/dist/components/generated/global.gen.d.ts",
2032
- "isReadonly": true,
2103
+ "fileUrlPath": "../ecs/dist/components/extended/AvatarEquippedData.d.ts",
2033
2104
  "releaseTag": "Public",
2034
- "name": "AvatarEquippedData",
2035
- "variableTypeTokenRange": {
2105
+ "name": "AvatarEquippedDataType",
2106
+ "typeTokenRange": {
2036
2107
  "startIndex": 1,
2037
2108
  "endIndex": 5
2038
2109
  }
@@ -2553,12 +2624,36 @@
2553
2624
  {
2554
2625
  "kind": "Variable",
2555
2626
  "canonicalReference": "@dcl/playground-assets!AvatarShape:var",
2556
- "docComment": "/**\n * @public\n */\n",
2627
+ "docComment": "",
2557
2628
  "excerptTokens": [
2558
2629
  {
2559
2630
  "kind": "Content",
2560
2631
  "text": "AvatarShape: "
2561
2632
  },
2633
+ {
2634
+ "kind": "Reference",
2635
+ "text": "AvatarShapeComponentDefinitionExtended",
2636
+ "canonicalReference": "@dcl/playground-assets!AvatarShapeComponentDefinitionExtended:interface"
2637
+ }
2638
+ ],
2639
+ "fileUrlPath": "../ecs/dist/index.d.ts",
2640
+ "isReadonly": true,
2641
+ "releaseTag": "Public",
2642
+ "name": "AvatarShape",
2643
+ "variableTypeTokenRange": {
2644
+ "startIndex": 1,
2645
+ "endIndex": 2
2646
+ }
2647
+ },
2648
+ {
2649
+ "kind": "Interface",
2650
+ "canonicalReference": "@dcl/playground-assets!AvatarShapeComponentDefinitionExtended:interface",
2651
+ "docComment": "/**\n * @public\n */\n",
2652
+ "excerptTokens": [
2653
+ {
2654
+ "kind": "Content",
2655
+ "text": "export interface AvatarShapeComponentDefinitionExtended extends "
2656
+ },
2562
2657
  {
2563
2658
  "kind": "Reference",
2564
2659
  "text": "LastWriteWinElementSetComponentDefinition",
@@ -2568,6 +2663,50 @@
2568
2663
  "kind": "Content",
2569
2664
  "text": "<"
2570
2665
  },
2666
+ {
2667
+ "kind": "Reference",
2668
+ "text": "AvatarShapeType",
2669
+ "canonicalReference": "@dcl/playground-assets!AvatarShapeType:type"
2670
+ },
2671
+ {
2672
+ "kind": "Content",
2673
+ "text": ">"
2674
+ },
2675
+ {
2676
+ "kind": "Content",
2677
+ "text": " "
2678
+ }
2679
+ ],
2680
+ "fileUrlPath": "../ecs/dist/components/extended/AvatarShape.d.ts",
2681
+ "releaseTag": "Public",
2682
+ "name": "AvatarShapeComponentDefinitionExtended",
2683
+ "preserveMemberOrder": false,
2684
+ "members": [],
2685
+ "extendsTokenRanges": [
2686
+ {
2687
+ "startIndex": 1,
2688
+ "endIndex": 5
2689
+ }
2690
+ ]
2691
+ },
2692
+ {
2693
+ "kind": "TypeAlias",
2694
+ "canonicalReference": "@dcl/playground-assets!AvatarShapeType:type",
2695
+ "docComment": "",
2696
+ "excerptTokens": [
2697
+ {
2698
+ "kind": "Content",
2699
+ "text": "export type AvatarShapeType = "
2700
+ },
2701
+ {
2702
+ "kind": "Reference",
2703
+ "text": "Omit",
2704
+ "canonicalReference": "!Omit:type"
2705
+ },
2706
+ {
2707
+ "kind": "Content",
2708
+ "text": "<"
2709
+ },
2571
2710
  {
2572
2711
  "kind": "Reference",
2573
2712
  "text": "PBAvatarShape",
@@ -2575,14 +2714,17 @@
2575
2714
  },
2576
2715
  {
2577
2716
  "kind": "Content",
2578
- "text": ">"
2717
+ "text": ", 'forceRender'> & {\n forceRender?: string[] | undefined;\n}"
2718
+ },
2719
+ {
2720
+ "kind": "Content",
2721
+ "text": ";"
2579
2722
  }
2580
2723
  ],
2581
- "fileUrlPath": "../ecs/dist/components/generated/global.gen.d.ts",
2582
- "isReadonly": true,
2724
+ "fileUrlPath": "../ecs/dist/components/extended/AvatarShape.d.ts",
2583
2725
  "releaseTag": "Public",
2584
- "name": "AvatarShape",
2585
- "variableTypeTokenRange": {
2726
+ "name": "AvatarShapeType",
2727
+ "typeTokenRange": {
2586
2728
  "startIndex": 1,
2587
2729
  "endIndex": 5
2588
2730
  }
@@ -146,8 +146,21 @@ export const enum AvatarControlType {
146
146
  // @public (undocumented)
147
147
  export const AvatarEmoteCommand: GrowOnlyValueSetComponentDefinition<PBAvatarEmoteCommand>;
148
148
 
149
+ // Warning: (ae-missing-release-tag) "AvatarEquippedData" is part of the package's API, but it is missing a release tag (@alpha, @beta, @public, or @internal)
150
+ //
151
+ // @public (undocumented)
152
+ export const AvatarEquippedData: AvatarEquippedDataComponentDefinitionExtended;
153
+
154
+ // @public (undocumented)
155
+ export interface AvatarEquippedDataComponentDefinitionExtended extends LastWriteWinElementSetComponentDefinition<AvatarEquippedDataType> {
156
+ }
157
+
158
+ // Warning: (ae-missing-release-tag) "AvatarEquippedDataType" is part of the package's API, but it is missing a release tag (@alpha, @beta, @public, or @internal)
159
+ //
149
160
  // @public (undocumented)
150
- export const AvatarEquippedData: LastWriteWinElementSetComponentDefinition<PBAvatarEquippedData>;
161
+ export type AvatarEquippedDataType = Omit<PBAvatarEquippedData, 'forceRender'> & {
162
+ forceRender?: string[] | undefined;
163
+ };
151
164
 
152
165
  // @public (undocumented)
153
166
  export const AvatarModifierArea: LastWriteWinElementSetComponentDefinition<PBAvatarModifierArea>;
@@ -180,8 +193,21 @@ export namespace AvatarMovementSettings {
180
193
  export function encode(message: AvatarMovementSettings, writer?: _m0.Writer): _m0.Writer;
181
194
  }
182
195
 
196
+ // Warning: (ae-missing-release-tag) "AvatarShape" is part of the package's API, but it is missing a release tag (@alpha, @beta, @public, or @internal)
197
+ //
198
+ // @public (undocumented)
199
+ export const AvatarShape: AvatarShapeComponentDefinitionExtended;
200
+
201
+ // @public (undocumented)
202
+ export interface AvatarShapeComponentDefinitionExtended extends LastWriteWinElementSetComponentDefinition<AvatarShapeType> {
203
+ }
204
+
205
+ // Warning: (ae-missing-release-tag) "AvatarShapeType" is part of the package's API, but it is missing a release tag (@alpha, @beta, @public, or @internal)
206
+ //
183
207
  // @public (undocumented)
184
- export const AvatarShape: LastWriteWinElementSetComponentDefinition<PBAvatarShape>;
208
+ export type AvatarShapeType = Omit<PBAvatarShape, 'forceRender'> & {
209
+ forceRender?: string[] | undefined;
210
+ };
185
211
 
186
212
  // @public (undocumented)
187
213
  export interface AvatarTexture {
package/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "@dcl/playground-assets",
3
3
  "description": "",
4
- "version": "7.7.10-13856045106.commit-7f23e37",
4
+ "version": "7.7.10-13859848918.commit-407cb6b",
5
5
  "author": "Decentraland",
6
6
  "dependencies": {
7
- "@dcl/js-runtime": "7.7.10-13856045106.commit-7f23e37",
8
- "@dcl/sdk": "7.7.10-13856045106.commit-7f23e37"
7
+ "@dcl/js-runtime": "7.7.10-13859848918.commit-407cb6b",
8
+ "@dcl/sdk": "7.7.10-13859848918.commit-407cb6b"
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": "7f23e37005de61ad5242ff7e3777bbad98d87348"
35
+ "commit": "407cb6b9e6b0e16978d3806623bca41a268a3f1e"
36
36
  }