@dcl/playground-assets 7.3.7 → 7.3.8-5812704805.commit-961bb53

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,4 +1,30 @@
1
1
 
2
+ /**
3
+ * CommsApi
4
+ */
5
+ declare module "~system/CommsApi" {
6
+
7
+ export enum VideoTrackSourceType {
8
+ VTST_UNKNOWN = 0,
9
+ VTST_CAMERA = 1,
10
+ VTST_SCREEN_SHARE = 2,
11
+ UNRECOGNIZED = -1
12
+ }
13
+ export interface VideoTracksActiveStreamsRequest {
14
+ }
15
+ export interface VideoTracksActiveStreamsResponse {
16
+ streams: VideoTracksActiveStreamsData[];
17
+ }
18
+ export interface VideoTracksActiveStreamsData {
19
+ identity: string;
20
+ trackSid: string;
21
+ sourceType: VideoTrackSourceType;
22
+ }
23
+
24
+ // Function declaration section
25
+ export function getActiveVideoStreams(body: VideoTracksActiveStreamsRequest): Promise<VideoTracksActiveStreamsResponse>;
26
+
27
+ }
2
28
  /**
3
29
  * CommunicationsController
4
30
  */
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@dcl/sdk",
3
3
  "description": "",
4
- "version": "7.3.7",
4
+ "version": "7.3.8-5812704805.commit-961bb53",
5
5
  "author": "Decentraland",
6
6
  "dependencies": {
7
7
  "@dcl/ecs": "file:../ecs",
@@ -34,5 +34,5 @@
34
34
  },
35
35
  "types": "./index.d.ts",
36
36
  "typings": "./index.d.ts",
37
- "commit": "50408a82d187087c810fdc111f1c959eda71243f"
37
+ "commit": "961bb533f8eba3eaab9ee5da48a9057e3ec35844"
38
38
  }
@@ -3932,8 +3932,6 @@ export declare interface PBMaterial_PbrMaterial {
3932
3932
  /** default = 0.5 */
3933
3933
  roughness?: number | undefined;
3934
3934
  /** default = 1 */
3935
- glossiness?: number | undefined;
3936
- /** default = 1 */
3937
3935
  specularIntensity?: number | undefined;
3938
3936
  /** default = 2 */
3939
3937
  emissiveIntensity?: number | undefined;
@@ -37152,33 +37152,6 @@
37152
37152
  "endIndex": 3
37153
37153
  }
37154
37154
  },
37155
- {
37156
- "kind": "PropertySignature",
37157
- "canonicalReference": "@dcl/playground-assets!PBMaterial_PbrMaterial#glossiness:member",
37158
- "docComment": "/**\n * default = 1\n */\n",
37159
- "excerptTokens": [
37160
- {
37161
- "kind": "Content",
37162
- "text": "glossiness?: "
37163
- },
37164
- {
37165
- "kind": "Content",
37166
- "text": "number | undefined"
37167
- },
37168
- {
37169
- "kind": "Content",
37170
- "text": ";"
37171
- }
37172
- ],
37173
- "isReadonly": false,
37174
- "isOptional": true,
37175
- "releaseTag": "Public",
37176
- "name": "glossiness",
37177
- "propertyTypeTokenRange": {
37178
- "startIndex": 1,
37179
- "endIndex": 2
37180
- }
37181
- },
37182
37155
  {
37183
37156
  "kind": "PropertySignature",
37184
37157
  "canonicalReference": "@dcl/playground-assets!PBMaterial_PbrMaterial#metallic:member",
@@ -2184,7 +2184,6 @@ export interface PBMaterial_PbrMaterial {
2184
2184
  emissiveColor?: PBColor3 | undefined;
2185
2185
  emissiveIntensity?: number | undefined;
2186
2186
  emissiveTexture?: TextureUnion | undefined;
2187
- glossiness?: number | undefined;
2188
2187
  metallic?: number | undefined;
2189
2188
  reflectivityColor?: PBColor3 | undefined;
2190
2189
  roughness?: number | undefined;
package/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "@dcl/playground-assets",
3
3
  "description": "",
4
- "version": "7.3.7",
4
+ "version": "7.3.8-5812704805.commit-961bb53",
5
5
  "author": "Decentraland",
6
6
  "dependencies": {
7
- "@dcl/js-runtime": "7.3.7",
8
- "@dcl/sdk": "7.3.7"
7
+ "@dcl/js-runtime": "7.3.8-5812704805.commit-961bb53",
8
+ "@dcl/sdk": "7.3.8-5812704805.commit-961bb53"
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": "50408a82d187087c810fdc111f1c959eda71243f"
35
+ "commit": "961bb533f8eba3eaab9ee5da48a9057e3ec35844"
36
36
  }